P
P
pomaz_andrew2019-11-04 10:31:28
JavaScript
pomaz_andrew, 2019-11-04 10:31:28

How to correctly implement a state in a React-Redux application?

I'm doing a small scale project on React-Redux. Faced a strange structure of the
application state. The application is a simple system that works with a list,
there is a virtual keyboard. I bring the source code.
Actions:

import service from '../../services/api.js';

export const actionView = (_view) => {
  return {
    type: 'VIEW', view: _view,
  }
};

export const actionDel = (_id) => {
  return {
    type: 'DEL', id: _id
  }
};

export const actionEdit = (_id, _spec) => {
  return {
    type: 'EDIT', id: _id, spec: _spec
  }
};

export const actionAdd = (_spec) => {
  return {
    type: 'ADD', spec: _spec
  }
};

export const actionType = (_scanCode) => {
  return { type: 'TYPE', scanCode: _scanCode }
};

export const actionSetSpec = _spec => {
  return { type: 'SET_SPEC', spec: _spec }
};

export function performView() {
  return (dispatch, getState) => {
    let Resp = service.view();
    console.log(Resp);
    dispatch(actionView(Resp));
  }
}

export function performDel(id) {
  return (dispatch, getState) => {
    console.log('>> thunk del');
    service.del(id);
    dispatch(actionDel(id));
  }
}

export function performEdit(id, spec) {
  return (dispatch, getState) => {
    service.edit(id, spec);
    dispatch(actionEdit(id, spec));
  }
}

export function performAdd(spec) {
  return (dispatch, getState) => {
    console.log('>> thunk add');
    console.log(spec);
    service.add(spec);
    dispatch(actionAdd(spec));
  }
}

Reducers:
import { combineReducers } from 'redux';
import Immutable from 'seamless-immutable';
const iniState = Immutable({ view: [], shift: false, lang: 'en', caps: false, spec: '', scanCode: 0 });

export function view(state = iniState, action = {}) {
  let newState;
  if (action.type === 'VIEW') {
    newState = state.merge({ view: action.view });
    console.log(newState);
    return newState;
  } else {
    return iniState;
  }
};

export function del(state = iniState, action = {}) {
  let newState;
  if (action.type === 'DEL') {
    newState = state.merge({ id: action.id });
    return newState;
  } else {
    return iniState;
  }
}

export function add(state = iniState, action = {}) {
  let newState;
  if (action.type === 'ADD') {
    newState = state.merge({ spec: action.spec });
    return newState;
  } else {
    return iniState;
  }
}

export function edit(state = iniState, action = {}) {
  let newState;
  if (action.type === 'EDIT') {
    newState = state.merge({ id: action.id, spec: action.spec });
    return newState;
  } else {
    return iniState;
  }
}

export function setSpec(state = iniState, action = {}) {
  let newState;
  if (action.type === 'SET_SPEC') {
    newState = state.merge({ spec: action.spec });
    console.log(newState);
    return newState;
  } else {
    return iniState;
  }
}

export function type(state = iniState, action = {}) {
  let newState;
  if (action.type === 'TYPE') {
    if (action.scanCode > 0) {
      newState = state.merge({ spec: state.spec + Symbol(action.scanCode).toString() });
    } else {
      newState = state.merge({ scanCode: action.scanCode });
    }
    console.log(newState);
    return newState;
  } else {
    return iniState;
  }
}
export default combineReducers({ view, del, edit, add, type, setSpec });

Here is the Render method of one of the components:
render() {
let view = this.props.view;
console log(view);
...
const mapStateToProps = (state) => {
return {
view: state,
scanCode: state.scanCode
}
}
In the console I see:
5dbfd1287bc4e295580972.png
It is not clear to me why such a strange state structure, with nested objects, respectively reducers.
With React, there is little experience, perhaps the problem is simple and I'm doing something wrong. Thank you.

Answer the question

In order to leave comments, you need to log in

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question