2020-10-09 19:35:46 +02:00
|
|
|
import produce, { Draft } from 'immer';
|
2020-07-22 20:03:31 +02:00
|
|
|
|
|
|
|
export const defaultState = {
|
|
|
|
watchedResources: {},
|
|
|
|
};
|
|
|
|
|
2020-11-12 21:13:28 +02:00
|
|
|
const reducer = produce((draft: Draft<any>, action: any) => {
|
2020-07-22 20:03:31 +02:00
|
|
|
if (action.type.indexOf('RESOURCE_EDIT_WATCHER_') !== 0) return;
|
|
|
|
|
|
|
|
try {
|
|
|
|
switch (action.type) {
|
|
|
|
|
|
|
|
case 'RESOURCE_EDIT_WATCHER_SET':
|
|
|
|
|
|
|
|
draft.watchedResources[action.id] = {
|
|
|
|
id: action.id,
|
|
|
|
title: action.title,
|
|
|
|
};
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'RESOURCE_EDIT_WATCHER_REMOVE':
|
|
|
|
|
|
|
|
delete draft.watchedResources[action.id];
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 'RESOURCE_EDIT_WATCHER_CLEAR':
|
|
|
|
|
|
|
|
draft.watchedResources = {};
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
} catch (error) {
|
|
|
|
error.message = `In plugin reducer: ${error.message} Action: ${JSON.stringify(action)}`;
|
|
|
|
throw error;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
export default reducer;
|