-
Notifications
You must be signed in to change notification settings - Fork 55
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Zarlex
committed
Jul 26, 2018
1 parent
2e6dbc7
commit 9e22e82
Showing
3 changed files
with
500 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
import {AuxappModel} from '../auxapp/auxapp.model'; | ||
import {nested} from '../../backbone/decorators/nested.decorator'; | ||
import {attributesKey} from '../../backbone/decorators/attributes-key.decorator'; | ||
import {PlayqueueItemsAuxappCollection} from './playqueue-item/playqueue-items-auxapp.collection'; | ||
import {PlayqueueItemAuxappModel} from './playqueue-item/playqueue-item-auxapp.model'; | ||
|
||
export class PlayqueueAuxappModel extends AuxappModel { | ||
endpoint = '/queue'; | ||
|
||
@attributesKey('items') | ||
@nested() | ||
items: PlayqueueItemsAuxappCollection<PlayqueueItemAuxappModel>; | ||
|
||
parse(attributes) { | ||
delete attributes.items; | ||
return attributes; | ||
} | ||
|
||
fetch(...args) { | ||
const id = this.id; | ||
this.set('id', 'mine'); | ||
const superCall = super.fetch.apply(this, ...args).then(() => { | ||
this.items.fetch(); | ||
return this; | ||
}); | ||
this.set('id', id); | ||
return superCall; | ||
} | ||
|
||
save() { | ||
if (this.id) { | ||
let index = 0; | ||
this.items.each((item) => { | ||
if (index < 3) { | ||
item.save(); | ||
} | ||
index++; | ||
}); | ||
} | ||
} | ||
|
||
initialize() { | ||
if (this.id) { | ||
this.items.setEndpoint(this.id); | ||
} | ||
this.on('change:id', () => { | ||
this.items.setEndpoint(this.id); | ||
}); | ||
} | ||
} | ||
|
152 changes: 152 additions & 0 deletions
152
src/app/modules/api/playqueue/playqueue-item/playqueue-item-auxapp.model.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,152 @@ | ||
import {PlaylistItemAuxappModel} from '../../playlists/playlist-item/playlist-item-auxapp.model'; | ||
import {isNumber} from 'underscore'; | ||
import {PlayQueueItemStatus} from '../../../player/src/playqueue-item-status.enum'; | ||
import {dynamicInstance} from '../../../backbone/decorators/dynamic-instance.decorator'; | ||
import {ITrack} from '../../tracks/track.interface'; | ||
import {TrackMixcloudModel} from '../../tracks/track-mixcloud.model'; | ||
import {attributesKey} from '../../../backbone/decorators/attributes-key.decorator'; | ||
import {TrackSoundcloudModel} from '../../tracks/track-soundcloud.model'; | ||
import {defaultValue} from '../../../backbone/decorators/default-value.decorator'; | ||
import {TrackYoutubeModel} from '../../tracks/track-youtube.model'; | ||
import {PlayqueueItemsAuxappCollection} from './playqueue-items-auxapp.collection'; | ||
|
||
export class PlayqueueItemAuxappModel | ||
extends PlaylistItemAuxappModel { | ||
|
||
private _promisePerState = {}; | ||
|
||
@attributesKey('state') | ||
@defaultValue(PlayQueueItemStatus.Scheduled) | ||
status: PlayQueueItemStatus; | ||
|
||
@attributesKey('track') | ||
@dynamicInstance({ | ||
identifierKey: 'provider', | ||
identifierKeyValueMap: { | ||
'soundcloud': TrackSoundcloudModel, | ||
'youtube': TrackYoutubeModel, | ||
'mixcloud': TrackMixcloudModel | ||
} | ||
}) | ||
track: ITrack; | ||
|
||
@attributesKey('progress') | ||
@defaultValue(0) | ||
progress: number; | ||
|
||
@attributesKey('duration') | ||
@defaultValue(0) | ||
duration: number; | ||
|
||
@attributesKey('indexBeforeShuffle') | ||
indexBeforeShuffle: number; | ||
|
||
idAttribute = 'ABC'; | ||
|
||
url = () => { | ||
return (<PlayqueueItemsAuxappCollection<PlayqueueItemAuxappModel>>this.collection).url(); | ||
}; | ||
|
||
private resolveOnStatus(requestedStatus): Promise<any> { | ||
if (!this._promisePerState[requestedStatus]) { | ||
this._promisePerState[requestedStatus] = new Promise(resolve => { | ||
if (this.status === requestedStatus) { | ||
resolve(); | ||
this._promisePerState[requestedStatus] = null; | ||
} else { | ||
const statusListener = () => { | ||
if (this.status === requestedStatus) { | ||
this.off('change:status', statusListener, this); | ||
resolve(); | ||
this._promisePerState[requestedStatus] = null; | ||
} | ||
}; | ||
this.on('change:status', statusListener, this); | ||
} | ||
}); | ||
} | ||
|
||
return this._promisePerState[requestedStatus]; | ||
} | ||
|
||
queue(): void { | ||
this.status = PlayQueueItemStatus.Queued; | ||
} | ||
|
||
unQueue(): void { | ||
this.status = PlayQueueItemStatus.Scheduled; | ||
if (this.collection) { | ||
const collection = this.collection; | ||
collection.remove(this, {silent: true}); | ||
collection.add(this, {silent: true}); | ||
} | ||
} | ||
|
||
play(startTime?: number): Promise<any> { | ||
if (isNumber(startTime)) { | ||
this.progress = startTime; | ||
} | ||
this.status = PlayQueueItemStatus.RequestedPlaying; | ||
return this.resolveOnStatus(PlayQueueItemStatus.Playing); | ||
} | ||
|
||
pause(): Promise<any> { | ||
this.status = PlayQueueItemStatus.RequestedPause; | ||
return this.resolveOnStatus(PlayQueueItemStatus.Paused); | ||
} | ||
|
||
stop(): Promise<any> { | ||
this.status = PlayQueueItemStatus.RequestedStop; | ||
this.progress = 0; | ||
return this.resolveOnStatus(PlayQueueItemStatus.Stopped); | ||
} | ||
|
||
seekTo(to: number): Promise<any> { | ||
if (this.isPlaying()) { | ||
return this.pause().then(() => { | ||
return this.play(to); | ||
}); | ||
} else { | ||
return this.play(to); | ||
} | ||
} | ||
|
||
restart(): Promise<any> { | ||
return this.seekTo(0); | ||
} | ||
|
||
isQueued(): boolean { | ||
return this.status === PlayQueueItemStatus.Queued; | ||
} | ||
|
||
isPlaying(): boolean { | ||
return this.status === PlayQueueItemStatus.Playing || this.status === PlayQueueItemStatus.RequestedPlaying; | ||
} | ||
|
||
isPaused(): boolean { | ||
return this.status === PlayQueueItemStatus.Paused || this.status === PlayQueueItemStatus.RequestedPause; | ||
} | ||
|
||
isStopped(): boolean { | ||
return this.status === PlayQueueItemStatus.Stopped || this.status === PlayQueueItemStatus.RequestedStop; | ||
} | ||
|
||
isScheduled(): boolean { | ||
return this.status === PlayQueueItemStatus.Scheduled; | ||
} | ||
|
||
toMiniJSON() { | ||
const item = this.toJSON(); | ||
item.track = this.track.toMiniJSON(); | ||
return item; | ||
} | ||
|
||
compose() { | ||
return { | ||
track_provider_id: this.track.provider, | ||
track_id: this.track.id.toString(), | ||
state: 'stopped' | ||
}; | ||
} | ||
|
||
} |
Oops, something went wrong.