mirror of https://github.com/Kylart/KawAnime.git
215 lines
5.7 KiB
Vue
215 lines
5.7 KiB
Vue
<template>
|
|
<v-app dark>
|
|
<!--<v-system-bar dark-->
|
|
<!--lights-out-->
|
|
<!--status-->
|
|
<!--v-if="!browser">-->
|
|
<!--<v-spacer></v-spacer>-->
|
|
<!--<v-icon class="window-icon">remove</v-icon>-->
|
|
<!--<v-icon class="window-icon">check_box_outline_blank</v-icon>-->
|
|
<!--<v-icon class="window-icon">close</v-icon>-->
|
|
<!--</v-system-bar>-->
|
|
|
|
<v-navigation-drawer class="pb-0"
|
|
persistent
|
|
v-model="$store.state.drawer"
|
|
>
|
|
<v-list>
|
|
<v-list-tile id="title">
|
|
<v-list-tile-action>
|
|
<img src="~static/images/icon2.png" height="55"/>
|
|
</v-list-tile-action>
|
|
<v-list-tile-title class="title">
|
|
かわニメ
|
|
</v-list-tile-title>
|
|
</v-list-tile>
|
|
<template v-for="item in itemGroup">
|
|
<v-list-group v-if="item.items"
|
|
:key="item.title">
|
|
<v-list-tile slot="item" class="ripple" ripple>
|
|
<v-list-tile-action>
|
|
<v-icon>{{ item.action }}</v-icon>
|
|
</v-list-tile-action>
|
|
<v-list-tile-title>
|
|
{{ item.title }}
|
|
</v-list-tile-title>
|
|
<v-list-tile-action>
|
|
<v-icon>
|
|
keyboard_arrow_down
|
|
</v-icon>
|
|
</v-list-tile-action>
|
|
</v-list-tile>
|
|
<v-list-tile v-for="subItem in item.items"
|
|
class="ripple"
|
|
ripple
|
|
:to="subItem.href"
|
|
key="subItem.title">
|
|
<v-list-tile-action>
|
|
<v-icon>{{ subItem.action }}</v-icon>
|
|
</v-list-tile-action>
|
|
<v-list-tile-content>
|
|
<v-list-tile-title>{{ subItem.title }}</v-list-tile-title>
|
|
</v-list-tile-content>
|
|
</v-list-tile>
|
|
<v-divider></v-divider>
|
|
</v-list-group>
|
|
<v-subheader v-else-if="item.header">{{ item.header }}</v-subheader>
|
|
<v-divider v-else-if="item.divider"></v-divider>
|
|
</template>
|
|
</v-list>
|
|
</v-navigation-drawer>
|
|
|
|
<v-toolbar fixed dark class="mablue">
|
|
<v-toolbar-side-icon @click.native="toggleDrawer()"></v-toolbar-side-icon>
|
|
<v-toolbar-title class="white--text title">かわニメ</v-toolbar-title>
|
|
<v-spacer></v-spacer>
|
|
<info-modal></info-modal>
|
|
<v-btn icon
|
|
class="open-in-browser"
|
|
v-tooltip:left="{ html: 'Open KawAnime in your browser' }"
|
|
@click.native="openInBrowser()">
|
|
<v-icon>open_in_new</v-icon>
|
|
</v-btn>
|
|
<v-btn icon>
|
|
<v-icon>settings</v-icon>
|
|
</v-btn>
|
|
</v-toolbar>
|
|
|
|
<main style="min-height: 91vh; padding-top: 48px;">
|
|
<nuxt></nuxt>
|
|
</main>
|
|
|
|
<v-footer class="grey darken-4">
|
|
<v-spacer></v-spacer>
|
|
<div class="white--text">© 2016 - 2017 Kylart</div>
|
|
</v-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import Settings from '~components/settings.vue'
|
|
import infoModal from '~components/infoModal.vue'
|
|
|
|
export default {
|
|
data () {
|
|
return {
|
|
searchModal: false,
|
|
drawer: false,
|
|
browser: false,
|
|
links: [
|
|
{link: 'Github', to: 'https://github.com/Kylart/KawAnime', icon: 'github-circle'},
|
|
{link: 'Updates', to: '', icon: ''}
|
|
],
|
|
itemGroup: [
|
|
{divider: true},
|
|
{header: 'Core'},
|
|
{
|
|
title: 'Downloading',
|
|
action: 'file_download',
|
|
items: [
|
|
{
|
|
title: 'Downloader',
|
|
action: 'file_download',
|
|
href: '/downloader'
|
|
}, {
|
|
title: 'Latest releases',
|
|
action: 'access_time',
|
|
href: '/'
|
|
}
|
|
]
|
|
}, {
|
|
title: 'News',
|
|
action: 'info_outline',
|
|
items: [
|
|
{
|
|
title: 'Seasons',
|
|
action: 'hourglass_empty',
|
|
href: '/seasons'
|
|
},
|
|
{
|
|
title: 'News',
|
|
action: 'more',
|
|
href: '/news'
|
|
}
|
|
]
|
|
},
|
|
{divider: true},
|
|
{header: 'Local'},
|
|
{
|
|
title: 'Anime related',
|
|
action: 'folder_open',
|
|
items: [
|
|
{
|
|
title: 'Animes',
|
|
action: 'tv',
|
|
href: '/localPage'
|
|
}, {
|
|
title: 'Watch list',
|
|
action: 'sort_by_alpha',
|
|
href: '/watchList'
|
|
}
|
|
]
|
|
}
|
|
// Too soon...
|
|
// {
|
|
// title: 'Torrenting',
|
|
// items: [
|
|
// {title: 'Current downloads'},
|
|
// {title: 'Sourcing'},
|
|
// {title: 'Create torrents'}
|
|
// ]
|
|
// }
|
|
]
|
|
}
|
|
},
|
|
components: {
|
|
Settings,
|
|
infoModal
|
|
},
|
|
computed: {
|
|
searchInput () {
|
|
return this.$store.state.searchInput
|
|
},
|
|
openInBrowser () {
|
|
this.browser = true
|
|
this.$store.dispatch('openInBrowser')
|
|
}
|
|
},
|
|
methods: {
|
|
toggleDrawer () {
|
|
this.$store.commit('toggleDrawer')
|
|
}
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped>
|
|
.ripple
|
|
{
|
|
position: relative;
|
|
}
|
|
|
|
.window-icon
|
|
{
|
|
cursor: pointer;
|
|
}
|
|
|
|
.title
|
|
{
|
|
overflow: auto;
|
|
padding-left: 20px;
|
|
font-family: "Hiragino Mincho Pro", serif;
|
|
font-size: 30px !important;
|
|
}
|
|
|
|
.open-in-browser
|
|
{
|
|
margin-top: 6px !important;
|
|
}
|
|
|
|
.modal-container .title
|
|
{
|
|
line-height: 25px;
|
|
}
|
|
</style>
|