2023-02-08 12:37:55 +01:00
|
|
|
<template>
|
|
|
|
<DialogBase
|
|
|
|
ref="dialogWindow"
|
|
|
|
:title="selectedBox.title"
|
|
|
|
@canceled="closed"
|
|
|
|
:showFooter="false"
|
|
|
|
:closeOnEscape="selectedVideo._id == null"
|
|
|
|
:disableXscroll="true"
|
|
|
|
:disableYscroll="true"
|
|
|
|
>
|
2023-02-12 23:03:19 +01:00
|
|
|
<div id="boxViewer" class="flex-row">
|
2023-02-08 12:37:55 +01:00
|
|
|
<div id="header" class="flex-column">
|
|
|
|
<div id="background" :style="coverBackground" />
|
2023-02-12 23:03:19 +01:00
|
|
|
<div class="grow z1 center flex-column">
|
|
|
|
<img class="glow ma24" :src="cover" @dblclick="dblclick" />
|
|
|
|
</div>
|
2023-02-08 12:37:55 +01:00
|
|
|
<awesome-icon
|
|
|
|
icon="star"
|
|
|
|
size="2x"
|
|
|
|
class="favourite ma4 z2"
|
|
|
|
:class="{ active: isFavourite }"
|
|
|
|
@click="toggleFavourite"
|
|
|
|
/>
|
2023-02-15 23:36:37 +01:00
|
|
|
<div id="stats" class="flex-row z1">
|
|
|
|
<DropDown v-if="$store.getters['user/isAdministrator']">
|
|
|
|
<button class="flat center" :title="visibility_text">
|
|
|
|
<awesome-icon :icon="visibility_icon" />
|
|
|
|
</button>
|
|
|
|
<template v-slot:dropdown-content>
|
|
|
|
<div>
|
|
|
|
<button
|
|
|
|
v-for="(item, i) in $store.state.system.lists.visibility"
|
|
|
|
:key="i"
|
|
|
|
@click="setVisibility(item)"
|
|
|
|
>
|
|
|
|
<awesome-icon :icon="getVisibilityIcon(item)" />{{
|
|
|
|
getVisibilityText(item)
|
|
|
|
}}
|
|
|
|
</button>
|
|
|
|
<hr />
|
|
|
|
<button v-if="!selectedBox.share._id" @click="shareEnable">
|
|
|
|
<awesome-icon icon="share" />Share this box
|
|
|
|
</button>
|
2023-02-16 23:59:01 +01:00
|
|
|
<button
|
|
|
|
v-if="selectedBox.share._id"
|
|
|
|
@click="addShareUrlToClipboard"
|
|
|
|
>
|
|
|
|
<awesome-icon icon="clipboard" />Copy url into clipboard
|
|
|
|
</button>
|
|
|
|
<button v-if="selectedBox.share._id" @click="shareDisable">
|
2023-02-15 23:36:37 +01:00
|
|
|
<awesome-icon icon="share" />Remove share
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</DropDown>
|
|
|
|
<div class="grow flex-column">
|
|
|
|
<p class="ma4 center">
|
|
|
|
<span class="">
|
|
|
|
<b>{{ selectedBox.title }}</b>
|
|
|
|
<br />
|
|
|
|
<b>{{ box_videos.length }}</b> Videos
|
|
|
|
</span>
|
|
|
|
</p>
|
2023-02-08 12:37:55 +01:00
|
|
|
</div>
|
2023-02-15 23:36:37 +01:00
|
|
|
<DropDown v-if="$store.getters['user/isAdministrator']">
|
|
|
|
<button class="flat center">
|
|
|
|
<awesome-icon icon="ellipsis-v" />
|
|
|
|
</button>
|
|
|
|
<template v-slot:dropdown-content>
|
|
|
|
<div>
|
|
|
|
<button @click="uploadNewCover">
|
|
|
|
<awesome-icon icon="image" />Set new Cover...
|
|
|
|
</button>
|
|
|
|
<button @click="resetCover">
|
|
|
|
<awesome-icon icon="eraser" />Reset Cover
|
|
|
|
</button>
|
|
|
|
<hr />
|
|
|
|
<button @click="mergeBox">
|
|
|
|
<awesome-icon icon="compress-alt" />Merge Boxes...
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</DropDown>
|
2023-02-08 12:37:55 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<ul id="videoList" class="videos">
|
|
|
|
<li v-for="item in selectedBox.videos" :key="item._id">
|
|
|
|
<VideoItem :video="item" />
|
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<BoxMerge ref="mergeDialog" />
|
|
|
|
</DialogBase>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import BoxMerge from "./BoxMerge";
|
|
|
|
import VideoItem from "../Video";
|
|
|
|
import { mapGetters } from "vuex";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
methods: {
|
2023-02-16 23:59:01 +01:00
|
|
|
addShareUrlToClipboard() {
|
|
|
|
let url =
|
|
|
|
window.location.origin + "/#/share?id=" + this.selectedBox.share._id;
|
|
|
|
navigator.clipboard.writeText(url);
|
|
|
|
},
|
2023-02-08 12:37:55 +01:00
|
|
|
dblclick() {
|
|
|
|
this.$store.commit("tracks/resetSelectedTrack");
|
|
|
|
this.$store.commit("radios/resetSelectedRadio");
|
|
|
|
this.$store.dispatch("videos/playContainer", this.selectedBox);
|
|
|
|
},
|
|
|
|
gotoVideo() {
|
|
|
|
if (this.$route.query.play) {
|
|
|
|
let video = this.selectedBox.videos.find(
|
|
|
|
(f) => f._id == this.$route.query.play
|
|
|
|
);
|
|
|
|
if (video) {
|
|
|
|
this.$store.dispatch("videos/play", video);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
|
|
|
gotoNextBox() {
|
|
|
|
this.$store.dispatch("boxes/gotoNextBox");
|
|
|
|
},
|
|
|
|
gotoPrevBox() {
|
|
|
|
this.$store.dispatch("boxes/gotoPrevBox");
|
|
|
|
},
|
|
|
|
closed() {
|
|
|
|
if (
|
|
|
|
window.history.state.back.indexOf("?") == -1 ||
|
|
|
|
window.history.state.back.startsWith("/search")
|
|
|
|
) {
|
|
|
|
this.$router.back();
|
|
|
|
} else {
|
|
|
|
this.$store.dispatch("boxes/resetSelectedBox");
|
|
|
|
}
|
|
|
|
},
|
|
|
|
keydownListener(e) {
|
|
|
|
if (e.key == "ArrowLeft") {
|
|
|
|
e.preventDefault();
|
|
|
|
this.gotoPrevBox();
|
|
|
|
}
|
|
|
|
if (e.key == "ArrowRight") {
|
|
|
|
e.preventDefault();
|
|
|
|
this.gotoNextBox();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
mergeBox() {
|
|
|
|
this.$refs.mergeDialog.open(this.selectedBox);
|
|
|
|
},
|
|
|
|
toggleFavourite() {
|
|
|
|
this.$store.dispatch("user/toggleFavourite", {
|
|
|
|
itemId: this.selectedBox._id,
|
|
|
|
type: "box",
|
|
|
|
});
|
|
|
|
},
|
|
|
|
setVisibility(visibility) {
|
|
|
|
this.selectedBox.visibility = visibility;
|
|
|
|
this.$store.dispatch("boxes/updateBox", this.selectedBox);
|
|
|
|
},
|
|
|
|
uploadNewCover() {
|
|
|
|
this.$store.dispatch("boxes/uploadNewCover", this.selectedBox);
|
|
|
|
},
|
|
|
|
getVisibilityIcon(visibility) {
|
|
|
|
return visibility == "global"
|
|
|
|
? "globe"
|
|
|
|
: visibility == "instance"
|
|
|
|
? "server"
|
|
|
|
: visibility == "hidden"
|
|
|
|
? "eye-slash"
|
|
|
|
: "user";
|
|
|
|
},
|
|
|
|
getVisibilityText(visibility) {
|
|
|
|
return visibility == "global"
|
|
|
|
? "Global"
|
|
|
|
: visibility == "instance"
|
|
|
|
? "On this server"
|
|
|
|
: visibility == "hidden"
|
|
|
|
? "Hide this Box"
|
|
|
|
: "Only for me";
|
|
|
|
},
|
|
|
|
resetCover() {
|
|
|
|
this.$store.dispatch("boxes/resetCover", this.selectedBox);
|
|
|
|
},
|
2023-02-15 23:36:37 +01:00
|
|
|
shareEnable() {
|
2023-02-16 23:59:01 +01:00
|
|
|
this.$store.dispatch("boxes/shareEnable", this.selectedBox).then(() => {
|
|
|
|
this.addShareUrlToClipboard();
|
|
|
|
});
|
2023-02-15 23:36:37 +01:00
|
|
|
},
|
|
|
|
shareDisable() {
|
|
|
|
this.$store.dispatch("boxes/shareDisable", this.selectedBox);
|
2023-02-15 12:57:13 +01:00
|
|
|
},
|
2023-02-08 12:37:55 +01:00
|
|
|
},
|
|
|
|
computed: {
|
|
|
|
...mapGetters({
|
|
|
|
prevBox: ["boxes/prevBox"],
|
|
|
|
nextBox: ["boxes/nextBox"],
|
|
|
|
selectedBox: ["boxes/selectedBox"],
|
|
|
|
selectedVideo: ["videos/selectedVideo"],
|
|
|
|
favourites: ["user/favourites"],
|
|
|
|
}),
|
|
|
|
box_videos() {
|
|
|
|
return this.selectedBox.videos || [];
|
|
|
|
},
|
|
|
|
box_year() {
|
|
|
|
return this.selectedBox.year;
|
|
|
|
},
|
|
|
|
coverBackground() {
|
|
|
|
return "background-image: url('" + this.cover + "')";
|
|
|
|
},
|
|
|
|
cover() {
|
|
|
|
let cover = "/static/icons/dummy/box.svg";
|
|
|
|
if (this.selectedBox.covers && this.selectedBox.covers.cover256) {
|
|
|
|
cover = this.selectedBox.covers.cover256;
|
|
|
|
}
|
|
|
|
return cover;
|
|
|
|
},
|
|
|
|
isFavourite() {
|
|
|
|
return (
|
|
|
|
this.favourites.find((f) => f.itemId == this.selectedBox._id) !=
|
|
|
|
undefined
|
|
|
|
);
|
|
|
|
},
|
|
|
|
visibility_icon() {
|
|
|
|
return this.selectedBox.visibility == "global"
|
|
|
|
? "globe"
|
|
|
|
: this.selectedBox.visibility == "instance"
|
|
|
|
? "server"
|
|
|
|
: this.selectedBox.visibility == "hidden"
|
|
|
|
? "eye-slash"
|
|
|
|
: "user";
|
|
|
|
},
|
|
|
|
visibility_text() {
|
|
|
|
return this.selectedBox.visibility == "global"
|
|
|
|
? "Visible for the whole world"
|
|
|
|
: this.selectedBox.visibility == "instance"
|
|
|
|
? "Visible on this instance"
|
|
|
|
: this.selectedBox.visibility == "hidden"
|
|
|
|
? "Hidden for all users"
|
|
|
|
: "Visible only for me";
|
|
|
|
},
|
|
|
|
},
|
|
|
|
watch: {
|
|
|
|
selectedBox(newVal) {
|
|
|
|
if (newVal._id) {
|
|
|
|
if (!this.$refs.dialogWindow.visible) {
|
|
|
|
this.$refs.dialogWindow.open();
|
|
|
|
window.addEventListener("keydown", this.keydownListener);
|
|
|
|
}
|
|
|
|
this.gotoVideo();
|
|
|
|
} else {
|
|
|
|
if (this.$refs.dialogWindow.visible) {
|
|
|
|
this.$refs.dialogWindow.close();
|
|
|
|
}
|
|
|
|
window.removeEventListener("keydown", this.keydownListener);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
components: {
|
|
|
|
BoxMerge,
|
|
|
|
VideoItem,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
#boxViewer {
|
2023-02-12 23:03:19 +01:00
|
|
|
height: 462px;
|
2023-02-08 12:37:55 +01:00
|
|
|
}
|
|
|
|
#header {
|
|
|
|
position: relative;
|
|
|
|
background-color: black;
|
|
|
|
}
|
2023-02-12 23:03:19 +01:00
|
|
|
#header img {
|
|
|
|
align-self: center;
|
|
|
|
width: 256px;
|
|
|
|
}
|
2023-02-08 12:37:55 +01:00
|
|
|
#stats {
|
|
|
|
z-index: 2;
|
2023-02-15 11:13:06 +01:00
|
|
|
align-items: center;
|
2023-02-08 12:37:55 +01:00
|
|
|
color: var(--white);
|
|
|
|
text-shadow: 0 1px 2px black;
|
|
|
|
line-height: 1.4;
|
|
|
|
background-color: #ffffff40;
|
|
|
|
border-top: 1px solid #ffffff20;
|
|
|
|
border-bottom: 1px solid #00000020;
|
|
|
|
}
|
2023-02-16 23:59:01 +01:00
|
|
|
.dropdown-activator button {
|
2023-02-12 23:03:19 +01:00
|
|
|
width: 32px;
|
2023-02-15 11:13:06 +01:00
|
|
|
height: 32px;
|
2023-02-12 23:03:19 +01:00
|
|
|
}
|
|
|
|
#stats p {
|
|
|
|
max-width: 192px;
|
|
|
|
align-self: center;
|
|
|
|
}
|
2023-02-15 12:57:13 +01:00
|
|
|
#videoList {
|
|
|
|
background-color: var(--white);
|
|
|
|
z-index: 1;
|
|
|
|
overflow: overlay;
|
|
|
|
}
|
2023-02-08 12:37:55 +01:00
|
|
|
.video {
|
|
|
|
width: 220px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 480px) {
|
|
|
|
#boxViewer {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
2023-02-12 23:03:19 +01:00
|
|
|
#stats p {
|
|
|
|
max-width: initial;
|
|
|
|
}
|
2023-02-08 12:37:55 +01:00
|
|
|
}
|
|
|
|
@media (max-width: 480px), (max-height: 480px) {
|
2023-02-12 23:03:19 +01:00
|
|
|
#boxViewer {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
#header img {
|
|
|
|
width: 192px;
|
|
|
|
}
|
2023-02-08 12:37:55 +01:00
|
|
|
#videoList {
|
|
|
|
height: initial;
|
2023-02-12 23:03:19 +01:00
|
|
|
flex-grow: 1;
|
2023-02-08 12:37:55 +01:00
|
|
|
}
|
|
|
|
.video {
|
|
|
|
width: initial;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@media (max-height: 480px) {
|
|
|
|
}
|
|
|
|
</style>
|