mirror of
https://iceshrimp.dev/crimekillz/iceshrimp-161sh.git
synced 2024-11-24 13:09:07 +01:00
e24ca1e51f
Co-authored-by: MeiMei <30769358+mei23@users.noreply.github.com> Co-authored-by: Satsuki Yanagi <17376330+u1-liquid@users.noreply.github.com>
60 lines
1.1 KiB
Vue
60 lines
1.1 KiB
Vue
<template>
|
|
<sequential-entrance class="cxiknjgy" :class="{ autoMargin }">
|
|
<slot :items="items"></slot>
|
|
<div class="empty" v-if="empty" key="_empty_">
|
|
<slot name="empty"></slot>
|
|
</div>
|
|
<div class="more" v-if="more" key="_more_">
|
|
<mk-button :disabled="moreFetching" :style="{ cursor: moreFetching ? 'wait' : 'pointer' }" @click="fetchMore()">
|
|
<template v-if="!moreFetching">{{ $t('loadMore') }}</template>
|
|
<template v-if="moreFetching"><fa :icon="faSpinner" pulse fixed-width/></template>
|
|
</mk-button>
|
|
</div>
|
|
</sequential-entrance>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { faSpinner } from '@fortawesome/free-solid-svg-icons';
|
|
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
|
|
}
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
faSpinner
|
|
};
|
|
},
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.cxiknjgy {
|
|
&.autoMargin > *:not(:last-child) {
|
|
margin-bottom: 16px;
|
|
|
|
@media (max-width: 500px) {
|
|
margin-bottom: 8px;
|
|
}
|
|
}
|
|
}
|
|
</style>
|