2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<form class="mk-setup" @submit.prevent="submit()">
|
|
|
|
<h1>Welcome to Misskey!</h1>
|
2022-02-25 11:56:59 +01:00
|
|
|
<div class="_formRoot">
|
2020-12-26 02:47:36 +01:00
|
|
|
<p>{{ $ts.intro }}</p>
|
2022-02-25 11:56:59 +01:00
|
|
|
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" spellcheck="false" required data-cy-admin-username class="_formBlock">
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.username }}</template>
|
2020-01-29 20:37:25 +01:00
|
|
|
<template #prefix>@</template>
|
|
|
|
<template #suffix>@{{ host }}</template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2022-02-25 11:56:59 +01:00
|
|
|
<MkInput v-model="password" type="password" data-cy-admin-password class="_formBlock">
|
2021-08-06 15:29:19 +02:00
|
|
|
<template #label>{{ $ts.password }}</template>
|
2021-04-20 16:22:59 +02:00
|
|
|
<template #prefix><i class="fas fa-lock"></i></template>
|
2020-10-17 13:12:00 +02:00
|
|
|
</MkInput>
|
2022-02-25 11:56:59 +01:00
|
|
|
<div class="bottom _formBlock">
|
2022-02-25 12:17:36 +01:00
|
|
|
<MkButton gradate type="submit" :disabled="submitting" data-cy-admin-ok>
|
2021-08-12 12:05:07 +02:00
|
|
|
{{ submitting ? $ts.processing : $ts.done }}<MkEllipsis v-if="submitting"/>
|
|
|
|
</MkButton>
|
2022-02-25 11:56:59 +01:00
|
|
|
</div>
|
2020-01-29 20:37:25 +01:00
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import MkButton from '@/components/ui/button.vue';
|
|
|
|
import MkInput from '@/components/form/input.vue';
|
|
|
|
import { host } from '@/config';
|
|
|
|
import * as os from '@/os';
|
|
|
|
import { login } from '@/account';
|
2020-01-29 20:37:25 +01:00
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
export default defineComponent({
|
2020-01-29 20:37:25 +01:00
|
|
|
components: {
|
|
|
|
MkButton,
|
|
|
|
MkInput,
|
|
|
|
},
|
|
|
|
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
username: '',
|
|
|
|
password: '',
|
|
|
|
submitting: false,
|
|
|
|
host,
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
submit() {
|
|
|
|
if (this.submitting) return;
|
|
|
|
this.submitting = true;
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.api('admin/accounts/create', {
|
2020-01-29 20:37:25 +01:00
|
|
|
username: this.username,
|
|
|
|
password: this.password,
|
|
|
|
}).then(res => {
|
2021-09-04 11:09:53 +02:00
|
|
|
return login(res.token);
|
2020-01-29 20:37:25 +01:00
|
|
|
}).catch(() => {
|
|
|
|
this.submitting = false;
|
|
|
|
|
2021-11-18 10:45:58 +01:00
|
|
|
os.alert({
|
2020-01-29 20:37:25 +01:00
|
|
|
type: 'error',
|
2020-12-26 02:47:36 +01:00
|
|
|
text: this.$ts.somethingHappened
|
2020-01-29 20:37:25 +01:00
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.mk-setup {
|
|
|
|
border-radius: var(--radius);
|
|
|
|
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
|
2021-03-02 14:57:16 +01:00
|
|
|
overflow: hidden;
|
2021-05-04 14:21:02 +02:00
|
|
|
max-width: 500px;
|
|
|
|
margin: 32px auto;
|
2020-01-29 20:37:25 +01:00
|
|
|
|
|
|
|
> h1 {
|
|
|
|
margin: 0;
|
|
|
|
font-size: 1.5em;
|
|
|
|
text-align: center;
|
|
|
|
padding: 32px;
|
|
|
|
background: var(--accent);
|
|
|
|
color: #fff;
|
|
|
|
}
|
|
|
|
|
|
|
|
> div {
|
|
|
|
padding: 32px;
|
|
|
|
background: var(--panel);
|
|
|
|
|
|
|
|
> p {
|
|
|
|
margin-top: 0;
|
|
|
|
}
|
|
|
|
|
2022-02-25 11:56:59 +01:00
|
|
|
> .bottom {
|
2020-01-29 20:37:25 +01:00
|
|
|
> * {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|