1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
|
/*
* Copyright 2012 Canonical Ltd.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; version 3.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtQuick 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem
import Ubuntu.Components.Popups 0.1
import Friends 0.1
Item {
id: tile
height: status_update_content.height + detailsWrapper.height
width: parent.width
property real detailsOpacity : 0
property string service: column_0
property string accountId: column_1
property string messageId: column_2
property string stream: column_3
property string sender: column_4
property bool from_me: column_7
property string timeString: friendsUtils.createTimeString(column_8)
property string message: column_9
property string avatar: column_10
property string url: column_11
property int likes: column_12 > 0 ? column_12 : liked ? 1 : 0
property bool liked: column_13
property string link_picture: column_14
property string link_name: column_15
property string link_url: column_16
property string link_desc: column_17
property string link_caption: column_18
property string link_icon: column_19
property string location: column_20
property string latitude: column_21
property string longitude: column_22
property string likesString: likes > 1 ? i18n.tr("people liked this") : i18n.tr("person liked this")
anchors {
topMargin: units.gu(1)
leftMargin: units.gu(1)
bottomMargin: units.gu(1)
rightMargin: units.gu(1)
}
FriendsUtils {
id: friendsUtils
}
FriendsDispatcher {
id: friends
onLikeComplete: {
if (success) {
liked = true;
favoriteIcon.opacity = 1.0;
} else {
console.log ("Like failed: " + errorMessage);
}
}
onUnlikeComplete: {
if (success) {
liked = false;
favoriteIcon.opacity = 0.3;
} else {
console.log ("UnLike failed: " + errorMessage);
}
}
}
UbuntuShape {
id: avatarImage
height: units.dp(48)
width: units.dp(48)
anchors {
left: parent.left
top: parent.top
leftMargin: units.gu(1)
topMargin: units.gu(1)
}
image: Image {
source: Qt.resolvedUrl(avatar)
asynchronous: true
fillMode: Image.PreserveAspectFit
}
MouseArea {
anchors.fill: avatarImage
onClicked: {
Qt.openUrlExternally(url);
}
}
}
Image {
id: privateIcon
anchors {
right: avatarImage.right
bottom: avatarImage.bottom
bottomMargin: units.dp(3)
rightMargin: units.dp(3)
}
source: "images/private.png"
visible: stream == "private"
}
Image {
id: replyIcon
anchors {
right: avatarImage.right
bottom: avatarImage.bottom
bottomMargin: units.dp(3)
rightMargin: units.dp(3)
}
source: "images/replies.png"
visible: stream == "mentions"
}
Item {
id: status_update_content
anchors {
left: avatarImage.right
right: parent.right
top: parent.top
topMargin: units.gu(1)
leftMargin: units.gu(1)
bottomMargin: units.gu(1)
rightMargin: units.gu(1)
}
height: childrenRect.height
MouseArea {
anchors.fill: status_update_content
onClicked: {
if (tile.state != 'Details') {
tile.state = 'Details';
} else {
tile.state = 'List';
}
}
}
Column {
spacing: units.gu(1)
anchors {
left: parent.left;
right: parent.right
bottomMargin: units.gu(2)
}
Label {
text: sender
fontSize: "medium"
font.bold: true
width: parent.width
}
Label {
id: messageText
text: message
visible: message.length > 0
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
width: parent.width - units.gu(3)
onLinkActivated: Qt.openUrlExternally(link)
}
Label {
id: locationName
text: location
visible: location.length > 0
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
width: parent.width - units.gu(3)
MouseArea {
anchors.fill: locationName
onClicked: {
if (url.length > 0)
{
Qt.openUrlExternally(url);
}
}
}
}
Label {
id: linkName
text: link_name
visible: link_name.length > 0
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
width: parent.width - units.gu(3)
MouseArea {
anchors.fill: linkName
onClicked: {
if (link_url.length > 0)
Qt.openUrlExternally(link_url);
}
}
}
Label {
id: linkDesc
text: link_desc
visible: link_desc.length > 0
wrapMode: Text.WrapAtWordBoundaryOrAnywhere
width: parent.width - units.gu(3)
onLinkActivated: Qt.openUrlExternally(link)
}
Item {
id: favorite
width: parent.width - avatarImage.width
height: favoriteIcon.height + units.gu(1)
anchors {
left: parent.left
right: parent.right
bottomMargin: units.gu(1)
}
Image {
id: favoriteIcon
source: "images/favorite.png"
opacity: liked ? 1.0 : 0.3
width: 16
anchors {
left: parent.left
right: likesLabel.left
}
MouseArea {
anchors.fill: favoriteIcon
onClicked: {
if (liked) {
friends.unlikeAsync(accountId, messageId);
}
else {
friends.likeAsync(accountId, messageId);
}
}
}
}
Label {
id: likesLabel
text: (likes > 0) ? likes + " " + likesString : ""
width: parent.width - favoriteIcon.width
anchors {
left: favoriteIcon.right
right: serviceIcon.right
}
fontSize: "small"
color: "gray"
}
Image {
id: serviceIcon
anchors {
right: parent.right
}
source: "images/"+service+".png"
width: 22
height: 22
asynchronous: true
}
}
}
Row {
anchors.right: parent.right
anchors.rightMargin: units.gu(1)
anchors.top: parent.top
spacing: units.gu(1)
Label {
id: time
text: timeString
fontSize: "small"
color: "gray"
}
}
}
states: [State {
name: "Details"
PropertyChanges { target: tile; detailsOpacity: 1; x: 0 }
StateChangeScript {
script: {
listView.positionViewAtIndex(listView.indexAt(tile.x, tile.y), ListView.Contain);
//listView.currentIndex = listView.indexAt(tile.x, tile.y);
}
}
},
State {
name: "List"
PropertyChanges {
target: content
height: status_update_content.height + units.gu(2)
}
PropertyChanges { target: tile; detailsOpacity: 0; x: 0 }
}]
transitions: Transition {
NumberAnimation {
duration: 300; properties: "detailsOpacity,x,height,width"
}
}
Rectangle {
anchors {
left: parent.left
right: parent.right
top: parent.top
bottom: parent.bottom
}
color: "black"
opacity: 0.1
visible: detailsOpacity > 0 ? true : false
}
Item {
id: detailsWrapper
height: detailsLoader.height + units.gu(1)
width: parent.width
opacity: detailsOpacity
visible: detailsOpacity > 0 ? true : false
anchors {
top: status_update_content.bottom
left: parent.left
right: parent.right
}
Loader {
id: detailsLoader
width: parent.width
visible: true
}
onVisibleChanged: {
if (visible && detailsLoader.state != Loader.Ready) {
detailsLoader.source = "StatusUpdateTileDetails.qml";
}
}
}
}
|