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
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
|
/*
* Copyright (C) 2013, 2014
* Andrew Hayzen <ahayzen@gmail.com>
* Daniel Holm <d.holmen@gmail.com>
* Victor Thompson <victor.thompson@gmail.com>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
import QtMultimedia 5.0
import QtQuick 2.0
import QtQuick.LocalStorage 2.0
import Ubuntu.Components 0.1
import Ubuntu.Components.ListItems 0.1 as ListItem
import Ubuntu.Thumbnailer 0.1
import "common"
import "common/ExpanderItems"
import "settings.js" as Settings
MusicPage {
id: nowPlaying
objectName: "nowplayingpage"
title: i18n.tr("Now Playing")
visible: false
property int ensureVisibleIndex: 0 // ensure first index is visible at startup
Rectangle {
anchors.fill: parent
color: styleMusic.nowPlaying.backgroundColor
opacity: 0.75 // change later
MouseArea { // Block events to lower layers
anchors.fill: parent
}
}
Component.onCompleted: {
onToolbarShownChanged.connect(jumpToCurrent)
}
Connections {
target: player
onCurrentIndexChanged: {
if (player.source === "") {
return;
}
collapseExpand(); // Collapse expanded tracks
queuelist.currentIndex = player.currentIndex;
customdebug("MusicQueue update currentIndex: " + player.source);
// Always jump to current track
nowPlaying.jumpToCurrent(musicToolbar.opened, nowPlaying, musicToolbar.currentTab)
}
}
function jumpToCurrent(shown, currentPage, currentTab)
{
// If the toolbar is shown, the page is now playing and snaptrack is enabled
if (shown && currentPage === nowPlaying && Settings.getSetting("snaptrack") === "1")
{
// Then position the view at the current index
queuelist.positionViewAtIndex(queuelist.currentIndex, ListView.Beginning);
}
}
function positionAt(index) {
queuelist.positionViewAtIndex(index, ListView.Beginning);
queuelist.contentY -= header.height;
}
ListView {
id: queuelist
objectName: "queuelist"
anchors.fill: parent
anchors.bottomMargin: musicToolbar.mouseAreaOffset + musicToolbar.minimizedHeight
spacing: units.gu(1)
delegate: queueDelegate
model: trackQueue.model
highlightFollowsCurrentItem: false
state: "normal"
states: [
State {
name: "normal"
PropertyChanges {
target: queuelist
interactive: true
}
},
State {
name: "reorder"
PropertyChanges {
target: queuelist
interactive: false
}
}
]
footer: Item {
height: mainView.height - (styleMusic.common.expandHeight + queuelist.currentHeight) + units.gu(8)
}
property int normalHeight: units.gu(12)
property int currentHeight: units.gu(48)
property int transitionDuration: 250 // transition length of animations
onCountChanged: {
customdebug("Queue: Now has: " + queuelist.count + " tracks")
}
onMovementStarted: {
musicToolbar.hideToolbar();
}
Component {
id: queueDelegate
ListItem.Standard {
id: queueListItem
height: queuelist.normalHeight
state: queuelist.currentIndex == index ? "current" : ""
// cached height used to restore the height after expansion
property int cachedHeight: -1
SwipeDelete {
id: swipeBackground
duration: queuelist.transitionDuration
onDeleteStateChanged: {
if (deleteState === true)
{
queueListItemRemoveAnimation.start();
}
}
}
function onCollapseSwipeDelete(indexCol)
{
if ((indexCol !== index || indexCol === -1) && swipeBackground !== undefined && swipeBackground.direction !== "")
{
customdebug("auto collapse swipeDelete")
queueListItemResetStartAnimation.start();
}
}
Component.onCompleted: {
collapseSwipeDelete.connect(onCollapseSwipeDelete);
}
MouseArea {
id: queueArea
anchors.fill: parent
property int startX: queueListItem.x
property int startY: queueListItem.y
property int startMouseY: -1
// Allow dragging on the X axis for swipeDelete if not reordering
drag.target: queueListItem
drag.axis: Drag.XAxis
drag.minimumX: queuelist.state == "reorder" ? 0 : -queueListItem.width
drag.maximumX: queuelist.state == "reorder" ? 0 : queueListItem.width
/* Get the mouse and item difference from the starting positions */
function getDiff(mouseY)
{
return (mouseY - startMouseY) + (queueListItem.y - startY);
}
/*
* Has the mouse crossed the current item
* True - it has crossed
* NULL - it is on the current
* False - it has not crossed
*/
function hasCrossedCurrent(diff, currentOffset)
{
// Only crossed if in same direction
if ((diff > 0 || currentOffset > 0) && (diff <= 0 || currentOffset <= 0))
{
return false;
}
if (Math.abs(diff) > (Math.abs(currentOffset) * queuelist.normalHeight) + queuelist.currentHeight)
{
return true;
}
else if (Math.abs(diff) > (Math.abs(currentOffset) * queuelist.normalHeight))
{
return null;
}
else
{
return false;
}
}
function getNewIndex(mouseY, index)
{
var diff = getDiff(mouseY);
var negPos = diff < 0 ? -1 : 1;
var currentOffset = queuelist.currentIndex - index; // get the current offset
if (currentOffset < 0) // when current is less the offset is actually +1
{
currentOffset += 1;
}
var hasCrossed = hasCrossedCurrent(diff, currentOffset);
if (hasCrossed === true)
{
/* Take off difference so it just appears like a normalheight
* minus when after and add when before */
diff -= negPos * (queuelist.currentHeight - queuelist.normalHeight);
}
else if (hasCrossed === null)
{
// Work out how far into the current item it is
var tmpDiff = Math.abs(diff) - (Math.abs(currentOffset) * queuelist.normalHeight);
// Scale difference so is the same as a normalHeight
tmpDiff *= (queuelist.normalHeight / queuelist.currentHeight);
// rebuild Diff with new values
diff = (currentOffset * queuelist.normalHeight) + (negPos * tmpDiff);
}
return index + (Math.round(diff / queuelist.normalHeight));
}
onClicked: {
collapseSwipeDelete(-1); // collapse all expands
customdebug("File: " + model.filename) // debugger
trackQueueClick(index); // toggle track state
}
onMouseXChanged: {
// Only allow XChange if not in reorder state
if (queuelist.state == "reorder")
{
return;
}
// New X is less than start so swiping left
if (queueListItem.x < startX)
{
collapseExpand();
swipeBackground.state = "swipingLeft";
startY = queueListItem.y;
}
// New X is greater sow swiping right
else if (queueListItem.x > startX)
{
collapseExpand();
swipeBackground.state = "swipingRight";
startY = queueListItem.y;
}
// Same so reset state back to normal
else
{
swipeBackground.state = "normal";
queuelist.state = "normal";
}
}
onMouseYChanged: {
// Y change only affects when in reorder mode
if (queuelist.state == "reorder")
{
/* update the listitem y position so that the
* listitem horizontalCenter is under the mouse.y */
queueListItem.y += mouse.y - (queueListItem.height / 2);
}
}
onPressed: {
startX = queueListItem.x;
startY = queueListItem.y;
startMouseY = mouse.y;
}
onPressAndHold: {
// Must be in a normal state to change to reorder state
if (queuelist.state == "normal" && swipeBackground.state == "normal" && queuelist.currentIndex != index)
{
collapseSwipeDelete(-1); // collapse all swipedeletes
collapseExpand(); // collapse all
customdebug("Pressed and held queued track "+model.filename)
queuelist.state = "reorder"; // enable reordering state
trackContainerReorderAnimation.start();
}
}
onReleased: {
// Get current state to determine what to do
if (queuelist.state == "reorder")
{
var newIndex = getNewIndex(mouse.y + (queueListItem.height / 2), index); // get new index
// Indexes larger than current need -1 because when it is moved the current is removed
if (newIndex > index)
{
newIndex -= 1;
}
if (newIndex === index)
{
queueListItemResetAnimation.start(); // reset item position
trackContainerResetAnimation.start(); // reset the trackContainer
}
else
{
queueListItem.x = startX; // ensure X position is correct
trackContainerResetAnimation.start(); // reset the trackContainer
// Check that the newIndex is within the range
if (newIndex < 0)
{
newIndex = 0;
}
else if (newIndex > queuelist.count - 1)
{
newIndex = queuelist.count - 1;
}
console.debug("Move: " + index + " To: " + newIndex);
queuelist.model.move(index, newIndex, 1); // update the model
}
}
else if (swipeBackground.state == "swipingLeft" || swipeBackground.state == "swipingRight")
{
var moved = Math.abs(queueListItem.x - startX);
// Make sure that item has been dragged far enough
if (moved > queueListItem.width / 2 || (swipeBackground.primed === true && moved > units.gu(5)))
{
if (swipeBackground.primed === false)
{
collapseSwipeDelete(index); // collapse other swipeDeletes
// Move the listitem half way across to reveal the delete button
queueListItemPrepareRemoveAnimation.start();
}
else
{
// Check that actually swiping to cancel
if (swipeBackground.direction !== "" &&
swipeBackground.direction !== swipeBackground.state)
{
// Reset the listitem to the centre
queueListItemResetStartAnimation.start();
}
else
{
// Reset the listitem to the centre
queueListItemResetAnimation.start();
}
}
}
else
{
// Reset the listitem to the centre
queueListItemResetAnimation.start();
}
}
// ensure states are normal
swipeBackground.state = "normal";
queuelist.state = "normal";
}
// Animation to reset the x, y of the queueitem
ParallelAnimation {
id: queueListItemResetAnimation
running: false
NumberAnimation { // reset X
target: queueListItem
property: "x"
to: queueArea.startX
duration: queuelist.transitionDuration
}
NumberAnimation { // reset Y
target: queueListItem
property: "y"
to: queueArea.startY
duration: queuelist.transitionDuration
}
}
// Animation to reset the x, y of the item
ParallelAnimation {
id: queueListItemResetStartAnimation
running: false
NumberAnimation { // reset X
target: queueListItem
property: "x"
to: 0
duration: queuelist.transitionDuration
}
NumberAnimation { // reset Y
target: queueListItem
property: "y"
to: queueArea.startY
duration: queuelist.transitionDuration
}
onRunningChanged: {
if (running === true)
{
swipeBackground.direction = "";
swipeBackground.primed = false;
}
}
}
// Move the listitem half way across to reveal the delete button
NumberAnimation {
id: queueListItemPrepareRemoveAnimation
target: queueListItem
property: "x"
to: swipeBackground.state == "swipingRight" ? queueListItem.width / 2 : 0 - (queueListItem.width / 2)
duration: queuelist.transitionDuration
onRunningChanged: {
if (running === true)
{
swipeBackground.direction = swipeBackground.state;
swipeBackground.primed = true;
}
}
}
ParallelAnimation {
id: queueListItemRemoveAnimation
running: false
NumberAnimation { // 'slide' up
target: queueListItem
property: "height"
to: 0
duration: queuelist.transitionDuration
}
NumberAnimation { // 'slide' in direction of removal
target: queueListItem
property: "x"
to: swipeBackground.direction === "swipingLeft" ? 0 - queueListItem.width : queueListItem.width
duration: queuelist.transitionDuration
}
onRunningChanged: {
if (running === false)
{
// Remove the item
if (index == queuelist.currentIndex)
{
if (queuelist.count > 1)
{
// Next song and only play if currently playing
player.nextSong(player.isPlaying);
}
else
{
player.stop();
}
}
if (index < player.currentIndex) {
player.currentIndex -= 1;
}
// Remove item from queue and clear caches
trackQueue.model.remove(index);
}
}
}
}
onFocusChanged: {
if (focus == false) {
selected = false
} else {
selected = false
}
}
Rectangle {
id: trackContainer;
anchors {
fill: parent
margins: units.gu(0.5)
rightMargin: expandable.expanderButtonWidth
}
color: "transparent"
NumberAnimation {
id: trackContainerReorderAnimation
target: trackContainer;
property: "anchors.leftMargin";
duration: queuelist.transitionDuration;
to: units.gu(2)
}
NumberAnimation {
id: trackContainerResetAnimation
target: trackContainer;
property: "anchors.leftMargin";
duration: queuelist.transitionDuration;
to: units.gu(0.5)
}
UbuntuShape {
id: trackImage
anchors.left: parent.left
anchors.leftMargin: units.gu(1.5)
anchors.top: parent.top
height: (queueListItem.state === "current" ? queuelist.currentHeight - units.gu(8) : queuelist.normalHeight) - units.gu(2)
width: height
image: Image {
source: "image://albumart/artist=" + model.author + "&album=" + model.album
onStatusChanged: {
if (status === Image.Error) {
source = Qt.resolvedUrl("images/music-app-cover@30.png")
}
}
}
function calcAnchors() {
if (trackImage.height > queuelist.normalHeight && mainView.wideAspect) {
trackImage.anchors.left = undefined
trackImage.anchors.horizontalCenter = trackImage.parent.horizontalCenter
} else {
trackImage.anchors.left = trackImage.parent.left
trackImage.anchors.horizontalCenter = undefined
}
trackImage.width = trackImage.height; // force width to match height
}
Connections {
target: mainView
onWideAspectChanged: trackImage.calcAnchors()
}
onHeightChanged: {
calcAnchors()
}
Behavior on height {
NumberAnimation {
target: trackImage;
property: "height";
duration: queuelist.transitionDuration;
}
}
}
Label {
id: nowPlayingArtist
objectName: "nowplayingartist"
color: styleMusic.nowPlaying.labelSecondaryColor
elide: Text.ElideRight
height: units.gu(1)
text: model.author
fontSize: 'small'
width: parent.width - trackImage.width - units.gu(3.5)
x: trackImage.x + trackImage.width + units.gu(1)
y: trackImage.y + units.gu(1)
}
Label {
id: nowPlayingTitle
objectName: "nowplayingtitle"
color: styleMusic.common.white
elide: Text.ElideRight
height: units.gu(1)
text: model.title
fontSize: 'medium'
width: parent.width - trackImage.width - units.gu(3.5)
x: trackImage.x + trackImage.width + units.gu(1)
y: nowPlayingArtist.y + nowPlayingArtist.height + units.gu(1.25)
}
Label {
id: nowPlayingAlbum
objectName: "nowplayingalbum"
color: styleMusic.nowPlaying.labelSecondaryColor
elide: Text.ElideRight
height: units.gu(1)
text: model.album
fontSize: 'x-small'
width: parent.width - trackImage.width - units.gu(3.5)
x: trackImage.x + trackImage.width + units.gu(1)
y: nowPlayingTitle.y + nowPlayingTitle.height + units.gu(1.25)
}
}
Expander {
id: expandable
anchors {
fill: parent
}
actualListItemHeight: queueListItem.state === "current" ?
queuelist.currentHeight :
queuelist.normalHeight
buttonEnabled: !swipeBackground.primed
expanderButtonCentreFromBottom: queuelist.normalHeight - (trackContainer.anchors.margins * 2) - nowPlayingTitle.y - (nowPlayingTitle.height / 2)
listItem: queueListItem
model: trackQueue.model.get(index)
row: Row {
AddToPlaylist {
}
}
Behavior on actualListItemHeight {
NumberAnimation {
target: expandable;
property: "actualListItemHeight";
duration: queuelist.transitionDuration;
}
}
}
states: State {
name: "current"
PropertyChanges {
target: queueListItem
height: queuelist.currentHeight
}
PropertyChanges {
target: nowPlayingArtist
width: trackImage.width
x: trackImage.x
y: trackImage.y + trackImage.height + units.gu(0.5)
}
PropertyChanges {
target: nowPlayingTitle
width: trackImage.width
x: trackImage.x
y: nowPlayingArtist.y + nowPlayingArtist.height + units.gu(1.25)
}
PropertyChanges {
target: nowPlayingAlbum
width: trackImage.width
x: trackImage.x
y: nowPlayingTitle.y + nowPlayingTitle.height + units.gu(1.25)
}
PropertyChanges {
target: expandable
expanderButtonCentreFromBottom: queuelist.currentHeight - (trackContainer.anchors.margins * 2) - nowPlayingTitle.y - (nowPlayingTitle.height / 2)
}
}
transitions: Transition {
from: ",current"
to: "current,"
NumberAnimation {
duration: queuelist.transitionDuration
properties: "height,opacity,width,x,y"
}
onRunningChanged: {
if (running === false && ensureVisibleIndex != -1)
{
queuelist.positionViewAtIndex(ensureVisibleIndex, ListView.Beginning);
ensureVisibleIndex = -1;
}
}
}
}
}
}
}
|