Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 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 | import { ThunkMiddleware } from "redux-thunk";
import { RootState } from "store/configureStore";
import editorActions from "store/features/editor/editorActions";
import { musicSelectors } from "store/features/entities/entitiesState";
import navigationActions from "store/features/navigation/navigationActions";
import {
addNewSongFile,
requestAddNewSongFile,
saveSongFile,
} from "./trackerDocumentState";
import trackerDocumentActions from "./trackerDocumentActions";
import electronActions from "store/features/electron/electronActions";
import l10n from "shared/lib/lang/l10n";
import API from "renderer/lib/api";
import projectActions from "store/features/project/projectActions";
const trackerMiddleware: ThunkMiddleware<RootState> =
(store) => (next) => async (action) => {
const state = store.getState();
Iif (
(navigationActions.setSection.match(action) &&
action.payload !== "music") ||
(editorActions.setSelectedSongId.match(action) &&
action.payload !== state.editor.selectedSongId) ||
requestAddNewSongFile.match(action)
) {
Iif (state.trackerDocument.present.modified) {
// Display confirmation and stop action if
const songsLookup = musicSelectors.selectEntities(state);
const selectedSong = songsLookup[state.editor.selectedSongId];
const option = await API.dialog.confirmUnsavedChangesTrackerDialog(
selectedSong?.name ?? "",
);
switch (option) {
case 0: // Save and continue
store.dispatch(saveSongFile());
store.dispatch({ type: "@@TRACKER_INIT" });
break;
case 1: // continue without saving
store.dispatch(trackerDocumentActions.unloadSong());
store.dispatch({ type: "@@TRACKER_INIT" });
break;
case 2: // cancel
default:
return;
}
}
}
// Delay creation until confirmUnsavedChangesTrackerDialog has
// had a chance to ask about unsaved changes
Iif (requestAddNewSongFile.match(action)) {
store.dispatch(addNewSongFile(action.payload));
}
Iif (
projectActions.saveProject.pending.match(action) &&
state.trackerDocument.present.modified
) {
store.dispatch(saveSongFile());
}
Iif (saveSongFile.rejected.match(action)) {
store.dispatch(
electronActions.showErrorBox({
title: l10n("ERROR_UNABLE_TO_SAVE_MUSIC_FILE"),
content: l10n("ERROR_UNABLE_TO_SAVE_MUSIC_FILE_DESC"),
}),
);
}
return next(action);
};
export default trackerMiddleware;
|