network page

master
Tudor Stanciu 2020-12-23 01:51:23 +02:00
parent 5f7467e50c
commit 4b07aae6bc
3 changed files with 40 additions and 3 deletions

View File

@ -1,7 +1,29 @@
import React from "react"; import React, { useContext } from "react";
import { TextField } from "@material-ui/core";
import {
ApplicationStateContext,
ApplicationDispatchContext
} from "../../../state/ApplicationContexts";
const NetworkContainer = () => { const NetworkContainer = () => {
return <div>NetworkContainer</div>; const state = useContext(ApplicationStateContext);
const dispatchActions = useContext(ApplicationDispatchContext);
const handleChange = prop => event => {
dispatchActions.onNetworkChange(prop, event.target.value);
};
return (
<>
<div>NetworkContainer</div>
<TextField
id="ertet"
label="Test"
onChange={handleChange("test")}
value={state.network.test}
/>
</>
);
}; };
export default NetworkContainer; export default NetworkContainer;

View File

@ -2,5 +2,8 @@ export const initialState = {
credentials: { credentials: {
userName: "", userName: "",
password: "" password: ""
},
network: {
test: ""
} }
}; };

View File

@ -10,6 +10,16 @@ export function reducer(state, action) {
} }
}; };
} }
case "onNetworkChange": {
const { prop, value } = action.payload;
return {
...state,
network: {
...state.network,
[prop]: value
}
};
}
default: { default: {
return state; return state;
} }
@ -18,5 +28,7 @@ export function reducer(state, action) {
export const dispatchActions = dispatch => ({ export const dispatchActions = dispatch => ({
onCredentialsChange: (prop, value) => onCredentialsChange: (prop, value) =>
dispatch({ type: "onCredentialsChange", payload: { prop, value } }) dispatch({ type: "onCredentialsChange", payload: { prop, value } }),
onNetworkChange: (prop, value) =>
dispatch({ type: "onNetworkChange", payload: { prop, value } })
}); });