Project Init

This commit is contained in:
Muluhabt
2026-05-29 15:23:46 +03:00
commit 2fbc557aac
67387 changed files with 6063341 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
import { createSlice, current } from '@reduxjs/toolkit';
import { castDraft } from 'immer';
var initialState = {
dots: [],
areas: [],
lines: []
};
export var referenceElementsSlice = createSlice({
name: 'referenceElements',
initialState,
reducers: {
addDot: (state, action) => {
state.dots.push(action.payload);
},
removeDot: (state, action) => {
var index = current(state).dots.findIndex(dot => dot === action.payload);
if (index !== -1) {
state.dots.splice(index, 1);
}
},
addArea: (state, action) => {
state.areas.push(action.payload);
},
removeArea: (state, action) => {
var index = current(state).areas.findIndex(area => area === action.payload);
if (index !== -1) {
state.areas.splice(index, 1);
}
},
addLine: (state, action) => {
state.lines.push(castDraft(action.payload));
},
removeLine: (state, action) => {
var index = current(state).lines.findIndex(line => line === action.payload);
if (index !== -1) {
state.lines.splice(index, 1);
}
}
}
});
export var {
addDot,
removeDot,
addArea,
removeArea,
addLine,
removeLine
} = referenceElementsSlice.actions;
export var referenceElementsReducer = referenceElementsSlice.reducer;