File size: 1,454 Bytes
246d201 |
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 |
import { createSlice } from "@reduxjs/toolkit";
export interface FileState {
path: string;
savedContent: string;
unsavedContent: string;
}
export const initialState = {
code: "",
path: "",
refreshID: 0,
fileStates: [] as FileState[],
};
export const codeSlice = createSlice({
name: "code",
initialState,
reducers: {
setCode: (state, action) => {
state.code = action.payload;
},
setActiveFilepath: (state, action) => {
state.path = action.payload;
},
setRefreshID: (state, action) => {
state.refreshID = action.payload;
},
setFileStates: (state, action) => {
state.fileStates = action.payload;
},
addOrUpdateFileState: (state, action) => {
const { path, unsavedContent, savedContent } = action.payload;
const newFileStates = state.fileStates.filter(
(fileState) => fileState.path !== path,
);
newFileStates.push({ path, savedContent, unsavedContent });
state.fileStates = newFileStates;
},
removeFileState: (state, action) => {
const path = action.payload;
state.fileStates = state.fileStates.filter(
(fileState) => fileState.path !== path,
);
},
},
});
export const {
setCode,
setActiveFilepath,
setRefreshID,
addOrUpdateFileState,
removeFileState,
setFileStates,
} = codeSlice.actions;
export default codeSlice.reducer;
|