puyoskey/src/client/app/desktop/views/widgets/trends.vue
syuilo 9f5dc2c0df
[WIP] Use FontAwesome Component for Vue (#3127)
* wip

* Rename

* Clean up

* Clean up

* wip

* wip

* Enable tree shaking

* ✌️

* ✌️

* wip

* wip

* Clean up
2018-11-06 01:40:11 +09:00

101 lines
1.9 KiB
Vue

<template>
<div class="mkw-trends">
<mk-widget-container :show-header="!props.compact">
<template slot="header"><fa icon="fire"/>%i18n:@title%</template>
<button slot="func" title="%i18n:@refresh%" @click="fetch"><fa icon="sync"/></button>
<div class="mkw-trends--body">
<p class="fetching" v-if="fetching"><fa icon="spinner .pulse" fixed-width/>%i18n:common.loading%<mk-ellipsis/></p>
<div class="note" v-else-if="note != null">
<p class="text"><router-link :to="note | notePage">{{ note.text }}</router-link></p>
<p class="author"><router-link :to="note.user | userPage">@{{ note.user | acct }}</router-link></p>
</div>
<p class="empty" v-else>%i18n:@nothing%</p>
</div>
</mk-widget-container>
</div>
</template>
<script lang="ts">
import define from '../../../common/define-widget';
export default define({
name: 'trends',
props: () => ({
compact: false
})
}).extend({
data() {
return {
note: null,
fetching: true,
offset: 0
};
},
mounted() {
this.fetch();
},
methods: {
func() {
this.props.compact = !this.props.compact;
this.save();
},
fetch() {
this.fetching = true;
this.note = null;
(this as any).api('notes/trend', {
limit: 1,
offset: this.offset,
renote: false,
reply: false,
file: false,
poll: false
}).then(notes => {
const note = notes ? notes[0] : null;
if (note == null) {
this.offset = 0;
} else {
this.offset++;
}
this.note = note;
this.fetching = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
.mkw-trends
.mkw-trends--body
> .note
padding 16px
font-size 12px
font-style oblique
color #555
> p
margin 0
> .text,
> .author
> a
color inherit
> .empty
margin 0
padding 16px
text-align center
color #aaa
> .fetching
margin 0
padding 16px
text-align center
color #aaa
> [data-icon]
margin-right 4px
</style>