mirror of
https://github.com/hubHarmony/servii-frontend.git
synced 2024-11-18 05:40:31 +00:00
[-] Honnest mistake
This commit is contained in:
parent
f270e3220e
commit
a7e1c514e4
3710
package-lock.json
generated
3710
package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@ -7,12 +7,16 @@
|
|||||||
"dev": "vite",
|
"dev": "vite",
|
||||||
"build": "vite build",
|
"build": "vite build",
|
||||||
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
"lint": "eslint . --ext js,jsx --report-unused-disable-directives --max-warnings 0",
|
||||||
"preview": "vite preview"
|
"preview": "vite preview",
|
||||||
|
"test": "jest"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
|
"@testing-library/jest-dom": "^6.4.6",
|
||||||
|
"@testing-library/react": "^16.0.0",
|
||||||
"@types/jest": "^29.5.12",
|
"@types/jest": "^29.5.12",
|
||||||
"@types/node": "^20.14.9",
|
"@types/node": "^20.14.9",
|
||||||
"firebase": "^10.12.2",
|
"firebase": "^10.12.2",
|
||||||
|
"jest": "^29.7.0",
|
||||||
"react": "^18.3.1",
|
"react": "^18.3.1",
|
||||||
"react-dom": "^18.3.1",
|
"react-dom": "^18.3.1",
|
||||||
"react-router-dom": "^6.24.0",
|
"react-router-dom": "^6.24.0",
|
||||||
|
@ -5,7 +5,7 @@ import styles from './DashboardPage.module.scss';
|
|||||||
import NoServer from '../NoServer/NoServer';
|
import NoServer from '../NoServer/NoServer';
|
||||||
import { getUserSubdomain } from "../../service/firebase";
|
import { getUserSubdomain } from "../../service/firebase";
|
||||||
import '../../service/api.tsx';
|
import '../../service/api.tsx';
|
||||||
import serviiApi from "../../service/api.js";
|
import serviiApi from "../../service/api.tsx";
|
||||||
|
|
||||||
|
|
||||||
const DashboardPage = ({ user }) => {
|
const DashboardPage = ({ user }) => {
|
||||||
|
@ -78,9 +78,10 @@ class serviiApi {
|
|||||||
}
|
}
|
||||||
|
|
||||||
private static token(): string {
|
private static token(): string {
|
||||||
const currentUser = getAuth().currentUser;
|
//const currentUser = getAuth().currentUser;
|
||||||
if (!currentUser) {throw new Error('No user is currently logged in.');}
|
//if (!currentUser) {throw new Error('No user is currently logged in.');}
|
||||||
return currentUser.uid;
|
//return currentUser.uid;
|
||||||
|
return "MpkbDMOO8PQddQgB5VgBQdTMWF53"
|
||||||
}
|
}
|
||||||
|
|
||||||
public static async setSubdomain(subdomain: string): Promise<ApiResponse> {
|
public static async setSubdomain(subdomain: string): Promise<ApiResponse> {
|
||||||
@ -97,31 +98,31 @@ class serviiApi {
|
|||||||
}
|
}
|
||||||
public static async serverCreate(name: string, version: string, framework: string): Promise<ApiResponse> {
|
public static async serverCreate(name: string, version: string, framework: string): Promise<ApiResponse> {
|
||||||
const payload : ServerCreationRequest = {token: this.token(), name: name, version: version, framework: framework};
|
const payload : ServerCreationRequest = {token: this.token(), name: name, version: version, framework: framework};
|
||||||
return this.call(serviiRequest.setSubdomain, payload);
|
return this.call(serviiRequest.serverCreate, payload);
|
||||||
}
|
}
|
||||||
public static async serverDelete(name: string): Promise<ApiResponse> {
|
public static async serverDelete(name: string): Promise<ApiResponse> {
|
||||||
const payload : ServerRequest = {token: this.token(), name: name}
|
const payload : ServerRequest = {token: this.token(), name: name}
|
||||||
return this.call(serviiRequest.fetchServers, payload);
|
return this.call(serviiRequest.serverDelete, payload);
|
||||||
}
|
}
|
||||||
public static async accountDelete(): Promise<ApiResponse> {
|
public static async accountDelete(): Promise<ApiResponse> {
|
||||||
const payload : BaseRequest = {token: this.token()}
|
const payload : BaseRequest = {token: this.token()}
|
||||||
return this.call(serviiRequest.accountCreate, payload);
|
return this.call(serviiRequest.accountDelete, payload);
|
||||||
}
|
}
|
||||||
public static async serverRun(name: string): Promise<ApiResponse> {
|
public static async serverRun(name: string): Promise<ApiResponse> {
|
||||||
const payload : ServerRequest = {token: this.token(), name: name}
|
const payload : ServerRequest = {token: this.token(), name: name}
|
||||||
return this.call(serviiRequest.accountCreate, payload);
|
return this.call(serviiRequest.serverRun, payload);
|
||||||
}
|
}
|
||||||
public static async serverStop(name: string): Promise<ApiResponse> {
|
public static async serverStop(name: string): Promise<ApiResponse> {
|
||||||
const payload : ServerRequest = {token: this.token(), name: name}
|
const payload : ServerRequest = {token: this.token(), name: name}
|
||||||
return this.call(serviiRequest.setSubdomain, payload);
|
return this.call(serviiRequest.serverStop, payload);
|
||||||
}
|
}
|
||||||
public static async updateProperty(name: string, prop: string, value: string): Promise<ApiResponse> {
|
public static async updateProperty(name: string, prop: string, value: string): Promise<ApiResponse> {
|
||||||
const payload : UpdatePropertyRequest = {token: this.token(), name: name, prop: prop, value: value}
|
const payload : UpdatePropertyRequest = {token: this.token(), name: name, prop: prop, value: value}
|
||||||
return this.call(serviiRequest.fetchServers, payload);
|
return this.call(serviiRequest.updateProperty, payload);
|
||||||
}
|
}
|
||||||
public static async command(command: string, name: string): Promise<ApiResponse> {
|
public static async command(command: string, name: string): Promise<ApiResponse> {
|
||||||
const payload : CommandRequest = {token: this.token(), command: command, name: name};
|
const payload : CommandRequest = {token: this.token(), command: command, name: name};
|
||||||
return this.call(serviiRequest.accountCreate, payload);
|
return this.call(serviiRequest.command, payload);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user