2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
2022-01-08 12:30:01 +01:00
|
|
|
<MkContainer :show-header="widgetProps.showHeader">
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #header><i class="fas fa-hashtag"></i>{{ $ts._widgets.trends }}</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-07-11 03:13:11 +02:00
|
|
|
<div class="wbrkwala">
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkLoading v-if="fetching"/>
|
2021-11-19 11:36:12 +01:00
|
|
|
<transition-group v-else tag="div" name="chart" class="tags">
|
2020-07-11 03:13:11 +02:00
|
|
|
<div v-for="stat in stats" :key="stat.tag">
|
|
|
|
<div class="tag">
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="a" :to="`/tags/${ encodeURIComponent(stat.tag) }`" :title="stat.tag">#{{ stat.tag }}</MkA>
|
2020-07-11 03:13:11 +02:00
|
|
|
<p>{{ $t('nUsersMentioned', { n: stat.usersCount }) }}</p>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkMiniChart class="chart" :src="stat.chart"/>
|
2020-07-11 03:13:11 +02:00
|
|
|
</div>
|
|
|
|
</transition-group>
|
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkContainer>
|
2020-01-29 20:37:25 +01:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 12:30:01 +01:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { onMounted, onUnmounted, ref } from 'vue';
|
|
|
|
import { GetFormResultType } from '@/scripts/form';
|
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkContainer from '@/components/ui/container.vue';
|
|
|
|
import MkMiniChart from '@/components/mini-chart.vue';
|
|
|
|
import * as os from '@/os';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2022-01-08 12:30:01 +01:00
|
|
|
const name = 'hashtags';
|
2020-10-17 13:12:00 +02:00
|
|
|
|
2022-01-08 12:30:01 +01:00
|
|
|
const widgetPropsDef = {
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2020-01-29 20:37:25 +01:00
|
|
|
},
|
2022-01-08 12:30:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
|
|
|
// 現時点ではvueの制限によりimportしたtypeをジェネリックに渡せない
|
|
|
|
//const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
//const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
|
|
|
const props = defineProps<{ widget?: Widget<WidgetProps>; }>();
|
|
|
|
const emit = defineEmits<{ (e: 'updateProps', props: WidgetProps); }>();
|
|
|
|
|
|
|
|
const { widgetProps, configure } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const stats = ref([]);
|
|
|
|
const fetching = ref(true);
|
|
|
|
|
|
|
|
const fetch = () => {
|
|
|
|
os.api('hashtags/trend').then(stats => {
|
|
|
|
stats.value = stats;
|
|
|
|
fetching.value = false;
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
|
|
|
onMounted(() => {
|
|
|
|
fetch();
|
|
|
|
const intervalId = setInterval(fetch, 1000 * 60);
|
|
|
|
onUnmounted(() => {
|
|
|
|
clearInterval(intervalId);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.wbrkwala {
|
2020-02-14 18:16:11 +01:00
|
|
|
height: (62px + 1px) + (62px + 1px) + (62px + 1px) + (62px + 1px) + 62px;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-02-14 18:16:11 +01:00
|
|
|
> .tags {
|
2020-01-29 20:37:25 +01:00
|
|
|
.chart-move {
|
|
|
|
transition: transform 1s ease;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
padding: 14px 16px;
|
2021-04-10 05:40:50 +02:00
|
|
|
border-bottom: solid 0.5px var(--divider);
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> .tag {
|
|
|
|
flex: 1;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-02-14 18:16:11 +01:00
|
|
|
font-size: 0.9em;
|
2020-01-29 20:37:25 +01:00
|
|
|
color: var(--fg);
|
|
|
|
|
2020-02-14 18:16:11 +01:00
|
|
|
> .a {
|
2020-01-29 20:37:25 +01:00
|
|
|
display: block;
|
|
|
|
width: 100%;
|
|
|
|
white-space: nowrap;
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2020-01-29 20:37:25 +01:00
|
|
|
text-overflow: ellipsis;
|
2020-02-14 18:16:11 +01:00
|
|
|
line-height: 18px;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 75%;
|
|
|
|
opacity: 0.7;
|
2020-02-14 18:16:11 +01:00
|
|
|
line-height: 16px;
|
2020-01-29 20:37:25 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .chart {
|
|
|
|
height: 30px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|