123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139 |
- /*
- * <<
- * Davinci
- * ==
- * Copyright (C) 2016 - 2017 EDP
- * ==
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * >>
- */
- import produce from 'immer'
- import { IWidgetState } from './types'
- import { ActionTypes } from './constants'
- import { ActionTypes as ViewActionTypes } from '../View/constants'
- import { WidgetActionType } from './actions'
- import { ViewActionType } from 'containers/View/actions'
- import { DisplayActionType } from 'containers/Display/actions'
- export const initialState: IWidgetState = {
- widgets: null,
- currentWidget: null,
- loading: false,
- dataLoading: false
- }
- const widgetReducer = (
- state = initialState,
- action: WidgetActionType | ViewActionType | DisplayActionType
- ) =>
- produce(state, (draft) => {
- switch (action.type) {
- case ActionTypes.LOAD_WIDGETS:
- draft.loading = true
- draft.widgets = null
- break
- case ActionTypes.LOAD_WIDGETS_SUCCESS:
- draft.loading = false
- draft.widgets = action.payload.widgets
- break
- case ActionTypes.LOAD_WIDGETS_FAILURE:
- draft.loading = false
- break
- case ActionTypes.ADD_WIDGET:
- draft.loading = true
- break
- case ActionTypes.ADD_WIDGET_SUCCESS:
- if (draft.widgets) {
- draft.widgets.push(action.payload.result)
- draft.loading = false
- } else {
- draft.loading = false
- draft.widgets = [action.payload.result]
- }
- break
- case ActionTypes.ADD_WIDGET_FAILURE:
- draft.loading = false
- break
- case ActionTypes.DELETE_WIDGET:
- draft.loading = true
- break
- case ActionTypes.DELETE_WIDGET_SUCCESS:
- draft.widgets = draft.widgets.filter((g) => g.id !== action.payload.id)
- draft.loading = false
- break
- case ActionTypes.DELETE_WIDGET_FAILURE:
- draft.loading = false
- break
- case ActionTypes.LOAD_WIDGET_DETAIL:
- draft.loading = true
- draft.currentWidget = null
- break
- case ActionTypes.LOAD_WIDGET_DETAIL_SUCCESS:
- draft.loading = false
- draft.currentWidget = action.payload.detail
- break
- case ActionTypes.LOAD_WIDGET_DETAIL_FAILURE:
- draft.loading = false
- break
- case ActionTypes.EDIT_WIDGET:
- draft.loading = true
- break
- case ActionTypes.EDIT_WIDGET_SUCCESS:
- draft.loading = false
- break
- case ActionTypes.EDIT_WIDGET_FAILURE:
- draft.loading = false
- break
- case ActionTypes.COPY_WIDGET:
- draft.loading = true
- break
- case ActionTypes.COPY_WIDGET_SUCCESS:
- const fromWidgetId = action.payload.fromWidgetId
- const copyWidgetIndex = draft.widgets.findIndex(({ id }) => id === fromWidgetId)
- draft.widgets.splice(
- copyWidgetIndex + 1,
- 0,
- {
- ...action.payload.result,
- viewName: draft.widgets[copyWidgetIndex].viewName
- }
-
- )
- draft.loading = false
- break
- case ActionTypes.COPY_WIDGET_FAILURE:
- draft.loading = false
- case ViewActionTypes.LOAD_VIEW_DATA:
- draft.dataLoading = true
- break
- case ViewActionTypes.LOAD_VIEW_DATA_SUCCESS:
- draft.dataLoading = false
- break
- case ViewActionTypes.LOAD_VIEW_DATA_FAILURE:
- draft.dataLoading = false
- break
- case ActionTypes.CLEAR_CURRENT_WIDGET:
- draft.currentWidget = null
- break
- }
- })
- export default widgetReducer
|