KawAnime/pages/watchList.vue

298 lines
7.0 KiB
Vue
Raw Normal View History

2017-04-15 14:16:14 +00:00
<template>
<v-container fluid id="watch-list">
<v-tabs id="tabs" grow icons>
<v-tab-item href="#tabs-1" slot="activators">
Watch list
<v-icon>watch_later</v-icon>
</v-tab-item>
<v-tab-item href="#tabs-2" slot="activators">
Watching
<v-icon>play_circle_outline</v-icon>
</v-tab-item>
<v-tab-item href="#tabs-3" slot="activators">
Seen
<v-icon>done_all</v-icon>
</v-tab-item>
<v-tab-content v-for="i in 3" :key="i"
v-bind:id="'tabs-' + i"
slot="content">
<v-card>
<v-card-text>
<v-row>
<v-col xs12>
<v-row class="top-form">
<v-col xs2>
<v-btn secondary icon
@click.native="selectAll(i)"
v-tooltip:bottom="{ html: allSelected[i] === true ? 'Unselect all' : 'Select all' }">
<v-icon>select_all</v-icon>
</v-btn>
<v-menu transition="v-slide-x-transition"
bottom
right>
<v-btn secondary dark slot="activator">Move to</v-btn>
<v-list>
<v-list-item v-for="action in actions" :key="action">
<v-list-tile>
<v-list-tile-title>{{ action }}</v-list-tile-title>
</v-list-tile>
</v-list-item>
</v-list>
</v-menu>
</v-col>
<v-col xs6></v-col>
<v-col xs2 @keyup.enter="addEntry(i)">
<v-text-field type="text"
class="entry-text"
label="Add entry"
v-model="entries[i]"
dark>
</v-text-field>
</v-col>
<v-col xs2 class="add-button-container">
<v-btn dark secondary
@click.native="addEntry(i)"
class="add-button">Add
</v-btn>
</v-col>
</v-row>
</v-col>
<template v-for="item in lists[i - 1]">
<v-col lg4 sm6 xs12
class="elem" :class="item.split(' ').join('-')">
<v-row class="elem-content elevation-3"
v-ripple="true">
<v-col xs1 class="box" @click.capture="select(item, i)">
<v-checkbox label="" accent v-model="selected[i]" disabled :value="item" dark/>
</v-col>
<v-col xs9 v-tooltip:top="{ html: item }" @click.capture="select(item, i)">
<h6 class="ellipsis elem-title">{{ item }}</h6>
</v-col>
<v-col xs2>
<v-menu bottom right>
<v-btn icon="icon" slot="activator" dark>
<v-icon>more_vert</v-icon>
</v-btn>
<v-list>
<v-list-item>
<v-list-tile>
<v-list-tile-title>Download</v-list-tile-title>
</v-list-tile>
</v-list-item>
<v-list-item>
<v-list-tile>
<v-list-tile-title>Information</v-list-tile-title>
</v-list-tile>
</v-list-item>
<v-list-item>
<v-list-tile>
<v-list-tile-title>Delete this entry</v-list-tile-title>
</v-list-tile>
</v-list-item>
</v-list>
</v-menu>
</v-col>
</v-row>
</v-col>
</template>
</v-row>
</v-card-text>
</v-card>
</v-tab-content>
</v-tabs>
</v-container>
2017-04-15 14:16:14 +00:00
</template>
<script>
export default {
data() {
return {
selected: {
1: [],
2: [],
3: []
},
allSelected: {
1: false,
2: false,
3: false
},
entries: {
1: '',
2: '',
3: ''
},
actions: [
'Watch list',
'Watching',
'Seen'
]
}
},
2017-04-27 22:52:06 +00:00
computed: {
watchList: function () {
2017-04-27 22:52:06 +00:00
return this.$store.state.watchList
},
2017-04-27 22:52:06 +00:00
seen: function () {
return this.$store.state.seen
2017-04-27 22:52:06 +00:00
},
watching: function () {
return this.$store.state.watching
},
lists: function () {
return [
this.watchList,
this.watching,
this.seen
]
}
2017-04-27 22:52:06 +00:00
},
methods: {
download(name) {
},
addEntry(i) {
if (this.entries[i] !== '')
{
console.log(`[${(new Date()).toLocaleTimeString()}]: Adding ${this.entries[i]} to list.`)
this.entries[i] = ''
}
},
select(item, i) {
const elem = document.getElementsByClassName(item.split(' ').join('-'))[0].children[0]
if (elem.classList.contains('selected') === true)
{
elem.classList.remove('selected')
this.selected[i] = this.selected[i].filter((x) => { return !(x === item) })
}
else
{
elem.className += ' selected'
this.selected[i].push(item)
}
},
selectAll(i) {
switch (i)
{
case 1:
if (this.allSelected[i] === false)
{
this.watchList.forEach((elem) => {
// Color element
const tmpElem = document.getElementsByClassName(elem.split(' ').join('-'))[0].children[0]
if (!tmpElem.classList.contains('selected') === true) tmpElem.className += ' selected'
})
// Add all elements to selected
this.selected[i] = [...this.watchList]
}
else
{
this.selected[i] = []
const selectedItems = document.getElementsByClassName('selected')
for ( let j = 0, l = selectedItems.length; j < l; ++j)
{
console.log(selectedItems[j])
if (selectedItems[j].classList.contains('selected') === true)
selectedItems[j].classList.remove('selected')
}
}
this.allSelected[i] = !this.allSelected[i]
break
case 2:
break
case 3:
break
default:
break
}
}
}
2017-04-15 14:16:14 +00:00
}
</script>
2017-04-27 22:52:06 +00:00
<style scoped>
h6
{
margin: 0;
color: rgba(255, 255, 255, 0.8);
}
.ellipsis
{
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.select-all
{
display: inline-block;
}
2017-04-27 22:52:06 +00:00
.elem
{
padding: 5px 5px 5px 5px;
2017-04-27 22:52:06 +00:00
color: rgba(255, 255, 255, 0.8);
}
2017-04-15 14:16:14 +00:00
.elem-content
{
margin-left: 5px;
position: relative;
background-color: rgb(60, 60, 60);
}
.elem-content:hover
2017-04-27 22:52:06 +00:00
{
box-shadow: 0 5px 5px -3px rgba(0, 0, 0, 0.2), 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12) !important;
}
/*noinspection CssUnusedSymbol*/
.input-group
{
margin: 0;
}
.top-form
{
margin-bottom: 10px;
padding-left: 15px;
}
.entry-text
{
margin-top: 5px;
}
.add-button-container
{
padding-right: 2%;
}
.box
{
padding-top: 7px;
padding-left: 13px;
}
.elem-title
{
line-height: 24px;
font-size: 20px;
padding-top: 10px;
padding-left: 10px;
}
/*noinspection CssUnusedSymbol*/
.selected
{
background-color: #2E7D32;
}
2017-04-15 14:16:14 +00:00
</style>