mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-11 05:13:08 +02:00
52 lines
1.2 KiB
Vue
52 lines
1.2 KiB
Vue
<template>
|
|
<MkSpacer :content-max="1200">
|
|
<MkAchievements :user="user" :with-locked="false" :with-description="$i != null && (props.user.id === $i.id)"/>
|
|
</MkSpacer>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { onActivated, onDeactivated, onMounted, onUnmounted, ref } from 'vue';
|
|
import * as misskey from 'misskey-js';
|
|
import MkAchievements from '@/components/MkAchievements.vue';
|
|
import { i18n } from '@/i18n';
|
|
import { claimAchievement } from '@/scripts/achievements';
|
|
import { $i } from '@/account';
|
|
|
|
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>
|