2023-07-27 05:31:52 +00:00
|
|
|
<!--
|
|
|
|
SPDX-FileCopyrightText: syuilo and other misskey contributors
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
-->
|
|
|
|
|
2023-05-08 08:29:19 +00:00
|
|
|
<template>
|
|
|
|
<MkModalWindow
|
|
|
|
ref="dialog"
|
|
|
|
:width="500"
|
|
|
|
:height="550"
|
2023-05-08 23:01:54 +00:00
|
|
|
data-cy-user-setup
|
2023-05-08 08:49:19 +00:00
|
|
|
@close="close(true)"
|
2023-05-08 08:29:19 +00:00
|
|
|
@closed="emit('closed')"
|
|
|
|
>
|
2023-05-14 00:54:35 +00:00
|
|
|
<template v-if="page === 1" #header><i class="ti ti-user-edit"></i> {{ i18n.ts._initialAccountSetting.profileSetting }}</template>
|
|
|
|
<template v-else-if="page === 2" #header><i class="ti ti-lock"></i> {{ i18n.ts._initialAccountSetting.privacySetting }}</template>
|
|
|
|
<template v-else-if="page === 3" #header><i class="ti ti-user-plus"></i> {{ i18n.ts.follow }}</template>
|
|
|
|
<template v-else-if="page === 4" #header><i class="ti ti-bell-plus"></i> {{ i18n.ts.pushNotification }}</template>
|
2023-05-11 11:54:47 +00:00
|
|
|
<template v-else-if="page === 5" #header>{{ i18n.ts.done }}</template>
|
|
|
|
<template v-else #header>{{ i18n.ts.initialAccountSetting }}</template>
|
2023-05-08 08:29:19 +00:00
|
|
|
|
|
|
|
<div style="overflow-x: clip;">
|
2023-05-11 11:54:47 +00:00
|
|
|
<div :class="$style.progressBar">
|
|
|
|
<div :class="$style.progressBarValue" :style="{ width: `${(page / 5) * 100}%` }"></div>
|
|
|
|
</div>
|
2023-05-08 08:29:19 +00:00
|
|
|
<Transition
|
|
|
|
mode="out-in"
|
2023-05-19 04:58:09 +00:00
|
|
|
:enterActiveClass="$style.transition_x_enterActive"
|
|
|
|
:leaveActiveClass="$style.transition_x_leaveActive"
|
|
|
|
:enterFromClass="$style.transition_x_enterFrom"
|
|
|
|
:leaveToClass="$style.transition_x_leaveTo"
|
2023-05-08 08:29:19 +00:00
|
|
|
>
|
|
|
|
<template v-if="page === 0">
|
|
|
|
<div :class="$style.centerPage">
|
2023-05-17 02:08:46 +00:00
|
|
|
<MkAnimBg style="position: absolute; top: 0;" :scale="1.5"/>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-08 08:29:19 +00:00
|
|
|
<div class="_gaps" style="text-align: center;">
|
|
|
|
<i class="ti ti-confetti" style="display: block; margin: auto; font-size: 3em; color: var(--accent);"></i>
|
|
|
|
<div style="font-size: 120%;">{{ i18n.ts._initialAccountSetting.accountCreated }}</div>
|
2023-05-08 23:09:16 +00:00
|
|
|
<div>{{ i18n.ts._initialAccountSetting.letsStartAccountSetup }}</div>
|
2023-05-08 23:01:54 +00:00
|
|
|
<MkButton primary rounded gradate style="margin: 16px auto 0 auto;" data-cy-user-setup-continue @click="page++">{{ i18n.ts._initialAccountSetting.profileSetting }} <i class="ti ti-arrow-right"></i></MkButton>
|
2023-05-26 05:40:44 +00:00
|
|
|
<MkButton style="margin: 0 auto;" transparent rounded @click="later(true)">{{ i18n.ts.later }}</MkButton>
|
2023-05-08 08:29:19 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="page === 1">
|
|
|
|
<div style="height: 100cqh; overflow: auto;">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-08 08:29:19 +00:00
|
|
|
<XProfile/>
|
2023-05-14 00:44:57 +00:00
|
|
|
<div class="_buttonsCenter" style="margin-top: 16px;">
|
2023-05-26 05:40:44 +00:00
|
|
|
<MkButton rounded data-cy-user-setup-back @click="page--"><i class="ti ti-arrow-left"></i> {{ i18n.ts.goBack }}</MkButton>
|
2023-05-14 00:44:57 +00:00
|
|
|
<MkButton primary rounded gradate data-cy-user-setup-continue @click="page++">{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
|
|
</div>
|
2023-05-08 08:29:19 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="page === 2">
|
|
|
|
<div style="height: 100cqh; overflow: auto;">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-11 11:54:47 +00:00
|
|
|
<XPrivacy/>
|
2023-05-14 00:44:57 +00:00
|
|
|
<div class="_buttonsCenter" style="margin-top: 16px;">
|
2023-05-26 05:40:44 +00:00
|
|
|
<MkButton rounded data-cy-user-setup-back @click="page--"><i class="ti ti-arrow-left"></i> {{ i18n.ts.goBack }}</MkButton>
|
2023-05-14 00:44:57 +00:00
|
|
|
<MkButton primary rounded gradate data-cy-user-setup-continue @click="page++">{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
|
|
</div>
|
2023-05-08 08:29:19 +00:00
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="page === 3">
|
2023-05-11 11:54:47 +00:00
|
|
|
<div style="height: 100cqh; overflow: auto;">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-11 11:54:47 +00:00
|
|
|
<XFollow/>
|
|
|
|
</MkSpacer>
|
2023-05-11 23:26:06 +00:00
|
|
|
<div :class="$style.pageFooter">
|
2023-05-26 05:40:44 +00:00
|
|
|
<div class="_buttonsCenter">
|
|
|
|
<MkButton rounded data-cy-user-setup-back @click="page--"><i class="ti ti-arrow-left"></i> {{ i18n.ts.goBack }}</MkButton>
|
|
|
|
<MkButton primary rounded gradate style="" data-cy-user-setup-continue @click="page++">{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
|
|
</div>
|
2023-05-11 23:26:06 +00:00
|
|
|
</div>
|
2023-05-11 11:54:47 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
<template v-else-if="page === 4">
|
2023-05-08 08:29:19 +00:00
|
|
|
<div :class="$style.centerPage">
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-08 08:29:19 +00:00
|
|
|
<div class="_gaps" style="text-align: center;">
|
|
|
|
<i class="ti ti-bell-ringing-2" style="display: block; margin: auto; font-size: 3em; color: var(--accent);"></i>
|
|
|
|
<div style="font-size: 120%;">{{ i18n.ts.pushNotification }}</div>
|
|
|
|
<div style="padding: 0 16px;">{{ i18n.t('_initialAccountSetting.pushNotificationDescription', { name: instance.name ?? host }) }}</div>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkPushNotificationAllowButton primary showOnlyToRegister style="margin: 0 auto;"/>
|
2023-05-26 05:40:44 +00:00
|
|
|
<div class="_buttonsCenter" style="margin-top: 16px;">
|
|
|
|
<MkButton rounded data-cy-user-setup-back @click="page--"><i class="ti ti-arrow-left"></i> {{ i18n.ts.goBack }}</MkButton>
|
|
|
|
<MkButton primary rounded gradate data-cy-user-setup-continue @click="page++">{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
|
|
</div>
|
2023-05-08 08:29:19 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
2023-05-11 11:54:47 +00:00
|
|
|
<template v-else-if="page === 5">
|
2023-05-08 08:29:19 +00:00
|
|
|
<div :class="$style.centerPage">
|
2023-05-17 02:08:46 +00:00
|
|
|
<MkAnimBg style="position: absolute; top: 0;" :scale="1.5"/>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-05-08 08:29:19 +00:00
|
|
|
<div class="_gaps" style="text-align: center;">
|
|
|
|
<i class="ti ti-check" style="display: block; margin: auto; font-size: 3em; color: var(--accent);"></i>
|
|
|
|
<div style="font-size: 120%;">{{ i18n.ts._initialAccountSetting.initialAccountSettingCompleted }}</div>
|
|
|
|
<I18n :src="i18n.ts._initialAccountSetting.ifYouNeedLearnMore" tag="div" style="padding: 0 16px;">
|
|
|
|
<template #name>{{ instance.name ?? host }}</template>
|
|
|
|
<template #link>
|
|
|
|
<a href="https://misskey-hub.net/help.html" target="_blank" class="_link">{{ i18n.ts.help }}</a>
|
|
|
|
</template>
|
|
|
|
</I18n>
|
|
|
|
<div>{{ i18n.t('_initialAccountSetting.haveFun', { name: instance.name ?? host }) }}</div>
|
2023-05-26 05:40:44 +00:00
|
|
|
<div class="_buttonsCenter" style="margin-top: 16px;">
|
|
|
|
<MkButton rounded data-cy-user-setup-back @click="page--"><i class="ti ti-arrow-left"></i> {{ i18n.ts.goBack }}</MkButton>
|
|
|
|
<MkButton primary rounded gradate data-cy-user-setup-continue @click="close(false)">{{ i18n.ts.close }}</MkButton>
|
|
|
|
</div>
|
2023-05-08 08:29:19 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
</Transition>
|
|
|
|
</div>
|
|
|
|
</MkModalWindow>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { ref, shallowRef, watch } from 'vue';
|
|
|
|
import MkModalWindow from '@/components/MkModalWindow.vue';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import XProfile from '@/components/MkUserSetupDialog.Profile.vue';
|
|
|
|
import XFollow from '@/components/MkUserSetupDialog.Follow.vue';
|
2023-05-11 11:54:47 +00:00
|
|
|
import XPrivacy from '@/components/MkUserSetupDialog.Privacy.vue';
|
2023-05-13 11:50:21 +00:00
|
|
|
import MkAnimBg from '@/components/MkAnimBg.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { i18n } from '@/i18n.js';
|
|
|
|
import { instance } from '@/instance.js';
|
|
|
|
import { host } from '@/config.js';
|
2023-05-08 08:29:19 +00:00
|
|
|
import MkPushNotificationAllowButton from '@/components/MkPushNotificationAllowButton.vue';
|
2023-09-19 07:37:43 +00:00
|
|
|
import { defaultStore } from '@/store.js';
|
|
|
|
import * as os from '@/os.js';
|
2023-05-08 08:29:19 +00:00
|
|
|
|
|
|
|
const emit = defineEmits<{
|
|
|
|
(ev: 'closed'): void;
|
|
|
|
}>();
|
|
|
|
|
|
|
|
const dialog = shallowRef<InstanceType<typeof MkModalWindow>>();
|
|
|
|
|
|
|
|
const page = ref(defaultStore.state.accountSetupWizard);
|
|
|
|
|
|
|
|
watch(page, () => {
|
|
|
|
defaultStore.set('accountSetupWizard', page.value);
|
|
|
|
});
|
|
|
|
|
2023-05-08 08:49:19 +00:00
|
|
|
async function close(skip: boolean) {
|
|
|
|
if (skip) {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts._initialAccountSetting.skipAreYouSure,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
|
|
|
|
2023-05-08 08:29:19 +00:00
|
|
|
dialog.value.close();
|
|
|
|
defaultStore.set('accountSetupWizard', -1);
|
|
|
|
}
|
2023-05-26 05:40:44 +00:00
|
|
|
|
|
|
|
async function later(later: boolean) {
|
|
|
|
if (later) {
|
|
|
|
const { canceled } = await os.confirm({
|
|
|
|
type: 'warning',
|
|
|
|
text: i18n.ts._initialAccountSetting.laterAreYouSure,
|
|
|
|
});
|
|
|
|
if (canceled) return;
|
|
|
|
}
|
|
|
|
|
|
|
|
dialog.value.close();
|
|
|
|
defaultStore.set('accountSetupWizard', 0);
|
|
|
|
}
|
2023-05-08 08:29:19 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.transition_x_enterActive,
|
|
|
|
.transition_x_leaveActive {
|
|
|
|
transition: opacity 0.3s cubic-bezier(0,0,.35,1), transform 0.3s cubic-bezier(0,0,.35,1);
|
|
|
|
}
|
|
|
|
.transition_x_enterFrom {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(50px);
|
|
|
|
}
|
|
|
|
.transition_x_leaveTo {
|
|
|
|
opacity: 0;
|
|
|
|
transform: translateX(-50px);
|
|
|
|
}
|
|
|
|
|
2023-05-11 11:54:47 +00:00
|
|
|
.progressBar {
|
|
|
|
position: absolute;
|
|
|
|
top: 0;
|
|
|
|
left: 0;
|
|
|
|
z-index: 10;
|
|
|
|
width: 100%;
|
|
|
|
height: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.progressBarValue {
|
|
|
|
height: 100%;
|
|
|
|
background: linear-gradient(90deg, var(--buttonGradateA), var(--buttonGradateB));
|
|
|
|
transition: all 0.5s cubic-bezier(0,.5,.5,1);
|
|
|
|
}
|
|
|
|
|
2023-05-08 08:29:19 +00:00
|
|
|
.centerPage {
|
|
|
|
display: flex;
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
height: 100cqh;
|
|
|
|
padding-bottom: 30px;
|
|
|
|
box-sizing: border-box;
|
|
|
|
}
|
2023-05-11 23:26:06 +00:00
|
|
|
|
|
|
|
.pageFooter {
|
|
|
|
position: sticky;
|
|
|
|
bottom: 0;
|
|
|
|
left: 0;
|
|
|
|
padding: 12px;
|
|
|
|
border-top: solid 0.5px var(--divider);
|
2023-05-26 05:40:44 +00:00
|
|
|
-webkit-backdrop-filter: blur(15px);
|
|
|
|
backdrop-filter: blur(15px);
|
2023-05-11 23:26:06 +00:00
|
|
|
}
|
2023-05-08 08:29:19 +00:00
|
|
|
</style>
|