56 lines
1.2 KiB
Vue
56 lines
1.2 KiB
Vue
<!--
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
-->
|
|
|
|
<template>
|
|
<MkSpacer :contentMax="1200">
|
|
<MkAchievements :user="user" :withLocked="false" :withDescription="$i != null && (props.user.id === $i.id)"/>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onActivated, onDeactivated, onMounted, onUnmounted } from 'vue';
|
|
import * as Misskey from 'misskey-js';
|
|
import MkAchievements from '@/components/MkAchievements.vue';
|
|
import { claimAchievement } from '@/scripts/achievements.js';
|
|
import { $i } from '@/account.js';
|
|
|
|
const props = defineProps<{
|
|
user: Misskey.entities.User;
|
|
}>();
|
|
|
|
let timer: number | null;
|
|
|
|
function viewAchievements3min() {
|
|
if ($i && (props.user.id === $i.id)) {
|
|
claimAchievement('viewAchievements3min');
|
|
}
|
|
}
|
|
|
|
onMounted(() => {
|
|
if (timer == null) timer = window.setTimeout(viewAchievements3min, 1000 * 60 * 3);
|
|
});
|
|
|
|
onUnmounted(() => {
|
|
if (timer != null) {
|
|
window.clearTimeout(timer);
|
|
timer = null;
|
|
}
|
|
});
|
|
|
|
onActivated(() => {
|
|
if (timer == null) timer = window.setTimeout(viewAchievements3min, 1000 * 60 * 3);
|
|
});
|
|
|
|
onDeactivated(() => {
|
|
if (timer != null) {
|
|
window.clearTimeout(timer);
|
|
timer = null;
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="scss" module>
|
|
|
|
</style>
|