2018-02-19 18:25:47 -06:00
|
|
|
<template>
|
|
|
|
<div class="mkw-trends">
|
2018-04-19 17:45:37 -05:00
|
|
|
<mk-widget-container :show-header="!props.compact">
|
|
|
|
<template slot="header">%fa:fire%%i18n:@title%</template>
|
|
|
|
<button slot="func" title="%i18n:@refresh%" @click="fetch">%fa:sync%</button>
|
|
|
|
|
|
|
|
<div class="mkw-trends--body">
|
|
|
|
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%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>
|
2018-02-19 18:25:47 -06:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2018-02-24 09:18:09 -06:00
|
|
|
import define from '../../../common/define-widget';
|
2018-03-27 02:51:12 -05:00
|
|
|
|
2018-02-19 18:25:47 -06:00
|
|
|
export default define({
|
|
|
|
name: 'trends',
|
2018-02-21 00:30:03 -06:00
|
|
|
props: () => ({
|
2018-02-19 18:25:47 -06:00
|
|
|
compact: false
|
2018-02-21 00:30:03 -06:00
|
|
|
})
|
2018-02-19 18:25:47 -06:00
|
|
|
}).extend({
|
|
|
|
data() {
|
|
|
|
return {
|
2018-04-07 12:30:37 -05:00
|
|
|
note: null,
|
2018-02-19 18:25:47 -06:00
|
|
|
fetching: true,
|
|
|
|
offset: 0
|
|
|
|
};
|
|
|
|
},
|
|
|
|
mounted() {
|
|
|
|
this.fetch();
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
func() {
|
|
|
|
this.props.compact = !this.props.compact;
|
2018-04-29 03:17:15 -05:00
|
|
|
this.save();
|
2018-02-19 18:25:47 -06:00
|
|
|
},
|
|
|
|
fetch() {
|
|
|
|
this.fetching = true;
|
2018-04-07 12:30:37 -05:00
|
|
|
this.note = null;
|
2018-02-19 18:25:47 -06:00
|
|
|
|
2018-04-07 12:30:37 -05:00
|
|
|
(this as any).api('notes/trend', {
|
2018-02-19 18:25:47 -06:00
|
|
|
limit: 1,
|
|
|
|
offset: this.offset,
|
2018-04-07 12:30:37 -05:00
|
|
|
renote: false,
|
2018-02-19 18:25:47 -06:00
|
|
|
reply: false,
|
2018-09-05 05:32:46 -05:00
|
|
|
file: false,
|
2018-02-19 18:25:47 -06:00
|
|
|
poll: false
|
2018-04-07 12:30:37 -05:00
|
|
|
}).then(notes => {
|
|
|
|
const note = notes ? notes[0] : null;
|
|
|
|
if (note == null) {
|
2018-02-19 18:25:47 -06:00
|
|
|
this.offset = 0;
|
|
|
|
} else {
|
|
|
|
this.offset++;
|
|
|
|
}
|
2018-04-07 12:30:37 -05:00
|
|
|
this.note = note;
|
2018-02-19 18:25:47 -06:00
|
|
|
this.fetching = false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="stylus" scoped>
|
2018-09-28 05:59:19 -05:00
|
|
|
.mkw-trends
|
2018-04-19 17:45:37 -05:00
|
|
|
.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
|
2018-02-19 18:25:47 -06:00
|
|
|
color #aaa
|
|
|
|
|
2018-04-19 17:45:37 -05:00
|
|
|
> .fetching
|
2018-02-19 18:25:47 -06:00
|
|
|
margin 0
|
2018-04-19 17:45:37 -05:00
|
|
|
padding 16px
|
|
|
|
text-align center
|
|
|
|
color #aaa
|
2018-02-19 18:25:47 -06:00
|
|
|
|
2018-04-19 17:45:37 -05:00
|
|
|
> [data-fa]
|
|
|
|
margin-right 4px
|
2018-02-19 18:25:47 -06:00
|
|
|
|
|
|
|
</style>
|