197 lines
7.5 KiB
Text
197 lines
7.5 KiB
Text
<script type="text/x-template" id="libraryartist-item">
|
|
<div v-observe-visibility="{callback: visibilityChanged}"
|
|
@click="select"
|
|
class="cd-mediaitem-list-item"
|
|
:class="{'mediaitem-selected': app.select_hasMediaItem(guid)}"
|
|
@contextmenu="contextMenu">
|
|
<div class="artwork" v-show="isVisible" v-if="showArtwork == true">
|
|
<mediaitem-artwork
|
|
:url="getArtwork()"
|
|
size="50"
|
|
:type="item.type"></mediaitem-artwork>
|
|
</div>
|
|
<div class="info-rect" :style="{'padding-left': (showArtwork ? '' : '16px')}"
|
|
@dblclick="app.routeView(item)">
|
|
<div class="title text-overflow-elipsis">
|
|
{{ item.attributes.name }}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</script>
|
|
|
|
<script>
|
|
Vue.component('libraryartist-item', {
|
|
template: '#libraryartist-item',
|
|
data: function() {
|
|
return {
|
|
isVisible: false,
|
|
addedToLibrary: false,
|
|
guid: this.uuidv4(),
|
|
app: this.$root
|
|
}
|
|
},
|
|
props: {
|
|
'item': { type: Object, required: true },
|
|
'parent': { type: String, required: false },
|
|
'index': { type: Number, required: false, default: -1 },
|
|
'show-artwork': { type: Boolean, default: true },
|
|
'show-library-status': { type: Boolean, default: true },
|
|
'show-meta-data': { type: Boolean, default: false },
|
|
'show-duration': { type: Boolean, default: true },
|
|
'contextExt': { type: Object, required: false },
|
|
},
|
|
methods: {
|
|
uuidv4() {
|
|
return ([1e7] + -1e3 + -4e3 + -8e3 + -1e11).replace(/[018]/g, c =>
|
|
(c ^ crypto.getRandomValues(new Uint8Array(1))[0] & 15 >> c / 4).toString(16)
|
|
);
|
|
},
|
|
msToMinSec(ms) {
|
|
var minutes = Math.floor(ms / 60000);
|
|
var seconds = ((ms % 60000) / 1000).toFixed(0);
|
|
return minutes + ":" + (seconds < 10 ? '0' : '') + seconds;
|
|
},
|
|
getDataType() {
|
|
return this.item.type
|
|
},
|
|
async select(e) {
|
|
let u = this.item
|
|
let u1 = await app.mk.api.v3.music(`/v1/me/library/artists/${u.id}/albums`, {
|
|
"platform": "web",
|
|
"include[library-albums]": "artists,tracks",
|
|
"include[library-artists]": "catalog",
|
|
"fields[artists]": "url",
|
|
"includeOnly": "catalog,artists"
|
|
})
|
|
app.showCollection({ data: Object.assign({}, u1.data.data) }, u.attributes.name ?? '', '');
|
|
app.select_selectMediaItem(u.id, this.getDataType(), this.index, this.guid, true)
|
|
},
|
|
getArtwork() {
|
|
let u = ""
|
|
try {
|
|
u = this.item.relationships.catalog.data[0].attributes.artwork.url
|
|
} catch (e) {
|
|
}
|
|
;
|
|
return u;
|
|
},
|
|
contextMenu(event) {
|
|
|
|
let self = this
|
|
let data_type = this.getDataType()
|
|
|
|
let item = self.item
|
|
item.attributes.artistName = item.attributes.name;
|
|
|
|
let useMenu = "normal"
|
|
if (app.selectedMediaItems.length <= 1) {
|
|
app.selectedMediaItems = []
|
|
app.select_selectMediaItem(this.item.id, data_type, this.index, this.guid, true)
|
|
} else {
|
|
useMenu = "multiple"
|
|
}
|
|
|
|
let menus = {
|
|
multiple: {
|
|
items: [] //
|
|
},
|
|
normal: {
|
|
items: [
|
|
{
|
|
"name": app.getLz('action.goToArtist'),
|
|
"icon": "./assets/feather/user.svg",
|
|
"action": function() {
|
|
app.searchAndNavigate(self.item, 'artist')
|
|
console.log(self.item)
|
|
}
|
|
},
|
|
{
|
|
"icon": "./assets/feather/radio.svg",
|
|
"name": app.getLz('action.startRadio'),
|
|
"action": function() {
|
|
app.mk.setStationQueue({ song: self.item.attributes.playParams.id ?? self.item.id }).then(() => {
|
|
app.mk.play()
|
|
app.selectedMediaItems = []
|
|
})
|
|
}
|
|
},
|
|
{
|
|
"icon": "./assets/feather/share.svg",
|
|
"name": app.getLz('action.share'),
|
|
"action": function() {
|
|
if (!self.item.attributes.url && self.item.relationships) {
|
|
if (self.item.relationships.catalog) {
|
|
app.mkapi(self.item.attributes.playParams.kind, false, self.item.relationships.catalog.data[0].id).then(u => {
|
|
self.app.copyToClipboard((u.data.data.length && u.data.data.length > 0) ? u.data.data[0].attributes.url : u.data.data.attributes.url)
|
|
})
|
|
}
|
|
} else {
|
|
self.app.copyToClipboard(self.item.attributes.url)
|
|
}
|
|
}
|
|
},
|
|
]
|
|
}
|
|
}
|
|
if (this.contextExt) {
|
|
// if this.context-ext.normal is true append all options to the 'normal' menu which is a kvp of arrays
|
|
if (this.contextExt.normal) {
|
|
menus.normal.items = menus.normal.items.concat(this.contextExt.normal)
|
|
}
|
|
if (this.contextExt.multiple) {
|
|
menus.multiple.items = menus.multiple.items.concat(this.contextExt.multiple)
|
|
}
|
|
}
|
|
//CiderContextMenu.Create(event, menus[useMenu]); // Depreciated Context Menu
|
|
app.showMenuPanel(menus[useMenu], event);
|
|
|
|
},
|
|
visibilityChanged: function(isVisible, entry) {
|
|
this.isVisible = isVisible
|
|
},
|
|
addToLibrary() {
|
|
let item = this.item
|
|
if (item.attributes.playParams.id) {
|
|
console.log('adding to library', item.attributes.playParams.id)
|
|
app.addToLibrary(item.attributes.playParams.id.toString())
|
|
this.addedToLibrary = true
|
|
} else if (item.id) {
|
|
console.log('adding to library', item.id)
|
|
app.addToLibrary(item.id.toString())
|
|
this.addedToLibrary = true
|
|
}
|
|
},
|
|
async removeFromLibrary() {
|
|
let item = this.item
|
|
let params = { "fields[songs]": "inLibrary", "fields[albums]": "inLibrary", "relate": "library" }
|
|
let id = item.id ?? item.attributes.playParams.id
|
|
let res = await app.mkapi(item.attributes.playParams.kind ?? item.type, item.attributes.playParams.isLibrary ?? false, item.attributes.playParams.id ?? item.id, params);
|
|
if (res && res.relationships && res.relationships.library && res.relationships.library.data && res.relationships.library.data.length > 0) {
|
|
id = res.relationships.library.data[0].id
|
|
}
|
|
let kind = this.item.attributes.playParams.kind ?? this.data.item ?? '';
|
|
let truekind = (!kind.endsWith("s")) ? (kind + "s") : kind;
|
|
if (item.attributes.playParams.id) {
|
|
console.log('remove from library', id)
|
|
app.removeFromLibrary(truekind, id)
|
|
this.addedToLibrary = false
|
|
} else if (item.id) {
|
|
console.log('remove from library', id)
|
|
app.removeFromLibrary(truekind, id)
|
|
this.addedToLibrary = false
|
|
}
|
|
},
|
|
playTrack() {
|
|
let item = this.item
|
|
let parent = this.parent
|
|
let childIndex = this.index
|
|
console.log(item, parent, childIndex)
|
|
if (parent != null && childIndex != null) {
|
|
app.queueParentandplayChild(parent, childIndex, item);
|
|
} else {
|
|
app.playMediaItemById(item.attributes.playParams.id ?? item.id, item.attributes.playParams.kind ?? item.type, item.attributes.playParams.isLibrary ?? false, item.attributes.url)
|
|
}
|
|
}
|
|
}
|
|
});
|
|
</script>
|