TweetSearch Stylistic Tweaks
[profile/ivi/qtdeclarative.git] / examples / demos / tweetsearch / tweetsearch.qml
1 /****************************************************************************
2 **
3 ** Copyright (C) 2012 Nokia Corporation and/or its subsidiary(-ies).
4 ** Contact: http://www.qt-project.org/
5 **
6 ** This file is part of the examples of the Qt Toolkit.
7 **
8 ** $QT_BEGIN_LICENSE:BSD$
9 ** You may use this file under the terms of the BSD license as follows:
10 **
11 ** "Redistribution and use in source and binary forms, with or without
12 ** modification, are permitted provided that the following conditions are
13 ** met:
14 **   * Redistributions of source code must retain the above copyright
15 **     notice, this list of conditions and the following disclaimer.
16 **   * Redistributions in binary form must reproduce the above copyright
17 **     notice, this list of conditions and the following disclaimer in
18 **     the documentation and/or other materials provided with the
19 **     distribution.
20 **   * Neither the name of Nokia Corporation and its Subsidiary(-ies) nor
21 **     the names of its contributors may be used to endorse or promote
22 **     products derived from this software without specific prior written
23 **     permission.
24 **
25 ** THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 ** "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 ** LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 ** A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 ** OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 ** SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 ** LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 ** DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 ** THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 ** (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 ** OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE."
36 **
37 ** $QT_END_LICENSE$
38 **
39 ****************************************************************************/
40
41 import QtQuick 2.0
42 import "content"
43
44 Rectangle {
45     id: main
46     width: 320
47     height: 480
48     color: "#d6d6d6"
49
50     property string searchTerms: ""
51     property int inAnimDur: 250
52     property int counter: 0
53     property alias isLoading: tweetsModel.isLoading
54     property var idx
55     property var ids
56
57     Component.onCompleted: ids = new Array()
58
59     function idInModel(id)
60     {
61         for (var j = 0; j < ids.length; j++)
62             if (ids[j] === id)
63                 return 1
64         return 0
65     }
66
67     TweetsModel {
68         id: tweetsModel
69         onIsLoaded: {
70             console.debug("Reload")
71             idx = new Array()
72             for (var i = 0; i < tweetsModel.model.count; i++) {
73                 var id = tweetsModel.model.get(i).id
74                 if (!idInModel(id))
75                     idx.push(i)
76             }
77             console.debug(idx.length + " new tweets")
78             main.counter = idx.length
79         }
80     }
81
82     Timer {
83         id: timer
84         interval: 500; running: main.counter; repeat: true
85         onTriggered: {
86             main.counter--;
87             var id = tweetsModel.model.get(idx[main.counter]).id
88             mainListView.add( { "statusText": tweetsModel.model.get(main.counter).content,
89                                  "name": tweetsModel.model.get(main.counter).name,
90                                  "userImage": tweetsModel.model.get(main.counter).image,
91                                  "source": tweetsModel.model.get(main.counter).source,
92                                  "id": id,
93                                  "uri": tweetsModel.model.get(main.counter).uri,
94                                  "published": tweetsModel.model.get(main.counter).published } );
95             ids.push(id)
96         }
97     }
98
99     ListView {
100         id: mainListView
101         anchors.fill: parent
102         delegate: TweetDelegate { }
103         model: ListModel { id: finalModel }
104
105         add: Transition {
106             NumberAnimation { property: "hm"; from: 0; to: 1.0; duration: 300; easing.type: Easing.OutQuad }
107             PropertyAction { property: "appear"; value: 250 }
108         }
109
110         onDragEnded: if (header.refresh) { tweetsModel.model.reload() }
111
112         ListHeader {
113             id: header
114             y: -mainListView.contentY - height
115         }
116
117         footer: ListFooter { }
118
119         function clear() {
120             ids = new Array()
121             model.clear()
122         }
123
124         function add(obj) {
125             model.insert(0, obj)
126         }
127
128         signal autoSearch(string type, string str) // To communicate with Footer instance
129     }
130 }