2023-04-19 12:24:31 +00:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<div :class="$style.banner">
|
|
|
|
<i class="ti ti-checklist"></i>
|
|
|
|
</div>
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkSpacer :marginMin="20" :marginMax="28">
|
2023-04-19 12:24:31 +00:00
|
|
|
<div class="_gaps_m">
|
2023-04-22 07:04:03 +00:00
|
|
|
<div v-if="instance.disableRegistration">
|
|
|
|
<MkInfo warn>{{ i18n.ts.invitationRequiredToRegister }}</MkInfo>
|
|
|
|
</div>
|
|
|
|
|
2023-07-20 01:18:40 +00:00
|
|
|
<div style="text-align: center;">
|
|
|
|
<div>{{ i18n.ts.pleaseConfirmBelowBeforeSignup }}</div>
|
|
|
|
<div style="font-weight: bold; margin-top: 0.5em;">{{ i18n.ts.beSureToReadThisAsItIsImportant }}</div>
|
|
|
|
</div>
|
2023-04-19 12:24:31 +00:00
|
|
|
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkFolder v-if="availableServerRules" :defaultOpen="true">
|
2023-04-19 12:24:31 +00:00
|
|
|
<template #label>{{ i18n.ts.serverRules }}</template>
|
|
|
|
<template #suffix><i v-if="agreeServerRules" class="ti ti-check" style="color: var(--success)"></i></template>
|
|
|
|
|
|
|
|
<ol class="_gaps_s" :class="$style.rules">
|
|
|
|
<li v-for="item in instance.serverRules" :class="$style.rule"><div :class="$style.ruleText" v-html="item"></div></li>
|
|
|
|
</ol>
|
|
|
|
|
2023-07-20 01:18:40 +00:00
|
|
|
<MkSwitch :modelValue="agreeServerRules" style="margin-top: 16px;" @update:modelValue="updateAgreeServerRules">{{ i18n.ts.agree }}</MkSwitch>
|
2023-04-19 12:24:31 +00:00
|
|
|
</MkFolder>
|
|
|
|
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkFolder v-if="availableTos" :defaultOpen="true">
|
2023-04-19 12:24:31 +00:00
|
|
|
<template #label>{{ i18n.ts.termsOfService }}</template>
|
|
|
|
<template #suffix><i v-if="agreeTos" class="ti ti-check" style="color: var(--success)"></i></template>
|
|
|
|
|
|
|
|
<a :href="instance.tosUrl" class="_link" target="_blank">{{ i18n.ts.termsOfService }} <i class="ti ti-external-link"></i></a>
|
|
|
|
|
2023-07-20 01:18:40 +00:00
|
|
|
<MkSwitch :modelValue="agreeTos" style="margin-top: 16px;" @update:modelValue="updateAgreeTos">{{ i18n.ts.agree }}</MkSwitch>
|
2023-04-19 12:24:31 +00:00
|
|
|
</MkFolder>
|
|
|
|
|
2023-05-19 04:58:09 +00:00
|
|
|
<MkFolder :defaultOpen="true">
|
2023-04-19 12:24:31 +00:00
|
|
|
<template #label>{{ i18n.ts.basicNotesBeforeCreateAccount }}</template>
|
|
|
|
<template #suffix><i v-if="agreeNote" class="ti ti-check" style="color: var(--success)"></i></template>
|
|
|
|
|
|
|
|
<a href="https://misskey-hub.net/docs/notes.html" class="_link" target="_blank">{{ i18n.ts.basicNotesBeforeCreateAccount }} <i class="ti ti-external-link"></i></a>
|
|
|
|
|
2023-07-20 01:18:40 +00:00
|
|
|
<MkSwitch :modelValue="agreeNote" style="margin-top: 16px;" data-cy-signup-rules-notes-agree @update:modelValue="updateAgreeNote">{{ i18n.ts.agree }}</MkSwitch>
|
2023-04-19 12:24:31 +00:00
|
|
|
</MkFolder>
|
|
|
|
|
2023-04-20 01:11:48 +00:00
|
|
|
<div v-if="!agreed" style="text-align: center;">{{ i18n.ts.pleaseAgreeAllToContinue }}</div>
|
|
|
|
|
|
|
|
<div class="_buttonsCenter">
|
|
|
|
<MkButton inline rounded @click="emit('cancel')">{{ i18n.ts.cancel }}</MkButton>
|
|
|
|
<MkButton inline primary rounded gradate :disabled="!agreed" data-cy-signup-rules-continue @click="emit('done')">{{ i18n.ts.continue }} <i class="ti ti-arrow-right"></i></MkButton>
|
|
|
|
</div>
|
2023-04-19 12:24:31 +00:00
|
|
|
</div>
|
|
|
|
</MkSpacer>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-07-20 01:18:40 +00:00
|
|
|
import { computed, onMounted, ref, watch } from 'vue';
|
2023-04-19 12:24:31 +00:00
|
|
|
import { instance } from '@/instance';
|
|
|
|
import { i18n } from '@/i18n';
|
|
|
|
import MkButton from '@/components/MkButton.vue';
|
|
|
|
import MkFolder from '@/components/MkFolder.vue';
|
|
|
|
import MkSwitch from '@/components/MkSwitch.vue';
|
2023-04-22 07:04:03 +00:00
|
|
|
import MkInfo from '@/components/MkInfo.vue';
|
2023-07-20 01:18:40 +00:00
|
|
|
import * as os from '@/os';
|
2023-04-19 12:24:31 +00:00
|
|
|
|
|
|
|
const availableServerRules = instance.serverRules.length > 0;
|
|
|
|
const availableTos = instance.tosUrl != null;
|
|
|
|
|
|
|
|
const agreeServerRules = ref(false);
|
|
|
|
const agreeTos = ref(false);
|
|
|
|
const agreeNote = ref(false);
|
|
|
|
|
|
|
|
const agreed = computed(() => {
|
|
|
|
return (!availableServerRules || agreeServerRules.value) && (!availableTos || agreeTos.value) && agreeNote.value;
|
|
|
|
});
|
|
|
|
|
|
|
|
const emit = defineEmits<{
|
2023-04-20 01:11:48 +00:00
|
|
|
(ev: 'cancel'): void;
|
|
|
|
(ev: 'done'): void;
|
2023-04-19 12:24:31 +00:00
|
|
|
}>();
|
2023-07-20 01:18:40 +00:00
|
|
|
|
|
|
|
async function updateAgreeServerRules(v: boolean) {
|
|
|
|
if (v) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
title: i18n.ts.doYouAgree,
|
|
|
|
text: i18n.t('iHaveReadXCarefullyAndAgree', { x: i18n.ts.serverRules }),
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
agreeServerRules.value = true;
|
|
|
|
} else {
|
|
|
|
agreeServerRules.value = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateAgreeTos(v: boolean) {
|
|
|
|
if (v) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
title: i18n.ts.doYouAgree,
|
|
|
|
text: i18n.t('iHaveReadXCarefullyAndAgree', { x: i18n.ts.termsOfService }),
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
agreeTos.value = true;
|
|
|
|
} else {
|
|
|
|
agreeTos.value = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
async function updateAgreeNote(v: boolean) {
|
|
|
|
if (v) {
|
|
|
|
const confirm = await os.confirm({
|
|
|
|
type: 'question',
|
|
|
|
title: i18n.ts.doYouAgree,
|
|
|
|
text: i18n.t('iHaveReadXCarefullyAndAgree', { x: i18n.ts.basicNotesBeforeCreateAccount }),
|
|
|
|
});
|
|
|
|
if (confirm.canceled) return;
|
|
|
|
agreeNote.value = true;
|
|
|
|
} else {
|
|
|
|
agreeNote.value = false;
|
|
|
|
}
|
|
|
|
}
|
2023-04-19 12:24:31 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" module>
|
|
|
|
.banner {
|
|
|
|
padding: 16px;
|
|
|
|
text-align: center;
|
|
|
|
font-size: 26px;
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
|
|
|
}
|
|
|
|
|
|
|
|
.rules {
|
|
|
|
counter-reset: item;
|
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.rule {
|
|
|
|
display: flex;
|
|
|
|
gap: 8px;
|
|
|
|
word-break: break-word;
|
|
|
|
|
|
|
|
&::before {
|
|
|
|
flex-shrink: 0;
|
|
|
|
display: flex;
|
|
|
|
position: sticky;
|
|
|
|
top: calc(var(--stickyTop, 0px) + 8px);
|
|
|
|
counter-increment: item;
|
|
|
|
content: counter(item);
|
|
|
|
width: 32px;
|
|
|
|
height: 32px;
|
|
|
|
line-height: 32px;
|
|
|
|
background-color: var(--accentedBg);
|
|
|
|
color: var(--accent);
|
|
|
|
font-size: 13px;
|
|
|
|
font-weight: bold;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
|
|
|
border-radius: 999px;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
.ruleText {
|
|
|
|
padding-top: 6px;
|
|
|
|
}
|
|
|
|
</style>
|