feat(skeleton) : remove skeleton JSON field references — use structure API field directly
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -46,9 +46,6 @@ export interface ModelType extends BaseModelTypePayload {
|
||||
updatedAt: string;
|
||||
category: ModelCategory;
|
||||
structure: ModelTypeStructure;
|
||||
componentSkeleton?: ComponentModelStructure | null;
|
||||
pieceSkeleton?: PieceModelStructure | null;
|
||||
productSkeleton?: ProductModelStructure | null;
|
||||
}
|
||||
|
||||
export interface ModelTypeListParams {
|
||||
@@ -86,42 +83,9 @@ const normalizeModelType = (item: any): ModelType => {
|
||||
if (!item || typeof item !== 'object') {
|
||||
return item as ModelType;
|
||||
}
|
||||
if (!item.structure) {
|
||||
if (item.category === 'COMPONENT' && item.componentSkeleton) {
|
||||
item.structure = item.componentSkeleton;
|
||||
} else if (item.category === 'PIECE' && item.pieceSkeleton) {
|
||||
item.structure = item.pieceSkeleton;
|
||||
} else if (item.category === 'PRODUCT' && item.productSkeleton) {
|
||||
item.structure = item.productSkeleton;
|
||||
}
|
||||
}
|
||||
return item as ModelType;
|
||||
};
|
||||
|
||||
const mapStructureToSkeleton = <T extends Record<string, any>>(payload: T): T => {
|
||||
if (!payload || typeof payload !== 'object') {
|
||||
return payload;
|
||||
}
|
||||
if (!('structure' in payload)) {
|
||||
return payload;
|
||||
}
|
||||
const structure = (payload as any).structure;
|
||||
if (!structure) {
|
||||
return payload;
|
||||
}
|
||||
const category = (payload as any).category;
|
||||
const next = { ...payload } as Record<string, any>;
|
||||
if (category === 'COMPONENT') {
|
||||
next.componentSkeleton = structure;
|
||||
} else if (category === 'PIECE') {
|
||||
next.pieceSkeleton = structure;
|
||||
} else if (category === 'PRODUCT') {
|
||||
next.productSkeleton = structure;
|
||||
}
|
||||
delete next.structure;
|
||||
return next as T;
|
||||
};
|
||||
|
||||
export async function listModelTypes(params: ModelTypeListParams = {}, opts: { signal?: AbortSignal } = {}) {
|
||||
const requestFetch = useRequestFetch();
|
||||
const query: Record<string, string | number> = {};
|
||||
@@ -178,28 +142,26 @@ export async function listModelTypes(params: ModelTypeListParams = {}, opts: { s
|
||||
|
||||
export function createModelType(payload: ModelTypePayload, opts: { signal?: AbortSignal } = {}) {
|
||||
const requestFetch = useRequestFetch();
|
||||
const mappedPayload = mapStructureToSkeleton(payload);
|
||||
return requestFetch<ModelType>(ENDPOINT, createOptions({
|
||||
method: 'POST',
|
||||
headers: {
|
||||
'Content-Type': 'application/ld+json',
|
||||
Accept: 'application/ld+json',
|
||||
},
|
||||
body: mappedPayload,
|
||||
body: payload,
|
||||
signal: opts.signal,
|
||||
})).then(normalizeModelType);
|
||||
}
|
||||
|
||||
export function updateModelType(id: string, payload: Partial<ModelTypePayload>, opts: { signal?: AbortSignal } = {}) {
|
||||
const requestFetch = useRequestFetch();
|
||||
const mappedPayload = mapStructureToSkeleton(payload);
|
||||
return requestFetch<ModelType>(`${ENDPOINT}/${id}`, createOptions({
|
||||
method: 'PATCH',
|
||||
headers: {
|
||||
'Content-Type': 'application/merge-patch+json',
|
||||
Accept: 'application/ld+json',
|
||||
},
|
||||
body: mappedPayload,
|
||||
body: payload,
|
||||
signal: opts.signal,
|
||||
})).then(normalizeModelType);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user