You've already forked AstralRinth
forked from didirus/AstralRinth
* refactor: start refactor of pyro servers module-based class * refactor: finish modules * refactor: start on type checking + matching api * refactor: finish pyro servers composable refactor * refactor: pyro -> modrinth * fix: import not refactored * fix: broken power action enums * fix: remove pyro mentions * fix: lint * refactor: fix option pages * fix: error renames * remove empty pyro-servers.ts file --------- Signed-off-by: IMB11 <hendersoncal117@gmail.com> Co-authored-by: Prospector <prospectordev@gmail.com>
27 lines
851 B
TypeScript
27 lines
851 B
TypeScript
import type { Startup, JDKVersion, JDKBuild } from "@modrinth/utils";
|
|
import { useServersFetch } from "../servers-fetch.ts";
|
|
import { ServerModule } from "./base.ts";
|
|
|
|
export class StartupModule extends ServerModule implements Startup {
|
|
invocation!: string;
|
|
original_invocation!: string;
|
|
jdk_version!: JDKVersion;
|
|
jdk_build!: JDKBuild;
|
|
|
|
async fetch(): Promise<void> {
|
|
const data = await useServersFetch<Startup>(`servers/${this.serverId}/startup`, {}, "startup");
|
|
Object.assign(this, data);
|
|
}
|
|
|
|
async update(invocation: string, jdkVersion: JDKVersion, jdkBuild: JDKBuild): Promise<void> {
|
|
await useServersFetch(`servers/${this.serverId}/startup`, {
|
|
method: "POST",
|
|
body: {
|
|
invocation: invocation || null,
|
|
jdk_version: jdkVersion || null,
|
|
jdk_build: jdkBuild || null,
|
|
},
|
|
});
|
|
}
|
|
}
|