fluxer/fluxer_app/src/actions/PackActionCreators.tsx
2026-01-01 21:05:54 +00:00

99 lines
2.9 KiB
TypeScript

/*
* Copyright (C) 2026 Fluxer Contributors
*
* This file is part of Fluxer.
*
* Fluxer is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Fluxer is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
*/
import {Endpoints} from '~/Endpoints';
import http from '~/lib/HttpClient';
import {Logger} from '~/lib/Logger';
import type {PackDashboardResponse, PackSummary} from '~/types/PackTypes';
const logger = new Logger('Packs');
export const list = async (): Promise<PackDashboardResponse> => {
try {
logger.debug('Requesting pack dashboard');
const response = await http.get<PackDashboardResponse>({url: Endpoints.PACKS});
return response.body;
} catch (error) {
logger.error('Failed to fetch pack dashboard:', error);
throw error;
}
};
export const create = async (
type: 'emoji' | 'sticker',
name: string,
description?: string | null,
): Promise<PackSummary> => {
try {
logger.debug(`Creating ${type} pack ${name}`);
const response = await http.post<PackSummary>({
url: Endpoints.PACK_CREATE(type),
body: {name, description: description ?? null},
});
return response.body;
} catch (error) {
logger.error(`Failed to create ${type} pack:`, error);
throw error;
}
};
export const update = async (
packId: string,
data: {name?: string; description?: string | null},
): Promise<PackSummary> => {
try {
logger.debug(`Updating pack ${packId}`);
const response = await http.patch<PackSummary>({url: Endpoints.PACK(packId), body: data});
return response.body;
} catch (error) {
logger.error(`Failed to update pack ${packId}:`, error);
throw error;
}
};
export const remove = async (packId: string): Promise<void> => {
try {
logger.debug(`Deleting pack ${packId}`);
await http.delete({url: Endpoints.PACK(packId)});
} catch (error) {
logger.error(`Failed to delete pack ${packId}:`, error);
throw error;
}
};
export const install = async (packId: string): Promise<void> => {
try {
logger.debug(`Installing pack ${packId}`);
await http.post({url: Endpoints.PACK_INSTALL(packId)});
} catch (error) {
logger.error(`Failed to install pack ${packId}:`, error);
throw error;
}
};
export const uninstall = async (packId: string): Promise<void> => {
try {
logger.debug(`Uninstalling pack ${packId}`);
await http.delete({url: Endpoints.PACK_INSTALL(packId)});
} catch (error) {
logger.error(`Failed to uninstall pack ${packId}:`, error);
throw error;
}
};