mirror of https://github.com/wg-easy/wg-easy
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
75 lines
1.4 KiB
75 lines
1.4 KiB
import { defineStore } from 'pinia';
|
|
|
|
export const useSetupStore = defineStore('Setup', () => {
|
|
/**
|
|
* @throws if unsuccessful
|
|
*/
|
|
async function step1(lang: string) {
|
|
const response = await $fetch('/api/setup/1', {
|
|
method: 'post',
|
|
body: { lang },
|
|
});
|
|
return response.success;
|
|
}
|
|
|
|
/**
|
|
* @throws if unsuccessful
|
|
*/
|
|
async function step4(username: string, password: string, accept: boolean) {
|
|
const response = await $fetch('/api/setup/4', {
|
|
method: 'post',
|
|
body: { username, password, accept },
|
|
});
|
|
return response.success;
|
|
}
|
|
|
|
/**
|
|
* @throws if unsuccessful
|
|
*/
|
|
async function step5(host: string, port: number) {
|
|
const response = await $fetch('/api/setup/5', {
|
|
method: 'post',
|
|
body: { host, port },
|
|
});
|
|
return response.success;
|
|
}
|
|
|
|
/**
|
|
* @throws if unsuccessful
|
|
*/
|
|
async function runMigration(file: string) {
|
|
const response = await $fetch('/api/setup/migrate', {
|
|
method: 'post',
|
|
body: { file },
|
|
});
|
|
return response.success;
|
|
}
|
|
|
|
type SetupError = {
|
|
title: string;
|
|
message: string;
|
|
};
|
|
|
|
const error = ref<null | SetupError>(null);
|
|
|
|
function handleError(e: SetupError) {
|
|
error.value = e;
|
|
}
|
|
|
|
const step = ref(1);
|
|
const totalSteps = ref(6);
|
|
function setStep(i: number) {
|
|
step.value = i;
|
|
}
|
|
|
|
return {
|
|
step1,
|
|
step4,
|
|
step5,
|
|
runMigration,
|
|
error,
|
|
handleError,
|
|
totalSteps,
|
|
setStep,
|
|
};
|
|
});
|
|
|