import { createSlice, current, PayloadAction } from '@reduxjs/toolkit'; import { WritableDraft } from 'immer'; import { AxisId } from './cartesianAxisSlice'; import { IfOverflow } from '../util/IfOverflow'; export type ReferenceElementSettings = { yAxisId: AxisId; xAxisId: AxisId; ifOverflow: IfOverflow; }; export type ReferenceDotSettings = ReferenceElementSettings & { x: unknown; y: unknown; r: number; }; export type ReferenceAreaSettings = ReferenceElementSettings & { x1: unknown; x2: unknown; y1: unknown; y2: unknown; }; export type ReferenceLineSettings = ReferenceElementSettings & { x: unknown; y: unknown; }; type ReferenceElementState = { dots: ReadonlyArray; areas: ReadonlyArray; lines: ReadonlyArray; }; const initialState: ReferenceElementState = { dots: [], areas: [], lines: [], }; export const referenceElementsSlice = createSlice({ name: 'referenceElements', initialState, reducers: { addDot: (state: WritableDraft, action: PayloadAction) => { state.dots.push(action.payload); }, removeDot: (state: WritableDraft, action: PayloadAction) => { const index = current(state).dots.findIndex(dot => dot === action.payload); if (index !== -1) { state.dots.splice(index, 1); } }, addArea: (state: WritableDraft, action: PayloadAction) => { state.areas.push(action.payload); }, removeArea: (state: WritableDraft, action: PayloadAction) => { const index = current(state).areas.findIndex(area => area === action.payload); if (index !== -1) { state.areas.splice(index, 1); } }, addLine: (state: WritableDraft, action: PayloadAction) => { state.lines.push(action.payload); }, removeLine: (state: WritableDraft, action: PayloadAction) => { const index = current(state).lines.findIndex(line => line === action.payload); if (index !== -1) { state.lines.splice(index, 1); } }, }, }); export const { addDot, removeDot, addArea, removeArea, addLine, removeLine } = referenceElementsSlice.actions; export const referenceElementsReducer = referenceElementsSlice.reducer;