advent22/ui/src/plugins/advent22.ts
2022-11-22 22:27:57 +00:00

83 lines
2.1 KiB
TypeScript

import axios, { AxiosInstance, ResponseType } from 'axios';
import { App, Plugin } from 'vue';
export class Advent22 {
private axios: AxiosInstance;
private api_auth = { username: "", password: "" };
public constructor() {
this.axios = axios.create();
}
private get api_baseurl(): string {
// in production mode, return "//host/api"
if (process.env.NODE_ENV === "production") {
return `//${window.location.host}/api`;
} else if (process.env.NODE_ENV !== "development") {
// not in prouction or development mode
console.warn("Unexpected NODE_ENV value");
}
// in development mode, return "//hostname:8000/api"
return `//${window.location.hostname}:8000/api`;
}
public api_url(endpoint?: string): string {
if (endpoint === undefined)
return this.api_baseurl;
return `${this.api_baseurl}/${endpoint}`;
}
public api_auth_set(username: string, password: string) {
this.api_auth = { username: username, password: password };
}
private fail(name: string): (reason: unknown) => void {
return (reason: unknown) =>
console.warn("Failed to query", name, "-", reason);
}
private api_get<T>(
endpoint: string,
on_success: (data: T) => void,
responseType: ResponseType = "json",
): void {
const req_data = {
auth: this.api_auth,
responseType: responseType,
};
this.axios.get<T>(this.api_url(endpoint), req_data)
.then((response) => on_success(response.data))
.catch(this.fail(endpoint));
}
public api_get_blob(
endpoint: string,
on_success: (data: string) => void,
): void {
this.api_get<Blob>(
endpoint,
(data: Blob) => {
const reader = new FileReader();
reader.readAsDataURL(data);
reader.onloadend = () => {
if (typeof reader.result === "string")
on_success(reader.result);
else
this.fail(endpoint);
}
},
"blob",
);
}
}
export const Advent22Plugin: Plugin = {
install(app: App) {
app.config.globalProperties.$advent22 = new Advent22();
}
}