| 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<ReferenceDotSettings>; | |
| areas: ReadonlyArray<ReferenceAreaSettings>; | |
| lines: ReadonlyArray<ReferenceLineSettings>; | |
| }; | |
| const initialState: ReferenceElementState = { | |
| dots: [], | |
| areas: [], | |
| lines: [], | |
| }; | |
| export const referenceElementsSlice = createSlice({ | |
| name: 'referenceElements', | |
| initialState, | |
| reducers: { | |
| addDot: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceDotSettings>) => { | |
| state.dots.push(action.payload); | |
| }, | |
| removeDot: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceDotSettings>) => { | |
| const index = current(state).dots.findIndex(dot => dot === action.payload); | |
| if (index !== -1) { | |
| state.dots.splice(index, 1); | |
| } | |
| }, | |
| addArea: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceAreaSettings>) => { | |
| state.areas.push(action.payload); | |
| }, | |
| removeArea: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceAreaSettings>) => { | |
| const index = current(state).areas.findIndex(area => area === action.payload); | |
| if (index !== -1) { | |
| state.areas.splice(index, 1); | |
| } | |
| }, | |
| addLine: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceLineSettings>) => { | |
| state.lines.push(action.payload); | |
| }, | |
| removeLine: (state: WritableDraft<ReferenceElementState>, action: PayloadAction<ReferenceLineSettings>) => { | |
| 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; | |