2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-02-18 10:31:11 +00:00
|
|
|
<template>
|
2023-05-19 07:20:53 +00:00
|
|
|
<MkContainer :showHeader="widgetProps.showHeader" :naked="widgetProps.transparent" data-cy-mkw-activity class="mkw-activity">
|
2023-01-14 23:30:29 +00:00
|
|
|
<template #icon><i class="ti ti-chart-line"></i></template>
|
|
|
|
<template #header>{{ i18n.ts._widgets.activity }}</template>
|
|
|
|
<template #func="{ buttonStyleClass }"><button class="_button" :class="buttonStyleClass" @click="toggleView()"><i class="ti ti-selector"></i></button></template>
|
2020-02-18 10:31:11 +00:00
|
|
|
|
2020-07-11 01:13:11 +00:00
|
|
|
<div>
|
2020-10-17 11:12:00 +00:00
|
|
|
<MkLoading v-if="fetching"/>
|
2020-07-11 01:13:11 +00:00
|
|
|
<template v-else>
|
2022-05-25 07:43:12 +00:00
|
|
|
<XCalendar v-show="widgetProps.view === 0" :activity="[].concat(activity)"/>
|
|
|
|
<XChart v-show="widgetProps.view === 1" :activity="[].concat(activity)"/>
|
2020-07-11 01:13:11 +00:00
|
|
|
</template>
|
|
|
|
</div>
|
2020-10-17 11:12:00 +00:00
|
|
|
</MkContainer>
|
2020-02-18 10:31:11 +00:00
|
|
|
</template>
|
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
<script lang="ts" setup>
|
2023-02-16 14:09:41 +00:00
|
|
|
import { ref } from 'vue';
|
2023-05-19 07:20:53 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget';
|
2023-01-09 23:28:09 +00:00
|
|
|
import XCalendar from './WidgetActivity.calendar.vue';
|
|
|
|
import XChart from './WidgetActivity.chart.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
|
|
|
import * as os from '@/os.js';
|
2022-09-06 09:21:49 +00:00
|
|
|
import MkContainer from '@/components/MkContainer.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { $i } from '@/account.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
2020-02-18 10:31:11 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'activity';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const widgetPropsDef = {
|
|
|
|
showHeader: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: true,
|
2020-02-18 10:31:11 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-02-18 10:31:11 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
view: {
|
|
|
|
type: 'number' as const,
|
|
|
|
default: 0,
|
|
|
|
hidden: true,
|
2020-02-18 10:31:11 +00:00
|
|
|
},
|
2022-01-08 11:30:01 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
type WidgetProps = GetFormResultType<typeof widgetPropsDef>;
|
|
|
|
|
2023-05-19 07:20:53 +00:00
|
|
|
const props = defineProps<WidgetComponentProps<WidgetProps>>();
|
|
|
|
const emit = defineEmits<WidgetComponentEmits<WidgetProps>>();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
const { widgetProps, configure, save } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const activity = ref(null);
|
|
|
|
const fetching = ref(true);
|
|
|
|
|
|
|
|
const toggleView = () => {
|
|
|
|
if (widgetProps.view === 1) {
|
|
|
|
widgetProps.view = 0;
|
|
|
|
} else {
|
|
|
|
widgetProps.view++;
|
2020-02-18 10:31:11 +00:00
|
|
|
}
|
2022-01-08 11:30:01 +00:00
|
|
|
save();
|
|
|
|
};
|
|
|
|
|
2022-06-25 09:26:31 +00:00
|
|
|
os.apiGet('charts/user/notes', {
|
2022-01-08 11:30:01 +00:00
|
|
|
userId: $i.id,
|
|
|
|
span: 'day',
|
|
|
|
limit: 7 * 21,
|
|
|
|
}).then(res => {
|
|
|
|
activity.value = res.diffs.normal.map((_, i) => ({
|
|
|
|
total: res.diffs.normal[i] + res.diffs.reply[i] + res.diffs.renote[i],
|
|
|
|
notes: res.diffs.normal[i],
|
|
|
|
replies: res.diffs.reply[i],
|
2022-06-25 09:26:31 +00:00
|
|
|
renotes: res.diffs.renote[i],
|
2022-01-08 11:30:01 +00:00
|
|
|
}));
|
|
|
|
fetching.value = false;
|
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-02-18 10:31:11 +00:00
|
|
|
});
|
|
|
|
</script>
|