complete frontend restyling
This commit is contained in:
18
frontend-react/src/reducers/uiexpand.js
Normal file
18
frontend-react/src/reducers/uiexpand.js
Normal file
@@ -0,0 +1,18 @@
|
||||
import {
|
||||
OPTION_EXPAND_CHANGE,
|
||||
CATEGORY_SELECT,
|
||||
SUBCATEGORY_SELECT
|
||||
} from "constants/actionTypes";
|
||||
|
||||
export default (state = {}, action) => {
|
||||
switch (action.type) {
|
||||
case OPTION_EXPAND_CHANGE:
|
||||
return { ...state, [action.controlName]: action.value };
|
||||
case CATEGORY_SELECT:
|
||||
return {};
|
||||
case SUBCATEGORY_SELECT:
|
||||
return { Podkategorija: state["Podkategorija"] };
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user