mirror of
https://github.com/koel/koel
synced 2024-12-14 22:52:28 +00:00
97 lines
2.8 KiB
Vue
97 lines
2.8 KiB
Vue
<template>
|
|
<section id="albumsWrapper">
|
|
<h1 class="heading">
|
|
<span>Albums
|
|
<i class="fa fa-chevron-down toggler"
|
|
v-show="isPhone && !showingControls"
|
|
@click="showingControls = true"></i>
|
|
<i class="fa fa-chevron-up toggler"
|
|
v-show="isPhone && showingControls"
|
|
@click.prevent="showingControls = false"></i>
|
|
</span>
|
|
|
|
<input
|
|
v-show="!isPhone || showingControls"
|
|
type="search"
|
|
v-model="q"
|
|
:class="{ dirty: q }"
|
|
debounce="100"
|
|
placeholder="Search">
|
|
</h1>
|
|
|
|
<div class="albums main-scroll-wrap" v-el:wrapper @scroll="scrolling">
|
|
<album-item v-for="item in items
|
|
| orderBy 'name'
|
|
| filterBy q in 'name' 'artist.name'
|
|
| limitBy numOfItems" :album="item"></album-item>
|
|
|
|
<!--
|
|
Add several more items to make sure the last row is left-aligned.
|
|
Credits: http://codepen.io/dalgard/pen/Dbnus
|
|
-->
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
<span class="item"></span>
|
|
</div>
|
|
</section>
|
|
</template>
|
|
|
|
<script>
|
|
import isMobile from 'ismobilejs';
|
|
|
|
import albumItem from '../../shared/album-item.vue';
|
|
import infiniteScroll from '../../../mixins/infinite-scroll';
|
|
import albumStore from '../../../stores/album';
|
|
|
|
export default {
|
|
mixins: [infiniteScroll],
|
|
components: { albumItem },
|
|
|
|
data() {
|
|
return {
|
|
perPage: 9,
|
|
numOfItems: 9,
|
|
state: albumStore.state,
|
|
q: '',
|
|
isPhone: isMobile.phone,
|
|
showingControls: false,
|
|
};
|
|
},
|
|
|
|
computed: {
|
|
items() {
|
|
return this.state.albums;
|
|
},
|
|
},
|
|
|
|
events: {
|
|
/**
|
|
* When the application is ready, load the first batch of items.
|
|
*/
|
|
'koel:ready': function () {
|
|
this.displayMore();
|
|
},
|
|
|
|
'koel:teardown': function () {
|
|
this.q = '';
|
|
this.numOfItems = 9;
|
|
},
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="sass">
|
|
@import "resources/assets/sass/partials/_vars.scss";
|
|
@import "resources/assets/sass/partials/_mixins.scss";
|
|
|
|
#albumsWrapper {
|
|
.albums {
|
|
@include artist-album-card();
|
|
}
|
|
}
|
|
</style>
|