2020-01-29 20:37:25 +01:00
|
|
|
<template>
|
|
|
|
<form class="mk-setup" @submit.prevent="submit()">
|
|
|
|
<h1>Welcome to Misskey!</h1>
|
|
|
|
<div>
|
2020-12-26 02:47:36 +01:00
|
|
|
<p>{{ $ts.intro }}</p>
|
2021-08-12 12:05:07 +02:00
|
|
|
<MkInput v-model="username" pattern="^[a-zA-Z0-9_]{1,20}$" spellcheck="false" required data-cy-admin-username>
|
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>
|
2021-08-12 12:05:07 +02:00
|
|
|
<MkInput v-model="password" type="password" data-cy-admin-password>
|
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>
|
2020-01-29 20:37:25 +01:00
|
|
|
<footer>
|
2021-08-12 12:05:07 +02:00
|
|
|
<MkButton primary type="submit" :disabled="submitting" data-cy-admin-ok>
|
|
|
|
{{ submitting ? $ts.processing : $ts.done }}<MkEllipsis v-if="submitting"/>
|
|
|
|
</MkButton>
|
2020-01-29 20:37:25 +01:00
|
|
|
</footer>
|
|
|
|
</div>
|
|
|
|
</form>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
2020-10-17 13:12:00 +02:00
|
|
|
import { defineComponent } from 'vue';
|
2021-03-23 09:30:14 +01:00
|
|
|
import MkButton from '@client/components/ui/button.vue';
|
|
|
|
import MkInput from '@client/components/ui/input.vue';
|
|
|
|
import { host } from '@client/config';
|
|
|
|
import * as os from '@client/os';
|
|
|
|
import { login } from '@client/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 => {
|
2020-12-19 02:55:52 +01:00
|
|
|
login(res.i);
|
2020-01-29 20:37:25 +01:00
|
|
|
}).catch(() => {
|
|
|
|
this.submitting = false;
|
|
|
|
|
2020-10-17 13:12:00 +02:00
|
|
|
os.dialog({
|
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;
|
|
|
|
}
|
|
|
|
|
|
|
|
> footer {
|
|
|
|
> * {
|
|
|
|
margin: 0 auto;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|