summaryrefslogtreecommitdiff
path: root/packages/client/src/pages/timeline.tutorial.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-12-27 14:36:33 +0900
commit9384f5399da39e53855beb8e7f8ded1aa56bf72e (patch)
treece5959571a981b9c4047da3c7b3fd080aa44222c /packages/client/src/pages/timeline.tutorial.vue
parentwip: retention for dashboard (diff)
downloadsharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.gz
sharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.tar.bz2
sharkey-9384f5399da39e53855beb8e7f8ded1aa56bf72e.zip
rename: client -> frontend
Diffstat (limited to 'packages/client/src/pages/timeline.tutorial.vue')
-rw-r--r--packages/client/src/pages/timeline.tutorial.vue142
1 files changed, 0 insertions, 142 deletions
diff --git a/packages/client/src/pages/timeline.tutorial.vue b/packages/client/src/pages/timeline.tutorial.vue
deleted file mode 100644
index ae7b098b90..0000000000
--- a/packages/client/src/pages/timeline.tutorial.vue
+++ /dev/null
@@ -1,142 +0,0 @@
-<template>
-<div class="_card">
- <div :class="$style.title" class="_title">
- <div :class="$style.titleText"><i class="ti ti-info-circle"></i> {{ i18n.ts._tutorial.title }}</div>
- <div :class="$style.step">
- <button class="_button" :class="$style.stepArrow" :disabled="tutorial === 0" @click="tutorial--">
- <i class="ti ti-chevron-left"></i>
- </button>
- <span :class="$style.stepNumber">{{ tutorial + 1 }} / {{ tutorialsNumber }}</span>
- <button class="_button" :class="$style.stepArrow" :disabled="tutorial === tutorialsNumber - 1" @click="tutorial++">
- <i class="ti ti-chevron-right"></i>
- </button>
- </div>
- </div>
- <div v-if="tutorial === 0" class="_content">
- <div>{{ i18n.ts._tutorial.step1_1 }}</div>
- <div>{{ i18n.ts._tutorial.step1_2 }}</div>
- <div>{{ i18n.ts._tutorial.step1_3 }}</div>
- </div>
- <div v-else-if="tutorial === 1" class="_content">
- <div>{{ i18n.ts._tutorial.step2_1 }}</div>
- <div>{{ i18n.ts._tutorial.step2_2 }}</div>
- <MkA class="_link" to="/settings/profile">{{ i18n.ts.editProfile }}</MkA>
- </div>
- <div v-else-if="tutorial === 2" class="_content">
- <div>{{ i18n.ts._tutorial.step3_1 }}</div>
- <div>{{ i18n.ts._tutorial.step3_2 }}</div>
- <div>{{ i18n.ts._tutorial.step3_3 }}</div>
- <small :class="$style.small">{{ i18n.ts._tutorial.step3_4 }}</small>
- </div>
- <div v-else-if="tutorial === 3" class="_content">
- <div>{{ i18n.ts._tutorial.step4_1 }}</div>
- <div>{{ i18n.ts._tutorial.step4_2 }}</div>
- </div>
- <div v-else-if="tutorial === 4" class="_content">
- <div>{{ i18n.ts._tutorial.step5_1 }}</div>
- <I18n :src="i18n.ts._tutorial.step5_2" tag="div">
- <template #featured>
- <MkA class="_link" to="/featured">{{ i18n.ts.featured }}</MkA>
- </template>
- <template #explore>
- <MkA class="_link" to="/explore">{{ i18n.ts.explore }}</MkA>
- </template>
- </I18n>
- <div>{{ i18n.ts._tutorial.step5_3 }}</div>
- <small :class="$style.small">{{ i18n.ts._tutorial.step5_4 }}</small>
- </div>
- <div v-else-if="tutorial === 5" class="_content">
- <div>{{ i18n.ts._tutorial.step6_1 }}</div>
- <div>{{ i18n.ts._tutorial.step6_2 }}</div>
- <div>{{ i18n.ts._tutorial.step6_3 }}</div>
- </div>
- <div v-else-if="tutorial === 6" class="_content">
- <div>{{ i18n.ts._tutorial.step7_1 }}</div>
- <I18n :src="i18n.ts._tutorial.step7_2" tag="div">
- <template #help>
- <a href="https://misskey-hub.net/help.html" target="_blank" class="_link">{{ i18n.ts.help }}</a>
- </template>
- </I18n>
- <div>{{ i18n.ts._tutorial.step7_3 }}</div>
- </div>
- <div v-else-if="tutorial === 7" class="_content">
- <div>{{ i18n.ts._tutorial.step8_1 }}</div>
- <div>{{ i18n.ts._tutorial.step8_2 }}</div>
- <small :class="$style.small">{{ i18n.ts._tutorial.step8_3 }}</small>
- </div>
-
- <div class="_footer" :class="$style.footer">
- <template v-if="tutorial === tutorialsNumber - 1">
- <MkPushNotificationAllowButton :class="$style.footerItem" primary show-only-to-register @click="tutorial = -1" />
- <MkButton :class="$style.footerItem" :primary="false" @click="tutorial = -1">{{ i18n.ts.noThankYou }}</MkButton>
- </template>
- <template v-else>
- <MkButton :class="$style.footerItem" primary @click="tutorial++"><i class="ti ti-check"></i> {{ i18n.ts.next }}</MkButton>
- </template>
- </div>
-</div>
-</template>
-
-<script lang="ts" setup>
-import { computed } from 'vue';
-import MkButton from '@/components/MkButton.vue';
-import MkPushNotificationAllowButton from '@/components/MkPushNotificationAllowButton.vue';
-import { defaultStore } from '@/store';
-import { i18n } from '@/i18n';
-
-const tutorialsNumber = 8;
-
-const tutorial = computed({
- get() { return defaultStore.reactiveState.tutorial.value || 0; },
- set(value) { defaultStore.set('tutorial', value); },
-});
-</script>
-
-<style lang="scss" module>
-.small {
- opacity: 0.7;
-}
-
-.title {
- display: flex;
- flex-wrap: wrap;
-
- &Text {
- margin: 4px 0;
- padding-right: 4px;
- }
-}
-
-.step {
- margin-left: auto;
-
- &Arrow {
- padding: 4px;
- &:disabled {
- opacity: 0.5;
- }
- &:first-child {
- padding-right: 8px;
- }
- &:last-child {
- padding-left: 8px;
- }
- }
-
- &Number {
- font-weight: normal;
- margin: 4px;
- }
-}
-
-.footer {
- display: flex;
- flex-wrap: wrap;
- flex-direction: row;
- justify-content: right;
-
- &Item {
- margin: 4px;
- }
-}
-</style>