File size: 8,236 Bytes
f56a29b | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 | /**
* Stage API - Whiteboard Management
*
* Factory function that creates the whiteboard namespace of the Stage API.
* Handles whiteboard CRUD and whiteboard element operations.
*/
import type { Whiteboard } from '@/lib/types/stage';
import type { PPTElement } from '@/lib/types/slides';
import type { StageStore, APIResult } from './stage-api-types';
import { generateId } from './stage-api-defaults';
/**
* Create the whiteboard management API
*
* @param store - Zustand store instance
* @returns Whiteboard namespace API
*/
export function createWhiteboardAPI(store: StageStore) {
const whiteboardAPI = {
/**
* Create a whiteboard
*
* @returns Whether successful
*/
create(): APIResult<Whiteboard> {
try {
const state = store.getState();
const whiteboard: Whiteboard = {
id: generateId('whiteboard'),
viewportSize: 1000,
viewportRatio: 16 / 9,
elements: [],
background: {
type: 'solid',
color: '#ffffff',
},
animations: [],
};
const whiteboardList = state.stage?.whiteboard
? [...state.stage.whiteboard, whiteboard]
: [whiteboard];
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: whiteboard };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Get a whiteboard
*
* @returns The most recently created whiteboard object
*/
get(): APIResult<Whiteboard> {
try {
const state = store.getState();
if (!state.stage?.whiteboard || state.stage.whiteboard.length === 0) {
return whiteboardAPI.create();
}
return { success: true, data: state.stage.whiteboard.at(-1) };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Update a whiteboard
*
* @param updates - Fields to update
* @param whiteboardId - Whiteboard ID
* @returns Whether successful
*/
update(updates: Partial<Whiteboard>, whiteboardId: string): APIResult<boolean> {
try {
const state = store.getState();
const whiteboard = state.stage?.whiteboard?.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
const newWhiteboard = { ...whiteboard, ...updates };
const whiteboardList = state.stage!.whiteboard!.map((wb) =>
wb.id === whiteboardId ? newWhiteboard : wb,
);
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: true };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Delete a whiteboard
*
* @param whiteboardId - Whiteboard ID
* @returns Whether successful
*/
delete(whiteboardId: string): APIResult<boolean> {
try {
const state = store.getState();
const whiteboardList = state.stage!.whiteboard!.filter((wb) => wb.id !== whiteboardId);
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: true };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Get all whiteboards
*
* @returns List of all whiteboards
*/
list(): APIResult<Whiteboard[]> {
try {
const state = store.getState();
return { success: true, data: state.stage!.whiteboard! };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Get a whiteboard element
*
* @param elementId - Element ID
* @param whiteboardId - Whiteboard ID
* @returns Element object
*/
getElement(elementId: string, whiteboardId: string): APIResult<PPTElement> {
try {
const state = store.getState();
const whiteboard = state.stage!.whiteboard!.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
return {
success: true,
data: whiteboard.elements.find((el) => el.id === elementId),
};
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Add a whiteboard element
*
* @param element - Element object
* @param whiteboardId - Whiteboard ID
* @returns Whether successful
*/
addElement(element: PPTElement, whiteboardId: string): APIResult<boolean> {
try {
const state = store.getState();
const whiteboard = state.stage!.whiteboard!.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
const newElement = {
...element,
id: element.id || generateId(element.type),
};
const newWhiteboard = {
...whiteboard,
elements: [...whiteboard.elements, newElement],
};
const whiteboardList = state.stage!.whiteboard!.map((wb) =>
wb.id === whiteboardId ? newWhiteboard : wb,
);
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: true };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Delete a whiteboard element
*
* @param elementId - Element ID
* @param whiteboardId - Whiteboard ID
* @returns Whether successful
*/
deleteElement(elementId: string, whiteboardId: string): APIResult<boolean> {
try {
const state = store.getState();
const whiteboard = state.stage!.whiteboard!.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
const newWhiteboard = {
...whiteboard,
elements: whiteboard.elements.filter((el) => el.id !== elementId),
};
const whiteboardList = state.stage!.whiteboard!.map((wb) =>
wb.id === whiteboardId ? newWhiteboard : wb,
);
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: true };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Update a whiteboard element
*
* @param element - Element object
* @param whiteboardId - Whiteboard ID
* @returns Whether successful
*/
updateElement(element: PPTElement, whiteboardId: string): APIResult<boolean> {
try {
const state = store.getState();
const whiteboard = state.stage!.whiteboard!.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
const newWhiteboard = {
...whiteboard,
elements: whiteboard.elements.map((el) => (el.id === element.id ? element : el)),
};
const whiteboardList = state.stage!.whiteboard!.map((wb) =>
wb.id === whiteboardId ? newWhiteboard : wb,
);
store.setState({
stage: { ...state.stage, whiteboard: whiteboardList },
});
return { success: true, data: true };
} catch (error) {
return { success: false, error: String(error) };
}
},
/**
* Get whiteboard element list
*
* @param whiteboardId - Whiteboard ID
* @returns Element list
*/
listElements(whiteboardId: string): APIResult<PPTElement[]> {
try {
const state = store.getState();
const whiteboard = state.stage!.whiteboard!.find((wb) => wb.id === whiteboardId);
if (!whiteboard) return { success: false, error: 'Whiteboard not found' };
return { success: true, data: whiteboard.elements };
} catch (error) {
return { success: false, error: String(error) };
}
},
};
return whiteboardAPI;
}
|