2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2020-01-29 19:37:25 +00:00
|
|
|
<template>
|
2023-03-09 10:59:11 +00:00
|
|
|
<div :class="[$style.root, { _panel: !widgetProps.transparent }]" data-cy-mkw-calendar>
|
2023-01-15 05:03:28 +00:00
|
|
|
<div :class="[$style.calendar, { [$style.isHoliday]: isHoliday }]">
|
|
|
|
<p :class="$style.monthAndYear">
|
2023-04-01 05:01:57 +00:00
|
|
|
<span :class="$style.year">{{ i18n.t('yearX', { year }) }}</span>
|
|
|
|
<span :class="$style.month">{{ i18n.t('monthX', { month }) }}</span>
|
2020-01-29 19:37:25 +00:00
|
|
|
</p>
|
2023-04-01 05:01:57 +00:00
|
|
|
<p v-if="month === 1 && day === 1" class="day">🎉{{ i18n.t('dayX', { day }) }}<span style="display: inline-block; transform: scaleX(-1);">🎉</span></p>
|
|
|
|
<p v-else :class="$style.day">{{ i18n.t('dayX', { day }) }}</p>
|
2023-01-15 05:03:28 +00:00
|
|
|
<p :class="$style.weekDay">{{ weekDay }}</p>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
2023-01-15 05:03:28 +00:00
|
|
|
<div :class="$style.info">
|
|
|
|
<div :class="$style.infoSection">
|
|
|
|
<p :class="$style.infoText">{{ i18n.ts.today }}<b :class="$style.percentage">{{ dayP.toFixed(1) }}%</b></p>
|
|
|
|
<div :class="$style.meter">
|
|
|
|
<div :class="$style.meterVal" :style="{ width: `${dayP}%` }"></div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-15 05:03:28 +00:00
|
|
|
<div :class="$style.infoSection">
|
|
|
|
<p :class="$style.infoText">{{ i18n.ts.thisMonth }}<b :class="$style.percentage">{{ monthP.toFixed(1) }}%</b></p>
|
|
|
|
<div :class="$style.meter">
|
|
|
|
<div :class="$style.meterVal" :style="{ width: `${monthP}%` }"></div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-01-15 05:03:28 +00:00
|
|
|
<div :class="$style.infoSection">
|
|
|
|
<p :class="$style.infoText">{{ i18n.ts.thisYear }}<b :class="$style.percentage">{{ yearP.toFixed(1) }}%</b></p>
|
|
|
|
<div :class="$style.meter">
|
|
|
|
<div :class="$style.meterVal" :style="{ width: `${yearP}%` }"></div>
|
2020-01-29 19:37:25 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</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-09-29 02:22:59 +00:00
|
|
|
import { useWidgetPropsManager, Widget, WidgetComponentEmits, WidgetComponentExpose, WidgetComponentProps } from './widget.js';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { GetFormResultType } from '@/scripts/form.js';
|
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { useInterval } from '@/scripts/use-interval.js';
|
2020-10-17 11:12:00 +00:00
|
|
|
|
2022-01-08 11:30:01 +00:00
|
|
|
const name = 'calendar';
|
|
|
|
|
|
|
|
const widgetPropsDef = {
|
|
|
|
transparent: {
|
|
|
|
type: 'boolean' as const,
|
|
|
|
default: false,
|
2020-01-29 19:37:25 +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 } = useWidgetPropsManager(name,
|
|
|
|
widgetPropsDef,
|
|
|
|
props,
|
|
|
|
emit,
|
|
|
|
);
|
|
|
|
|
|
|
|
const year = ref(0);
|
|
|
|
const month = ref(0);
|
|
|
|
const day = ref(0);
|
|
|
|
const weekDay = ref('');
|
|
|
|
const yearP = ref(0);
|
|
|
|
const monthP = ref(0);
|
|
|
|
const dayP = ref(0);
|
|
|
|
const isHoliday = ref(false);
|
|
|
|
const tick = () => {
|
|
|
|
const now = new Date();
|
|
|
|
const nd = now.getDate();
|
|
|
|
const nm = now.getMonth();
|
|
|
|
const ny = now.getFullYear();
|
|
|
|
|
|
|
|
year.value = ny;
|
|
|
|
month.value = nm + 1;
|
|
|
|
day.value = nd;
|
|
|
|
weekDay.value = [
|
2022-01-28 02:39:49 +00:00
|
|
|
i18n.ts._weekday.sunday,
|
|
|
|
i18n.ts._weekday.monday,
|
|
|
|
i18n.ts._weekday.tuesday,
|
|
|
|
i18n.ts._weekday.wednesday,
|
|
|
|
i18n.ts._weekday.thursday,
|
|
|
|
i18n.ts._weekday.friday,
|
2022-06-25 18:12:58 +00:00
|
|
|
i18n.ts._weekday.saturday,
|
2022-01-08 11:30:01 +00:00
|
|
|
][now.getDay()];
|
|
|
|
|
2022-06-25 18:12:58 +00:00
|
|
|
const dayNumer = now.getTime() - new Date(ny, nm, nd).getTime();
|
|
|
|
const dayDenom = 1000/*ms*/ * 60/*s*/ * 60/*m*/ * 24/*h*/;
|
2022-01-08 11:30:01 +00:00
|
|
|
const monthNumer = now.getTime() - new Date(ny, nm, 1).getTime();
|
|
|
|
const monthDenom = new Date(ny, nm + 1, 1).getTime() - new Date(ny, nm, 1).getTime();
|
2022-06-25 18:12:58 +00:00
|
|
|
const yearNumer = now.getTime() - new Date(ny, 0, 1).getTime();
|
|
|
|
const yearDenom = new Date(ny + 1, 0, 1).getTime() - new Date(ny, 0, 1).getTime();
|
2022-01-08 11:30:01 +00:00
|
|
|
|
2022-06-25 18:12:58 +00:00
|
|
|
dayP.value = dayNumer / dayDenom * 100;
|
2022-01-08 11:30:01 +00:00
|
|
|
monthP.value = monthNumer / monthDenom * 100;
|
2022-06-25 18:12:58 +00:00
|
|
|
yearP.value = yearNumer / yearDenom * 100;
|
2022-01-08 11:30:01 +00:00
|
|
|
|
|
|
|
isHoliday.value = now.getDay() === 0 || now.getDay() === 6;
|
|
|
|
};
|
|
|
|
|
2022-06-25 18:12:58 +00:00
|
|
|
useInterval(tick, 1000, {
|
|
|
|
immediate: true,
|
|
|
|
afterMounted: false,
|
2022-01-08 11:30:01 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
defineExpose<WidgetComponentExpose>({
|
|
|
|
name,
|
|
|
|
configure,
|
|
|
|
id: props.widget ? props.widget.id : null,
|
2020-01-29 19:37:25 +00:00
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
<style lang="scss" module>
|
|
|
|
.root {
|
2020-01-29 19:37:25 +00:00
|
|
|
padding: 16px 0;
|
|
|
|
|
|
|
|
&:after {
|
|
|
|
content: "";
|
|
|
|
display: block;
|
|
|
|
clear: both;
|
|
|
|
}
|
2023-01-15 05:03:28 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
.calendar {
|
|
|
|
float: left;
|
|
|
|
width: 60%;
|
|
|
|
text-align: center;
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
&.isHoliday {
|
|
|
|
> .day {
|
|
|
|
color: #ef95a0;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-15 05:03:28 +00:00
|
|
|
}
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
.monthAndYear,
|
|
|
|
.weekDay {
|
|
|
|
margin: 0;
|
|
|
|
line-height: 18px;
|
|
|
|
font-size: 0.9em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.year,
|
|
|
|
.month {
|
|
|
|
margin: 0 4px;
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
.day {
|
|
|
|
margin: 10px 0;
|
|
|
|
line-height: 32px;
|
|
|
|
font-size: 1.75em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.info {
|
|
|
|
display: block;
|
|
|
|
float: left;
|
|
|
|
width: 40%;
|
|
|
|
padding: 0 16px 0 0;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
|
|
|
|
|
|
|
.infoSection {
|
|
|
|
margin-bottom: 8px;
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
margin-bottom: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:nth-child(1) {
|
|
|
|
> .meter > .meterVal {
|
|
|
|
background: #f7796c;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
2023-01-15 05:03:28 +00:00
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
&:nth-child(2) {
|
|
|
|
> .meter > .meterVal {
|
|
|
|
background: #a1de41;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-01-15 05:03:28 +00:00
|
|
|
&:nth-child(3) {
|
|
|
|
> .meter > .meterVal {
|
|
|
|
background: #41ddde;
|
2020-01-29 19:37:25 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-01-15 05:03:28 +00:00
|
|
|
|
|
|
|
.infoText {
|
|
|
|
display: flex;
|
|
|
|
margin: 0 0 2px 0;
|
|
|
|
font-size: 0.75em;
|
|
|
|
line-height: 18px;
|
|
|
|
opacity: 0.8;
|
|
|
|
}
|
|
|
|
|
|
|
|
.percentage {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
.meter {
|
|
|
|
width: 100%;
|
|
|
|
overflow: hidden;
|
|
|
|
background: var(--X11);
|
|
|
|
border-radius: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.meterVal {
|
|
|
|
height: 4px;
|
|
|
|
transition: width .3s cubic-bezier(0.23, 1, 0.32, 1);
|
|
|
|
}
|
2020-01-29 19:37:25 +00:00
|
|
|
</style>
|