All checks were successful
Gitea Auto Deploy / Deploy-Container (push) Successful in 40s
52 lines
1.5 KiB
TypeScript
52 lines
1.5 KiB
TypeScript
import useSocketStore from "@/stores/socketSettingStore";
|
|
import { CharacterBasic, MonsterBasic } from "@/types";
|
|
import axios from 'axios';
|
|
|
|
export async function checkConnectTcpApi(): Promise<boolean> {
|
|
const { host, port, connectionType } = useSocketStore.getState()
|
|
let url = `${host}:${port}/check-tcp`
|
|
if (connectionType === "PS") {
|
|
url = "http://localhost:21000/check-tcp"
|
|
}
|
|
const response = await fetch(url, {
|
|
method: 'POST',
|
|
headers: {
|
|
'Content-Type': 'application/json',
|
|
},
|
|
});
|
|
|
|
if (response.ok) {
|
|
const data = await response.json();
|
|
return data.status
|
|
}
|
|
return false
|
|
}
|
|
|
|
export async function getCharacterListApi(): Promise<CharacterBasic[]> {
|
|
try {
|
|
const res = await axios.get<CharacterBasic[]>("/api/data/avatar_basic");
|
|
return res.data
|
|
} catch (error: unknown) {
|
|
if (axios.isAxiosError(error)) {
|
|
console.log(`Error: ${error.response?.status} - ${error.message}`);
|
|
} else {
|
|
console.log(`Unexpected error: ${String(error)}`);
|
|
}
|
|
return [];
|
|
}
|
|
}
|
|
|
|
export async function getEnemyListApi(): Promise<MonsterBasic[]> {
|
|
try {
|
|
const res = await axios.get<MonsterBasic[]>("/api/data/monster_basic");
|
|
return res.data
|
|
} catch (error: unknown) {
|
|
if (axios.isAxiosError(error)) {
|
|
console.log(`Error: ${error.response?.status} - ${error.message}`);
|
|
} else {
|
|
console.log(`Unexpected error: ${String(error)}`);
|
|
}
|
|
return [];
|
|
}
|
|
}
|