koel/resources/assets/js/components/main-wrapper/main-content/artists.vue
2016-01-07 14:15:25 +08:00

82 lines
2.1 KiB
Vue

<template>
<section id="artistsWrapper">
<h1 class="heading">
<span>Artists</span>
</h1>
<div class="artists main-scroll-wrap" v-el:wrapper @scroll="scrolling">
<artist-item v-for="item in items
| filterBy q in 'name'
| limitBy numOfItems" :artist="item"></artist-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 artistItem from '../../shared/artist-item.vue';
import infiniteScroll from '../../../mixins/infinite-scroll';
import artistStore from '../../../stores/artist';
export default {
mixins: [infiniteScroll],
components: { artistItem },
data() {
return {
perPage: 9,
numOfItems: 9,
state: artistStore.state,
q: '',
};
},
computed: {
items() {
return this.state.artists;
},
},
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;
},
'filter:changed': function (q) {
this.q = q;
},
},
};
</script>
<style lang="sass">
@import "resources/assets/sass/partials/_vars.scss";
@import "resources/assets/sass/partials/_mixins.scss";
#artistsWrapper {
.artists {
@include artist-album-card();
}
}
</style>