2020-02-09 14:25:32 +01:00
|
|
|
<template>
|
|
|
|
<div class="_card tbkwesmv">
|
2020-10-17 13:12:00 +02:00
|
|
|
<div class="_title"><Fa :icon="faInfoCircle"/> {{ $t('_tutorial.title') }}</div>
|
2020-02-09 14:25:32 +01:00
|
|
|
<div class="_content" v-if="tutorial === 0">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step1_1') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step1_2') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step1_3') }}</div>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 1">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step2_1') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step2_2') }}</div>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="_link" to="/settings/profile">{{ $t('editProfile') }}</MkA>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 2">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step3_1') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step3_2') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step3_3') }}</div>
|
|
|
|
<small>{{ $t('_tutorial.step3_4') }}</small>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 3">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step4_1') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step4_2') }}</div>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 4">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step5_1') }}</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<i18n-t keypath="_tutorial.step5_2" tag="div">
|
|
|
|
<template #featured>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="_link" to="/featured">{{ $t('featured') }}</MkA>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
<template #explore>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="_link" to="/explore">{{ $t('explore') }}</MkA>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
</i18n-t>
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step5_3') }}</div>
|
|
|
|
<small>{{ $t('_tutorial.step5_4') }}</small>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 5">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step6_1') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step6_2') }}</div>
|
|
|
|
<div>{{ $t('_tutorial.step6_3') }}</div>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
<div class="_content" v-else-if="tutorial === 6">
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step7_1') }}</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<i18n-t keypath="_tutorial.step7_2" tag="div">
|
|
|
|
<template #help>
|
2020-10-24 18:21:41 +02:00
|
|
|
<MkA class="_link" to="/docs">{{ $t('help') }}</MkA>
|
2020-10-17 13:12:00 +02:00
|
|
|
</template>
|
|
|
|
</i18n-t>
|
2020-07-24 18:56:52 +02:00
|
|
|
<div>{{ $t('_tutorial.step7_3') }}</div>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="_footer navigation">
|
|
|
|
<div class="step">
|
|
|
|
<button class="arrow _button" @click="tutorial--" :disabled="tutorial === 0">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Fa :icon="faChevronLeft"/>
|
2020-02-09 14:25:32 +01:00
|
|
|
</button>
|
|
|
|
<span>{{ tutorial + 1 }} / 7</span>
|
|
|
|
<button class="arrow _button" @click="tutorial++" :disabled="tutorial === 6">
|
2020-10-17 13:12:00 +02:00
|
|
|
<Fa :icon="faChevronRight"/>
|
2020-02-09 14:25:32 +01:00
|
|
|
</button>
|
|
|
|
</div>
|
2020-10-17 13:12:00 +02:00
|
|
|
<MkButton class="ok" @click="tutorial = -1" primary v-if="tutorial === 6"><Fa :icon="faCheck"/> {{ $t('gotIt') }}</MkButton>
|
|
|
|
<MkButton class="ok" @click="tutorial++" primary v-else><Fa :icon="faCheck"/> {{ $t('next') }}</MkButton>
|
2020-02-09 14:25:32 +01:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2020-02-09 14:25:32 +01:00
|
|
|
import { faInfoCircle, faChevronLeft, faChevronRight, faCheck } from '@fortawesome/free-solid-svg-icons'
|
2020-10-17 13:12:00 +02:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
2020-02-09 14:25:32 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-02-09 14:25:32 +01:00
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
faInfoCircle, faChevronLeft, faChevronRight, faCheck
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
tutorial: {
|
|
|
|
get() { return this.$store.state.settings.tutorial || 0; },
|
|
|
|
set(value) { this.$store.dispatch('settings/set', { key: 'tutorial', value }); }
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.tbkwesmv {
|
|
|
|
> ._content {
|
|
|
|
> small {
|
|
|
|
opacity: 0.7;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .navigation {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: row;
|
|
|
|
align-items: baseline;
|
|
|
|
|
|
|
|
> .step {
|
|
|
|
> .arrow {
|
|
|
|
padding: 4px;
|
|
|
|
|
|
|
|
&:disabled {
|
|
|
|
opacity: 0.5;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:first-child {
|
|
|
|
padding-right: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
&:last-child {
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> span {
|
|
|
|
margin: 0 4px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
> .ok {
|
|
|
|
margin-left: auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|