2020-01-29 13:37:25 -06:00
|
|
|
<template>
|
2020-03-20 10:21:33 -05:00
|
|
|
<div class="cxiknjgy" :class="{ autoMargin }">
|
2020-01-29 13:37:25 -06:00
|
|
|
<slot :items="items"></slot>
|
|
|
|
<div class="empty" v-if="empty" key="_empty_">
|
|
|
|
<slot name="empty"></slot>
|
|
|
|
</div>
|
2020-05-30 22:53:06 -05:00
|
|
|
<div class="more" v-show="more" key="_more_">
|
|
|
|
<mk-button class="button" ref="loadMore" :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" primary>
|
2020-07-24 11:36:39 -05:00
|
|
|
<template v-if="!moreFetching" v-t="'loadMore'"></template>
|
2020-02-11 11:52:37 -06:00
|
|
|
<template v-if="moreFetching"><mk-loading inline/></template>
|
2020-01-29 13:37:25 -06:00
|
|
|
</mk-button>
|
|
|
|
</div>
|
2020-03-20 10:21:33 -05:00
|
|
|
</div>
|
2020-01-29 13:37:25 -06:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from 'vue';
|
|
|
|
import MkButton from './button.vue';
|
|
|
|
import paging from '../../scripts/paging';
|
|
|
|
|
|
|
|
export default Vue.extend({
|
|
|
|
mixins: [
|
|
|
|
paging({}),
|
|
|
|
],
|
|
|
|
|
|
|
|
components: {
|
|
|
|
MkButton
|
|
|
|
},
|
|
|
|
|
|
|
|
props: {
|
|
|
|
pagination: {
|
|
|
|
required: true
|
|
|
|
},
|
|
|
|
autoMargin: {
|
|
|
|
required: false,
|
|
|
|
default: true
|
|
|
|
}
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.cxiknjgy {
|
|
|
|
&.autoMargin > *:not(:last-child) {
|
|
|
|
margin-bottom: 16px;
|
|
|
|
|
|
|
|
@media (max-width: 500px) {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
}
|
|
|
|
}
|
2020-02-11 11:52:37 -06:00
|
|
|
|
|
|
|
> .more > .button {
|
|
|
|
margin-left: auto;
|
|
|
|
margin-right: auto;
|
|
|
|
height: 48px;
|
|
|
|
min-width: 150px;
|
|
|
|
}
|
2020-01-29 13:37:25 -06:00
|
|
|
}
|
|
|
|
</style>
|