File size: 2,512 Bytes
1e92f2d |
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 |
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;
|