forked from mei23/misskey-v11
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
23 additions
and
358 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,87 +1,28 @@ | ||
<template> | ||
<div class="jtivnzhfwquxpsfidertopbmwmchmnmo"> | ||
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p> | ||
<p class="empty" v-else-if="tags.length == 0"><fa icon="exclamation-circle"/>{{ $t('empty') }}</p> | ||
<div v-else> | ||
<vue-word-cloud | ||
:words="tags.slice(0, 20).map(x => [x.tag, x.count])" | ||
:color="color" | ||
:spacing="1"> | ||
<template slot-scope="{word, text, weight}"> | ||
<div style="cursor: pointer;" :title="weight"> | ||
{{ text }} | ||
</div> | ||
</template> | ||
</vue-word-cloud> | ||
</div> | ||
<p class="empty"><fa icon="exclamation-circle"/>this component has been abolished</p> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from 'vue'; | ||
import i18n from '../../../i18n'; | ||
import * as VueWordCloud from 'vuewordcloud'; | ||
export default Vue.extend({ | ||
i18n: i18n('common/views/components/tag-cloud.vue'), | ||
components: { | ||
[VueWordCloud.name]: VueWordCloud | ||
}, | ||
data() { | ||
return { | ||
tags: [], | ||
fetching: true, | ||
clock: null | ||
}; | ||
}, | ||
mounted() { | ||
this.fetch(); | ||
this.clock = setInterval(this.fetch, 1000 * 60); | ||
}, | ||
beforeDestroy() { | ||
clearInterval(this.clock); | ||
}, | ||
methods: { | ||
fetch() { | ||
this.$root.api('hashtags/trend').then(tags => { | ||
this.tags = tags; | ||
this.fetching = false; | ||
}); | ||
}, | ||
color([, weight]) { | ||
const peak = Math.max.apply(null, this.tags.map(x => x.count)); | ||
const w = weight / peak; | ||
if (w > 0.9) { | ||
return this.$store.state.device.darkmode ? '#ff4e69' : '#ff4e69'; | ||
} else if (w > 0.5) { | ||
return this.$store.state.device.darkmode ? '#3bc4c7' : '#3bc4c7'; | ||
} else { | ||
return this.$store.state.device.darkmode ? '#fff' : '#555'; | ||
} | ||
} | ||
} | ||
i18n: i18n('common/views/components/tag-cloud.vue') | ||
}); | ||
</script> | ||
|
||
<style lang="stylus" scoped> | ||
.jtivnzhfwquxpsfidertopbmwmchmnmo | ||
height 100% | ||
width 100% | ||
> .fetching | ||
> .empty | ||
margin 0 | ||
padding 16px | ||
text-align center | ||
color var(--text) | ||
opacity 0.7 | ||
> [data-icon] | ||
margin-right 4px | ||
> div | ||
height 100% | ||
width 100% | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,100 +1,27 @@ | ||
<template> | ||
<div class="csqvmxybqbycalfhkxvyfrgbrdalkaoc"> | ||
<p class="fetching" v-if="fetching"><fa icon="spinner" pulse fixed-width/>{{ $t('@.loading') }}<mk-ellipsis/></p> | ||
<p class="empty" v-else-if="stats.length == 0"><fa icon="exclamation-circle"/>{{ $t('empty') }}</p> | ||
<!-- トランジションを有効にするとなぜかメモリリークする --> | ||
<transition-group v-else tag="div" name="chart"> | ||
<div v-for="stat in stats" :key="stat.tag"> | ||
<div class="tag"> | ||
<router-link :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</router-link> | ||
<p>{{ $t('count').replace('{}', stat.usersCount) }}</p> | ||
</div> | ||
<x-chart class="chart" :src="stat.chart"/> | ||
</div> | ||
</transition-group> | ||
<p class="empty"><fa icon="exclamation-circle"/>this component has been abolished</p> | ||
</div> | ||
</template> | ||
|
||
<script lang="ts"> | ||
import Vue from 'vue'; | ||
import i18n from '../../../i18n'; | ||
import XChart from './trends.chart.vue'; | ||
export default Vue.extend({ | ||
i18n: i18n('common/views/components/trends.vue'), | ||
components: { | ||
XChart | ||
}, | ||
data() { | ||
return { | ||
stats: [], | ||
fetching: true, | ||
clock: null | ||
}; | ||
}, | ||
mounted() { | ||
this.fetch(); | ||
this.clock = setInterval(this.fetch, 1000 * 60); | ||
}, | ||
beforeDestroy() { | ||
clearInterval(this.clock); | ||
}, | ||
methods: { | ||
fetch() { | ||
this.$root.api('hashtags/trend').then(stats => { | ||
this.stats = stats; | ||
this.fetching = false; | ||
}); | ||
} | ||
} | ||
i18n: i18n('common/views/components/trends.vue') | ||
}); | ||
</script> | ||
|
||
<style lang="stylus" scoped> | ||
.csqvmxybqbycalfhkxvyfrgbrdalkaoc | ||
> .fetching | ||
> .empty | ||
margin 0 | ||
padding 16px | ||
text-align center | ||
color var(--text) | ||
opacity 0.7 | ||
> [data-icon] | ||
margin-right 4px | ||
> div | ||
.chart-move | ||
transition transform 1s ease | ||
> div | ||
display flex | ||
align-items center | ||
padding 14px 16px | ||
&:not(:last-child) | ||
border-bottom solid 1px var(--faceDivider) | ||
> .tag | ||
flex 1 | ||
overflow hidden | ||
font-size 14px | ||
color var(--text) | ||
> a | ||
display block | ||
width 100% | ||
white-space nowrap | ||
overflow hidden | ||
text-overflow ellipsis | ||
color inherit | ||
> p | ||
margin 0 | ||
font-size 75% | ||
opacity 0.7 | ||
> .chart | ||
height 30px | ||
</style> |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.