GladysProject/Gladys

View on GitHub
front/src/routes/integration/all/zwave/node-page/actions.js

Summary

Maintainability
D
1 day
Test Coverage
import { RequestStatus } from '../../../../../utils/consts';
import update from 'immutability-helper';
import createActionsHouse from '../../../../../actions/house';
import debounce from 'debounce';

function createActions(store) {
  const houseActions = createActionsHouse(store);
  const actions = {
    async getZWaveDevices(state) {
      store.setState({
        getZwaveDevicesStatus: RequestStatus.Getting
      });
      try {
        const options = {
          order_dir: state.getZwaveDeviceOrderDir || 'asc'
        };
        if (state.zwaveDeviceSearch && state.zwaveDeviceSearch.length) {
          options.search = state.zwaveDeviceSearch;
        }
        const zwaveDevices = await state.httpClient.get('/api/v1/service/zwave/device', options);
        store.setState({
          zwaveDevices,
          getZwaveDevicesStatus: RequestStatus.Success
        });
      } catch (e) {
        store.setState({
          getZwaveDevicesStatus: RequestStatus.Error
        });
      }
    },
    async saveDevice(state, device) {
      await state.httpClient.post('/api/v1/device', device);
    },
    updateDeviceProperty(state, index, property, value) {
      const newState = update(state, {
        zwaveDevices: {
          [index]: {
            [property]: {
              $set: value
            }
          }
        }
      });
      store.setState(newState);
    },
    async deleteDevice(state, device, index) {
      await state.httpClient.delete(`/api/v1/device/${device.selector}`);
      const newState = update(state, {
        zwaveDevices: {
          $splice: [[index, 1]]
        }
      });
      store.setState(newState);
    },
    async convertToMqtt(state, deviceIndex) {
      const mqttService = await state.httpClient.get('/api/v1/service/mqtt');
      const newState = update(state, {
        zwaveDevices: {
          [deviceIndex]: {
            service_id: {
              $set: mqttService.id
            }
          }
        }
      });
      await store.setState(newState);
      const newDevice = store.getState().zwaveDevices[deviceIndex];
      await this.saveDevice(newDevice);
      await actions.getZWaveDevices(store.getState());
    },
    async search(state, e) {
      store.setState({
        zwaveDeviceSearch: e.target.value
      });
      await actions.getZWaveDevices(store.getState());
    },
    async changeOrderDir(state, e) {
      store.setState({
        getZwaveDeviceOrderDir: e.target.value
      });
      await actions.getZWaveDevices(store.getState());
    }
  };
  actions.debouncedSearch = debounce(actions.search, 200);
  return Object.assign({}, houseActions, actions);
}

export default createActions;