~mzanetti/telegram-app/listitem

« back to all changes in this revision

Viewing changes to telegram/app/qml/components/listitems/ImageWithFallback.qml

  • Committer: Michael Zanetti
  • Date: 2016-02-29 22:46:12 UTC
  • Revision ID: michael.zanetti@canonical.com-20160229224612-a8vm6nvk4yl9mhp9
update MessageListItem to uitk ListItem

This replaces the last occurance of the custom ListItemWithAction
so that one can be dropped. This seems to help a little with
scrolling performance and also fixes some listview contentY placemtn
issues.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/*
2
 
 * Copyright 2012 Canonical Ltd.
3
 
 *
4
 
 * This program is free software; you can redistribute it and/or modify
5
 
 * it under the terms of the GNU Lesser General Public License as published by
6
 
 * the Free Software Foundation; version 3.
7
 
 *
8
 
 * This program is distributed in the hope that it will be useful,
9
 
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10
 
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
11
 
 * GNU Lesser General Public License for more details.
12
 
 *
13
 
 * You should have received a copy of the GNU Lesser General Public License
14
 
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
15
 
 */
16
 
 
17
 
import QtQuick 2.0
18
 
 
19
 
Image {
20
 
    id: image
21
 
 
22
 
    property url fallbackSource
23
 
    property bool fallbackRequired: false
24
 
 
25
 
    function isSourceDefined(sourceUrl) {
26
 
        return sourceUrl != "" && sourceUrl != undefined
27
 
    }
28
 
 
29
 
    function tryLoadingFallbackSource() {
30
 
        if (isSourceDefined(fallbackSource)) {
31
 
            source = fallbackSource
32
 
        }
33
 
    }
34
 
 
35
 
    function checkStatus() {
36
 
        if (!isSourceDefined(source) || (status == Image.Error && source != fallbackSource)) {
37
 
            fallbackRequired = true
38
 
            tryLoadingFallbackSource()
39
 
        }
40
 
    }
41
 
 
42
 
    onSourceChanged: fallbackRequired = false
43
 
    onFallbackSourceChanged: if (fallbackRequired) tryLoadingFallbackSource()
44
 
    onStatusChanged: checkStatus()
45
 
    Component.onCompleted: checkStatus()
46
 
}