Sharkey/src/client/app/desktop/views/widgets/trends.vue

130 lines
2.2 KiB
Vue
Raw Normal View History

2018-02-20 02:25:47 +02:00
<template>
<div class="mkw-trends">
2018-02-21 18:08:49 +02:00
<template v-if="!props.compact">
2018-02-20 02:25:47 +02:00
<p class="title">%fa:fire%%i18n:desktop.tags.mk-trends-home-widget.title%</p>
<button @click="fetch" title="%i18n:desktop.tags.mk-trends-home-widget.refresh%">%fa:sync%</button>
</template>
<p class="fetching" v-if="fetching">%fa:spinner .pulse .fw%%i18n:common.loading%<mk-ellipsis/></p>
2018-04-07 20:30:37 +03:00
<div class="note" v-else-if="note != null">
2018-04-09 13:18:15 +03:00
<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>
2018-02-20 02:25:47 +02:00
</div>
<p class="empty" v-else>%i18n:desktop.tags.mk-trends-home-widget.nothing%</p>
</div>
</template>
<script lang="ts">
2018-02-24 17:18:09 +02:00
import define from '../../../common/define-widget';
2018-03-27 10:51:12 +03:00
2018-02-20 02:25:47 +02:00
export default define({
name: 'trends',
2018-02-21 08:30:03 +02:00
props: () => ({
2018-02-20 02:25:47 +02:00
compact: false
2018-02-21 08:30:03 +02:00
})
2018-02-20 02:25:47 +02:00
}).extend({
data() {
return {
2018-04-07 20:30:37 +03:00
note: null,
2018-02-20 02:25:47 +02:00
fetching: true,
offset: 0
};
},
mounted() {
this.fetch();
},
methods: {
func() {
this.props.compact = !this.props.compact;
},
fetch() {
this.fetching = true;
2018-04-07 20:30:37 +03:00
this.note = null;
2018-02-20 02:25:47 +02:00
2018-04-07 20:30:37 +03:00
(this as any).api('notes/trend', {
2018-02-20 02:25:47 +02:00
limit: 1,
offset: this.offset,
2018-04-07 20:30:37 +03:00
renote: false,
2018-02-20 02:25:47 +02:00
reply: false,
media: false,
poll: false
2018-04-07 20:30:37 +03:00
}).then(notes => {
const note = notes ? notes[0] : null;
if (note == null) {
2018-02-20 02:25:47 +02:00
this.offset = 0;
} else {
this.offset++;
}
2018-04-07 20:30:37 +03:00
this.note = note;
2018-02-20 02:25:47 +02:00
this.fetching = false;
});
}
}
});
</script>
<style lang="stylus" scoped>
.mkw-trends
background #fff
border solid 1px rgba(0, 0, 0, 0.075)
border-radius 6px
> .title
margin 0
padding 0 16px
line-height 42px
font-size 0.9em
font-weight bold
color #888
border-bottom solid 1px #eee
> [data-fa]
margin-right 4px
> button
position absolute
z-index 2
top 0
right 0
padding 0
width 42px
font-size 0.9em
line-height 42px
color #ccc
&:hover
color #aaa
&:active
color #999
2018-04-07 20:30:37 +03:00
> .note
2018-02-20 02:25:47 +02:00
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-fa]
margin-right 4px
</style>