mirror of
https://iceshrimp.dev/crimekillz/trashposs
synced 2024-11-22 00:43:49 +01:00
Add achievement page to user's public profile
This commit is contained in:
parent
70d7b3d1e5
commit
30ad1c47f0
@ -2330,6 +2330,7 @@ _notification:
|
|||||||
groupInvited: "Group invitations"
|
groupInvited: "Group invitations"
|
||||||
app: "Notifications from linked apps"
|
app: "Notifications from linked apps"
|
||||||
bite: "Chomps"
|
bite: "Chomps"
|
||||||
|
achievementEarned: "Achievement get!"
|
||||||
_actions:
|
_actions:
|
||||||
followBack: "followed you back"
|
followBack: "followed you back"
|
||||||
reply: "Reply"
|
reply: "Reply"
|
||||||
|
@ -2075,6 +2075,7 @@ _notification:
|
|||||||
followRequestAccepted: "フォローが受理された"
|
followRequestAccepted: "フォローが受理された"
|
||||||
groupInvited: "グループに招待された"
|
groupInvited: "グループに招待された"
|
||||||
app: "連携アプリからの通知"
|
app: "連携アプリからの通知"
|
||||||
|
achievementEarned: "実績を獲得"
|
||||||
_actions:
|
_actions:
|
||||||
followBack: "フォローバック"
|
followBack: "フォローバック"
|
||||||
reply: "返信"
|
reply: "返信"
|
||||||
|
52
packages/client/src/pages/user/achievements.vue
Normal file
52
packages/client/src/pages/user/achievements.vue
Normal file
@ -0,0 +1,52 @@
|
|||||||
|
<template>
|
||||||
|
<MkSpacer :content-max="1200">
|
||||||
|
<MkAchievements :user="user" :with-locked="false"/>
|
||||||
|
</MkSpacer>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<script lang="ts" setup>
|
||||||
|
import { onActivated, onDeactivated, onMounted, onUnmounted, ref } from 'vue';
|
||||||
|
import * as iceshrimp from 'iceshrimp-js';
|
||||||
|
import MkAchievements from '@/components/MkAchievements.vue';
|
||||||
|
import { i18n } from '@/i18n';
|
||||||
|
import { claimAchievement } from '@/scripts/achievements';
|
||||||
|
import { $i } from '@/account';
|
||||||
|
|
||||||
|
const props = defineProps<{
|
||||||
|
user: iceshrimp.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>
|
@ -16,6 +16,7 @@
|
|||||||
:user="user"
|
:user="user"
|
||||||
@refresh="fetchUser()"
|
@refresh="fetchUser()"
|
||||||
/>
|
/>
|
||||||
|
<XAchievements v-else-if="tab === 'achievements'" :user="user"/>
|
||||||
<XReactions v-else-if="tab === 'reactions'" :user="user" />
|
<XReactions v-else-if="tab === 'reactions'" :user="user" />
|
||||||
<XClips v-else-if="tab === 'clips'" :user="user" />
|
<XClips v-else-if="tab === 'clips'" :user="user" />
|
||||||
<XPages v-else-if="tab === 'pages'" :user="user" />
|
<XPages v-else-if="tab === 'pages'" :user="user" />
|
||||||
@ -43,6 +44,7 @@ import { i18n } from "@/i18n";
|
|||||||
import { $i } from "@/account";
|
import { $i } from "@/account";
|
||||||
|
|
||||||
const XHome = defineAsyncComponent(() => import("./home.vue"));
|
const XHome = defineAsyncComponent(() => import("./home.vue"));
|
||||||
|
const XAchievements = defineAsyncComponent(() => import('./achievements.vue'));
|
||||||
const XReactions = defineAsyncComponent(() => import("./reactions.vue"));
|
const XReactions = defineAsyncComponent(() => import("./reactions.vue"));
|
||||||
const XClips = defineAsyncComponent(() => import("./clips.vue"));
|
const XClips = defineAsyncComponent(() => import("./clips.vue"));
|
||||||
const XPages = defineAsyncComponent(() => import("./pages.vue"));
|
const XPages = defineAsyncComponent(() => import("./pages.vue"));
|
||||||
@ -90,6 +92,11 @@ const headerTabs = $computed(() =>
|
|||||||
title: i18n.ts.overview,
|
title: i18n.ts.overview,
|
||||||
icon: "ph-user ph-bold ph-lg",
|
icon: "ph-user ph-bold ph-lg",
|
||||||
},
|
},
|
||||||
|
...(user.host == null ? [{
|
||||||
|
key: 'achievements',
|
||||||
|
title: i18n.ts.achievements,
|
||||||
|
icon: 'ph-medal-military ph-bold ph-lg',
|
||||||
|
}] : []),
|
||||||
...(($i && $i.id === user.id) || user.publicReactions
|
...(($i && $i.id === user.id) || user.publicReactions
|
||||||
? [
|
? [
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user