mirror of
https://git.vectorsigma.ru/public/tubearchivist.git
synced 2026-08-04 19:09:29 +00:00
36 lines
959 B
TypeScript
36 lines
959 B
TypeScript
import { SortByType, SortOrderType, ViewLayoutType } from '../../pages/Home';
|
|
import APIClient from '../../functions/APIClient';
|
|
|
|
export type ColourVariants = 'dark.css' | 'light.css' | 'matrix.css' | 'midnight.css';
|
|
|
|
export const FileSizeUnits = {
|
|
Binary: 'binary',
|
|
Metric: 'metric',
|
|
};
|
|
|
|
export type UserConfigType = {
|
|
stylesheet: ColourVariants;
|
|
page_size: number;
|
|
sort_by: SortByType;
|
|
sort_order: SortOrderType;
|
|
view_style_home: ViewLayoutType;
|
|
view_style_channel: ViewLayoutType;
|
|
view_style_downloads: ViewLayoutType;
|
|
view_style_playlist: ViewLayoutType;
|
|
grid_items: number;
|
|
hide_watched: boolean;
|
|
file_size_unit: 'binary' | 'metric';
|
|
show_ignored_only: boolean;
|
|
show_subed_only: boolean;
|
|
show_help_text: boolean;
|
|
};
|
|
|
|
const updateUserConfig = async (config: Partial<UserConfigType>) => {
|
|
return APIClient<UserConfigType>('/api/user/me/', {
|
|
method: 'POST',
|
|
body: config,
|
|
});
|
|
};
|
|
|
|
export default updateUserConfig;
|