mirror of
https://github.com/cpvalente/ontime.git
synced 2026-07-26 10:38:55 +00:00
1849b4d39f
* chore: migrate eslint to oxlint * chore: migrate prettier to oxfmt * chore: migrate typescript * chore: toThrow should have a expected value * chore: cast test value as Day * chore: small title fix * chore: mocks should be hoisted * chore: incorrect async useage * chore: test should be inside description * chore: test sohuld include an expeced * chore: oxfmt --------- Co-authored-by: alex-Arc <omnivox@LAPTOP-RC5SNBVV.localdomain>
52 lines
1.4 KiB
TypeScript
52 lines
1.4 KiB
TypeScript
import axios from 'axios';
|
|
import { TranslationObject } from 'ontime-types';
|
|
|
|
import { ontimeQueryClient } from '../../common/queryClient';
|
|
import { TRANSLATION, apiEntryUrl, customTranslationsURL } from './constants';
|
|
import type { RequestOptions } from './requestOptions';
|
|
|
|
const assetsPath = `${apiEntryUrl}/assets`;
|
|
|
|
/**
|
|
* HTTP request to get css contents
|
|
*/
|
|
export async function getCSSContents(options?: RequestOptions): Promise<string> {
|
|
const res = await axios.get(`${assetsPath}/css`, { signal: options?.signal });
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* HTTP request to post css contents
|
|
*/
|
|
export async function postCSSContents(css: string): Promise<void> {
|
|
await axios.post(`${assetsPath}/css`, {
|
|
css,
|
|
});
|
|
}
|
|
|
|
/**
|
|
* HTTP request to restore default css
|
|
*/
|
|
export async function restoreCSSContents(): Promise<string> {
|
|
const res = await axios.post(`${assetsPath}/css/restore`);
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* HTTP request to get user translation
|
|
*/
|
|
export async function getUserTranslation(options?: RequestOptions): Promise<TranslationObject> {
|
|
const res = await axios.get(customTranslationsURL, { signal: options?.signal });
|
|
return res.data;
|
|
}
|
|
|
|
/**
|
|
* HTTP request to post user translation
|
|
*/
|
|
export async function postUserTranslation(translation: TranslationObject): Promise<void> {
|
|
await axios.post(`${assetsPath}/translations`, {
|
|
translation,
|
|
});
|
|
await ontimeQueryClient.invalidateQueries({ queryKey: TRANSLATION });
|
|
}
|