Create/Update worktypes
This commit is contained in:
parent
48cc050c47
commit
0e6fb475b7
2
.vscode/settings.json
vendored
Normal file
2
.vscode/settings.json
vendored
Normal file
|
@ -0,0 +1,2 @@
|
|||
{
|
||||
}
|
|
@ -6,6 +6,7 @@
|
|||
"axios": "^0.16.2",
|
||||
"localStorage": "^1.0.3",
|
||||
"react": "^15.6.1",
|
||||
"react-color": "^2.13.8",
|
||||
"react-dom": "^15.6.1",
|
||||
"react-redux": "^5.0.6",
|
||||
"react-router": "^4.2.0",
|
||||
|
|
74
src/actions/worktype/reducer.actions.js
Normal file
74
src/actions/worktype/reducer.actions.js
Normal file
|
@ -0,0 +1,74 @@
|
|||
import {
|
||||
IS_SENDING_WORKTYPE_REQUEST,
|
||||
SET_WORKTYPE_REQUEST_ERROR,
|
||||
CLEAR_WORKTYPE_REQUEST_ERROR,
|
||||
SET_WORKTYPE_REQUEST_SUCCESS,
|
||||
CLEAR_WORKTYPE_REQUEST_SUCCESS,
|
||||
SET_WORKTYPE_UUID,
|
||||
SET_FORM_WORKTYPE_COLOR,
|
||||
SET_FORM_WORKTYPE_LABEL
|
||||
} from "../../constants/worktype.constants";
|
||||
import { parseError } from "../common.actions";
|
||||
|
||||
export function isSendingWorktypeRequest(sendingRequest) {
|
||||
return {
|
||||
type: IS_SENDING_WORKTYPE_REQUEST,
|
||||
data: sendingRequest
|
||||
};
|
||||
}
|
||||
|
||||
export function setWorktypeRequestError(exception) {
|
||||
let error = parseError(exception);
|
||||
if (error.label) {
|
||||
error["Label"] = error.label;
|
||||
delete error["label"];
|
||||
}
|
||||
if (error.color) {
|
||||
error["Color"] = error.color;
|
||||
delete error["color"];
|
||||
}
|
||||
return {
|
||||
type: SET_WORKTYPE_REQUEST_ERROR,
|
||||
data: error
|
||||
};
|
||||
}
|
||||
|
||||
export function clearWorktypeRequestError() {
|
||||
return {
|
||||
type: CLEAR_WORKTYPE_REQUEST_ERROR
|
||||
};
|
||||
}
|
||||
|
||||
export function setWorktypeRequestSuccess(response) {
|
||||
return {
|
||||
type: SET_WORKTYPE_REQUEST_SUCCESS,
|
||||
data: response.detail || response
|
||||
};
|
||||
}
|
||||
|
||||
export function clearWorktypeRequestSuccess() {
|
||||
return {
|
||||
type: CLEAR_WORKTYPE_REQUEST_SUCCESS
|
||||
};
|
||||
}
|
||||
|
||||
export function setWorktypeUUID(uuid) {
|
||||
return {
|
||||
type: SET_WORKTYPE_UUID,
|
||||
data: uuid
|
||||
};
|
||||
}
|
||||
|
||||
export function setFormWorktypeColor(color) {
|
||||
return {
|
||||
type: SET_FORM_WORKTYPE_COLOR,
|
||||
data: color
|
||||
};
|
||||
}
|
||||
|
||||
export function setFormWorktypeLabel(label) {
|
||||
return {
|
||||
type: SET_FORM_WORKTYPE_LABEL,
|
||||
data: label
|
||||
};
|
||||
}
|
34
src/actions/worktype/saga.actions.js
Normal file
34
src/actions/worktype/saga.actions.js
Normal file
|
@ -0,0 +1,34 @@
|
|||
import {
|
||||
CREATE_WORKTYPE_REQUEST,
|
||||
READ_WORKTYPE_REQUEST,
|
||||
UPDATE_WORKTYPE_REQUEST,
|
||||
DELETE_WORKTYPE_REQUEST
|
||||
} from "../../constants/worktype.constants";
|
||||
|
||||
export function createWorktypeRequest(postBody) {
|
||||
return {
|
||||
type: CREATE_WORKTYPE_REQUEST,
|
||||
data: postBody
|
||||
};
|
||||
}
|
||||
|
||||
export function readWorktypeRequest(payload) {
|
||||
return {
|
||||
type: READ_WORKTYPE_REQUEST,
|
||||
data: payload
|
||||
};
|
||||
}
|
||||
|
||||
export function updateWorktypeRequest(payload) {
|
||||
return {
|
||||
type: UPDATE_WORKTYPE_REQUEST,
|
||||
data: payload
|
||||
};
|
||||
}
|
||||
|
||||
export function deleteWorktypeRequest(payload) {
|
||||
return {
|
||||
type: DELETE_WORKTYPE_REQUEST,
|
||||
data: payload
|
||||
};
|
||||
}
|
|
@ -46,6 +46,13 @@ export function put(url, data) {
|
|||
.catch(error => Promise.reject(error));
|
||||
}
|
||||
|
||||
export function patch(url, data) {
|
||||
return apiInstance
|
||||
.patch(url, data, { headers: headers() })
|
||||
.then(response => response.data)
|
||||
.catch(error => Promise.reject(error));
|
||||
}
|
||||
|
||||
export function del(url) {
|
||||
return apiInstance
|
||||
.delete(url, { headers: headers() })
|
||||
|
|
39
src/api/worktype.api.js
Normal file
39
src/api/worktype.api.js
Normal file
|
@ -0,0 +1,39 @@
|
|||
import { post, get, patch, del } from "./baseApi";
|
||||
|
||||
/**
|
||||
* Function wrapping POST request for creating worktypes
|
||||
* @param {string} color - color value of worktype
|
||||
* @param {string} label - label text of worktype
|
||||
*/
|
||||
export function createWorktype(color, label) {
|
||||
return post("/worktype/", { color, label }).then(resp =>
|
||||
Promise.resolve(resp)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Function wrapping GET request for retreiving worktype data
|
||||
* @param {string} uuid - worktype unique identifier
|
||||
*/
|
||||
export function getWorktype(uuid) {
|
||||
return get(`/worktype/${uuid}/`).then(resp => Promise.resolve(resp));
|
||||
}
|
||||
|
||||
/**
|
||||
* Function wrapping PATCH request for updating worktype
|
||||
* @param {string} uuid - worktype unique identifier
|
||||
* @param {string} color - color value of worktype
|
||||
*/
|
||||
export function updateWorktype(uuid, color) {
|
||||
return patch(`/worktype/${uuid}/`, { color }).then(resp =>
|
||||
Promise.resolve(resp)
|
||||
);
|
||||
}
|
||||
|
||||
/**
|
||||
* Function wrapping DELETE request for removing worktypes
|
||||
* @param {string} uuid - worktype unique identifier
|
||||
*/
|
||||
export function deleteWorktype(uuid) {
|
||||
return del(`/worktype/${uuid}`).then(resp => Promise.resolve(resp));
|
||||
}
|
|
@ -7,6 +7,8 @@ import Register from "./Auth/Register";
|
|||
import ResetPassword from "./Auth/ResetPassword";
|
||||
import Settings from "./Auth/Settings";
|
||||
import VerifyEmail from "./Auth/VerifyEmail";
|
||||
import CreateWorkTypeForm from "./User/Client/CreateWorkTypeForm";
|
||||
import UpdateWorkTypeForm from "./User/Client/UpdateWorkTypeForm";
|
||||
import CompleteRegistration from "./User/CompleteRegistration";
|
||||
import EditProfile from "./User/EditProfile";
|
||||
import Profile from "./User/Profile";
|
||||
|
@ -46,12 +48,23 @@ class App extends Component {
|
|||
path="/auth/reset-password/:uid/:token"
|
||||
component={ResetPassword}
|
||||
/>
|
||||
<PrivateRoute
|
||||
path="/user/profile/client/update-worktype/:uuid"
|
||||
component={UpdateWorkTypeForm}
|
||||
/>
|
||||
<PrivateRoute
|
||||
path="/user/profile/client/create-worktype"
|
||||
component={CreateWorkTypeForm}
|
||||
/>
|
||||
<PrivateRoute path="/user/profile/edit" component={EditProfile} />
|
||||
<PrivateRoute path="/user/profile" component={Profile} />
|
||||
<Route path='/user/complete-registration' component={Profile} />
|
||||
<Route path="/user/complete-registration" component={Profile} />
|
||||
<Route component={NoMatch} />
|
||||
</Switch>
|
||||
<Route path='/user/complete-registration' component={CompleteRegistration} />
|
||||
<Route
|
||||
path="/user/complete-registration"
|
||||
component={CompleteRegistration}
|
||||
/>
|
||||
</div>
|
||||
<Footer />
|
||||
</div>
|
||||
|
|
75
src/components/User/Client/ClientProfile.jsx
Normal file
75
src/components/User/Client/ClientProfile.jsx
Normal file
|
@ -0,0 +1,75 @@
|
|||
import React, { Component } from "react";
|
||||
import { connect } from "react-redux";
|
||||
import { Link } from "react-router-dom";
|
||||
import { Card, Button, Label } from "semantic-ui-react";
|
||||
|
||||
class ClientProfile extends Component {
|
||||
render() {
|
||||
const { selfUser } = this.props;
|
||||
return <ClientProfileView user={selfUser} />;
|
||||
}
|
||||
}
|
||||
|
||||
function mapStateToProps(state) {
|
||||
return { ...state.user };
|
||||
}
|
||||
|
||||
const ClientProfileView = ({ user }) => (
|
||||
<div>
|
||||
<Card fluid={true}>
|
||||
<Card.Content>
|
||||
<Card.Header>Client Information</Card.Header>
|
||||
<Card.Meta>Business Number: {user.client.business_number}</Card.Meta>
|
||||
<Card.Description>
|
||||
<Button
|
||||
basic
|
||||
color="green"
|
||||
size="small"
|
||||
as={Link}
|
||||
to="/user/profile/client/create-worktype"
|
||||
>
|
||||
Create Worktype
|
||||
</Button>
|
||||
</Card.Description>
|
||||
</Card.Content>
|
||||
</Card>
|
||||
{(user.client.work_types || []).length &&
|
||||
<Card.Group>
|
||||
{user.client.work_types.map((worktype, index) => (
|
||||
<Card key={index}>
|
||||
<Card.Content>
|
||||
<Card.Header as="h4">
|
||||
<Label
|
||||
circular
|
||||
empty
|
||||
style={{
|
||||
backgroundColor: worktype.color,
|
||||
borderColor: worktype.color
|
||||
}}
|
||||
/>{" " + worktype.label}
|
||||
</Card.Header>
|
||||
<Card.Meta>
|
||||
Worktype
|
||||
</Card.Meta>
|
||||
</Card.Content>
|
||||
<Card.Content extra>
|
||||
<Button.Group>
|
||||
<Button
|
||||
basic
|
||||
color="yellow"
|
||||
size="small"
|
||||
as={Link}
|
||||
to={`/user/profile/client/update-worktype/${worktype.uuid}`}
|
||||
>
|
||||
Edit
|
||||
</Button>
|
||||
<Button basic color="red" size="small">Delete</Button>
|
||||
</Button.Group>
|
||||
</Card.Content>
|
||||
</Card>
|
||||
))}
|
||||
</Card.Group>}
|
||||
</div>
|
||||
);
|
||||
|
||||
export default connect(mapStateToProps)(ClientProfile);
|
113
src/components/User/Client/CreateWorkTypeForm.jsx
Normal file
113
src/components/User/Client/CreateWorkTypeForm.jsx
Normal file
|
@ -0,0 +1,113 @@
|
|||
import React, { Component } from "react";
|
||||
import { GithubPicker } from "react-color";
|
||||
import { connect } from "react-redux";
|
||||
import { Container, Form, Header, Label, Message } from "semantic-ui-react";
|
||||
|
||||
import {
|
||||
clearWorktypeRequestError,
|
||||
clearWorktypeRequestSuccess,
|
||||
setFormWorktypeColor,
|
||||
setFormWorktypeLabel
|
||||
} from "../../../actions/worktype/reducer.actions";
|
||||
import { createWorktypeRequest } from "../../../actions/worktype/saga.actions";
|
||||
import Error from "../../Shared/Error";
|
||||
|
||||
class CreateWorkTypeForm extends Component {
|
||||
componentWillUnmount = () => {
|
||||
this.props.dispatch(clearWorktypeRequestError());
|
||||
this.props.dispatch(clearWorktypeRequestSuccess());
|
||||
};
|
||||
|
||||
changeLabel = event => {
|
||||
this.props.dispatch(setFormWorktypeLabel(event.target.value));
|
||||
};
|
||||
|
||||
changeColor = color => {
|
||||
this.props.dispatch(setFormWorktypeColor(color.hex));
|
||||
};
|
||||
|
||||
onSubmitWorktype = event => {
|
||||
event.preventDefault();
|
||||
const { label, color } = this.props;
|
||||
this.props.dispatch(createWorktypeRequest({ label, color }));
|
||||
};
|
||||
|
||||
render() {
|
||||
const {
|
||||
isSendingWorktypeRequest,
|
||||
worktypeRequestError,
|
||||
worktypeRequestSuccess,
|
||||
label,
|
||||
color
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
<CreateWorkTypeFormView
|
||||
isSendingWorktypeRequest={isSendingWorktypeRequest}
|
||||
worktypeRequestError={worktypeRequestError}
|
||||
worktypeRequestSuccess={worktypeRequestSuccess}
|
||||
label={label}
|
||||
color={color}
|
||||
changeLabel={this.changeLabel}
|
||||
changeColor={this.changeColor}
|
||||
onSubmitWorktype={this.onSubmitWorktype}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function mapStateToProps(state) {
|
||||
return { ...state.worktype };
|
||||
}
|
||||
|
||||
const CreateWorkTypeFormView = ({
|
||||
isSendingWorktypeRequest,
|
||||
worktypeRequestError,
|
||||
worktypeRequestSuccess,
|
||||
label,
|
||||
color,
|
||||
changeLabel,
|
||||
changeColor,
|
||||
onSubmitWorktype
|
||||
}) => (
|
||||
<Container>
|
||||
<Header>Create Worktype</Header>
|
||||
<Form
|
||||
loading={isSendingWorktypeRequest}
|
||||
onSubmit={onSubmitWorktype}
|
||||
error={!!worktypeRequestError}
|
||||
success={!!worktypeRequestSuccess}
|
||||
>
|
||||
<Form.Field>
|
||||
<label>Label</label>
|
||||
<input
|
||||
placeholder="My worktype"
|
||||
type="text"
|
||||
value={label}
|
||||
onChange={changeLabel}
|
||||
/>
|
||||
</Form.Field>
|
||||
<Form.Field>
|
||||
<label>Color</label>
|
||||
<Label
|
||||
circular
|
||||
empty
|
||||
size="massive"
|
||||
style={{
|
||||
backgroundColor: color,
|
||||
borderColor: color
|
||||
}}
|
||||
/>
|
||||
<GithubPicker color={color} onChangeComplete={changeColor} />
|
||||
</Form.Field>
|
||||
<Error header="Create Worktype failed!" error={worktypeRequestError} />
|
||||
<Message success>
|
||||
<Message.Header>Create Worktype successful!</Message.Header>
|
||||
<p>Set worktype successfully.</p>
|
||||
</Message>
|
||||
<Form.Button>Submit Worktype</Form.Button>
|
||||
</Form>
|
||||
</Container>
|
||||
);
|
||||
|
||||
export default connect(mapStateToProps)(CreateWorkTypeForm);
|
108
src/components/User/Client/UpdateWorkTypeForm.jsx
Normal file
108
src/components/User/Client/UpdateWorkTypeForm.jsx
Normal file
|
@ -0,0 +1,108 @@
|
|||
import React, { Component } from "react";
|
||||
import { GithubPicker } from "react-color";
|
||||
import { connect } from "react-redux";
|
||||
import { Container, Form, Header, Label, Message } from "semantic-ui-react";
|
||||
|
||||
import {
|
||||
clearWorktypeRequestError,
|
||||
clearWorktypeRequestSuccess,
|
||||
setFormWorktypeColor
|
||||
} from "../../../actions/worktype/reducer.actions";
|
||||
import { updateWorktypeRequest, readWorktypeRequest } from "../../../actions/worktype/saga.actions";
|
||||
import Error from "../../Shared/Error";
|
||||
|
||||
class UpdateWorkTypeForm extends Component {
|
||||
componentWillMount = () => {
|
||||
const uuid = this.props.match.params.uuid;
|
||||
this.props.dispatch(readWorktypeRequest(uuid));
|
||||
}
|
||||
|
||||
componentWillUnmount = () => {
|
||||
this.props.dispatch(clearWorktypeRequestError());
|
||||
this.props.dispatch(clearWorktypeRequestSuccess());
|
||||
};
|
||||
|
||||
changeColor = color => {
|
||||
this.props.dispatch(setFormWorktypeColor(color.hex));
|
||||
};
|
||||
|
||||
onSubmitWorktype = event => {
|
||||
event.preventDefault();
|
||||
const { uuid, color } = this.props;
|
||||
this.props.dispatch(updateWorktypeRequest({ uuid, color }));
|
||||
};
|
||||
|
||||
render() {
|
||||
const {
|
||||
isSendingWorktypeRequest,
|
||||
worktypeRequestError,
|
||||
worktypeRequestSuccess,
|
||||
uuid,
|
||||
label,
|
||||
color
|
||||
} = this.props;
|
||||
|
||||
return (
|
||||
<UpdateWorkTypeFormView
|
||||
isSendingWorktypeRequest={isSendingWorktypeRequest}
|
||||
worktypeRequestError={worktypeRequestError}
|
||||
worktypeRequestSuccess={worktypeRequestSuccess}
|
||||
uuid={uuid}
|
||||
label={label}
|
||||
color={color}
|
||||
changeColor={this.changeColor}
|
||||
onSubmitWorktype={this.onSubmitWorktype}
|
||||
/>
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
function mapStateToProps(state) {
|
||||
return { ...state.worktype };
|
||||
}
|
||||
|
||||
const UpdateWorkTypeFormView = ({
|
||||
isSendingWorktypeRequest,
|
||||
worktypeRequestError,
|
||||
worktypeRequestSuccess,
|
||||
label,
|
||||
color,
|
||||
changeColor,
|
||||
onSubmitWorktype
|
||||
}) => (
|
||||
<Container>
|
||||
<Header>Update Worktype</Header>
|
||||
<Form
|
||||
loading={isSendingWorktypeRequest}
|
||||
onSubmit={onSubmitWorktype}
|
||||
error={!!worktypeRequestError}
|
||||
success={!!worktypeRequestSuccess}
|
||||
>
|
||||
<Form.Field>
|
||||
<label>Label</label>
|
||||
<input type="text" disabled value={label}/>
|
||||
</Form.Field>
|
||||
<Form.Field>
|
||||
<label>Color</label>
|
||||
<Label
|
||||
circular
|
||||
empty
|
||||
size="massive"
|
||||
style={{
|
||||
backgroundColor: color,
|
||||
borderColor: color
|
||||
}}
|
||||
/>
|
||||
<GithubPicker color={color} onChangeComplete={changeColor} />
|
||||
</Form.Field>
|
||||
<Error header="Update Worktype failed!" error={worktypeRequestError} />
|
||||
<Message success>
|
||||
<Message.Header>Update Worktype successful!</Message.Header>
|
||||
<p>Update worktype successfully.</p>
|
||||
</Message>
|
||||
<Form.Button>Update Worktype</Form.Button>
|
||||
</Form>
|
||||
</Container>
|
||||
);
|
||||
|
||||
export default connect(mapStateToProps)(UpdateWorkTypeForm);
|
|
@ -3,6 +3,8 @@ import { connect } from "react-redux";
|
|||
import { Link } from "react-router-dom";
|
||||
import { Card, Container, Header, Label, List } from "semantic-ui-react";
|
||||
|
||||
import ClientProfile from "./Client/ClientProfile";
|
||||
|
||||
class Profile extends Component {
|
||||
render() {
|
||||
const { selfUser } = this.props;
|
||||
|
@ -35,38 +37,24 @@ const ProfileView = ({ user }) => (
|
|||
"User Registration Not Completed"}
|
||||
</span>
|
||||
{user.first_name} {user.last_name}
|
||||
<List>
|
||||
{user.userinfo &&
|
||||
Object.keys(user.userinfo).map(function(key) {
|
||||
{user.userinfo &&
|
||||
<List>
|
||||
{Object.keys(user.userinfo).map(function(key) {
|
||||
return (
|
||||
<List.Item key={key}>
|
||||
{key}: {user.userinfo[key]}
|
||||
</List.Item>
|
||||
);
|
||||
})}
|
||||
{user.client &&
|
||||
Object.keys(user.client).map(function(key) {
|
||||
return (
|
||||
<List.Item key={key}>
|
||||
{key}: {user.client[key]}
|
||||
</List.Item>
|
||||
);
|
||||
})}
|
||||
{user.provider &&
|
||||
Object.keys(user.provider).map(function(key) {
|
||||
return (
|
||||
<List.Item key={key}>
|
||||
{key}: {user.provider[key]}
|
||||
</List.Item>
|
||||
);
|
||||
})}
|
||||
</List>
|
||||
</List>}
|
||||
</Card.Description>
|
||||
</Card.Content>
|
||||
<Card.Content extra>
|
||||
<Link to="/user/profile/edit">Edit Profile</Link>
|
||||
</Card.Content>
|
||||
</Card>
|
||||
{user.client && <ClientProfile />}
|
||||
{user.provider && <div />}
|
||||
</Container>
|
||||
);
|
||||
|
||||
|
|
15
src/constants/worktype.constants.js
Normal file
15
src/constants/worktype.constants.js
Normal file
|
@ -0,0 +1,15 @@
|
|||
// Reducer Worktype Action Constants
|
||||
export const IS_SENDING_WORKTYPE_REQUEST = "IS_SENDING_WORKTYPE_REQUEST";
|
||||
export const SET_WORKTYPE_REQUEST_ERROR = "SET_WORKTYPE_REQUEST_ERROR";
|
||||
export const CLEAR_WORKTYPE_REQUEST_ERROR = "CLEAR_WORKTYPE_REQUEST_ERROR";
|
||||
export const SET_WORKTYPE_REQUEST_SUCCESS = "SET_WORKTYPE_REQUEST_SUCCESS";
|
||||
export const CLEAR_WORKTYPE_REQUEST_SUCCESS = "CLEAR_WORKTYPE_REQUEST_SUCCESS";
|
||||
export const SET_WORKTYPE_UUID = "SET_WORKTYPE_UUID";
|
||||
export const SET_FORM_WORKTYPE_LABEL = "SET_FORM_WORKTYPE_LABEL";
|
||||
export const SET_FORM_WORKTYPE_COLOR = "SET_FORM_WORKTYPE_COLOR";
|
||||
|
||||
// Saga Worktype Action Constants
|
||||
export const CREATE_WORKTYPE_REQUEST = "CREATE_WORKTYPE_REQUEST";
|
||||
export const READ_WORKTYPE_REQUEST = "READ_WORKTYPE_REQUEST";
|
||||
export const UPDATE_WORKTYPE_REQUEST = "UPDATE_WORKTYPE_REQUEST";
|
||||
export const DELETE_WORKTYPE_REQUEST = "DELETE_WORKTYPE_REQUEST";
|
|
@ -1,10 +1,12 @@
|
|||
import { combineReducers } from "redux";
|
||||
import authReducer from "./authReducer";
|
||||
import userReducer from "./userReducer";
|
||||
import worktypeReducer from "./worktypeReducer";
|
||||
|
||||
const reducer = combineReducers({
|
||||
auth: authReducer,
|
||||
user: userReducer
|
||||
user: userReducer,
|
||||
worktype: worktypeReducer
|
||||
});
|
||||
|
||||
export default reducer;
|
||||
|
|
68
src/reducers/worktypeReducer.js
Normal file
68
src/reducers/worktypeReducer.js
Normal file
|
@ -0,0 +1,68 @@
|
|||
import {
|
||||
IS_SENDING_WORKTYPE_REQUEST,
|
||||
SET_WORKTYPE_REQUEST_ERROR,
|
||||
CLEAR_WORKTYPE_REQUEST_ERROR,
|
||||
SET_WORKTYPE_REQUEST_SUCCESS,
|
||||
CLEAR_WORKTYPE_REQUEST_SUCCESS,
|
||||
SET_WORKTYPE_UUID,
|
||||
SET_FORM_WORKTYPE_COLOR,
|
||||
SET_FORM_WORKTYPE_LABEL
|
||||
} from "../constants/worktype.constants";
|
||||
|
||||
const initialState = {
|
||||
isSendingWorktypeRequest: false,
|
||||
worktypeRequestError: "",
|
||||
worktypeRequestSuccess: "",
|
||||
uuid: "",
|
||||
color: "",
|
||||
label: ""
|
||||
};
|
||||
|
||||
function worktypeReducer(state = initialState, action) {
|
||||
switch (action.type) {
|
||||
case IS_SENDING_WORKTYPE_REQUEST:
|
||||
return {
|
||||
...state,
|
||||
isSendingWorktypeRequest: action.data
|
||||
};
|
||||
case SET_WORKTYPE_REQUEST_ERROR:
|
||||
return {
|
||||
...state,
|
||||
worktypeRequestError: action.data
|
||||
};
|
||||
case CLEAR_WORKTYPE_REQUEST_ERROR:
|
||||
return {
|
||||
...state,
|
||||
worktypeRequestError: ""
|
||||
};
|
||||
case SET_WORKTYPE_REQUEST_SUCCESS:
|
||||
return {
|
||||
...state,
|
||||
worktypeRequestSuccess: action.data
|
||||
};
|
||||
case CLEAR_WORKTYPE_REQUEST_SUCCESS:
|
||||
return {
|
||||
...state,
|
||||
worktypeRequestSuccess: ""
|
||||
};
|
||||
case SET_WORKTYPE_UUID:
|
||||
return {
|
||||
...state,
|
||||
uuid: action.data
|
||||
};
|
||||
case SET_FORM_WORKTYPE_COLOR:
|
||||
return {
|
||||
...state,
|
||||
color: action.data
|
||||
};
|
||||
case SET_FORM_WORKTYPE_LABEL:
|
||||
return {
|
||||
...state,
|
||||
label: action.data
|
||||
};
|
||||
default:
|
||||
return state;
|
||||
}
|
||||
}
|
||||
|
||||
export default worktypeReducer;
|
|
@ -15,7 +15,7 @@ import {
|
|||
logoutUserFlow,
|
||||
changePasswordFlow,
|
||||
forgotPasswordFlow,
|
||||
resetPasswordFlow,
|
||||
resetPasswordFlow
|
||||
} from "./auth.sagas";
|
||||
import {
|
||||
GET_SELF_USER_REQUEST,
|
||||
|
@ -35,6 +35,16 @@ import {
|
|||
createProviderFlow,
|
||||
updateProviderFlow
|
||||
} from "./user.sagas";
|
||||
import {
|
||||
CREATE_WORKTYPE_REQUEST,
|
||||
READ_WORKTYPE_REQUEST,
|
||||
UPDATE_WORKTYPE_REQUEST
|
||||
} from "../constants/worktype.constants";
|
||||
import {
|
||||
createWorktypeFlow,
|
||||
readWorktypeFlow,
|
||||
updateWorktypeFlow
|
||||
} from "./worktype.sagas";
|
||||
|
||||
export default function* rootSaga() {
|
||||
yield takeLatest(SEND_REGISTER_REQUEST, registerUserFlow);
|
||||
|
@ -51,4 +61,7 @@ export default function* rootSaga() {
|
|||
yield takeLatest(UPDATE_CLIENT_REQUEST, updateClientFlow);
|
||||
yield takeLatest(CREATE_PROVIDER_REQUEST, createProviderFlow);
|
||||
yield takeLatest(UPDATE_PROVIDER_REQUEST, updateProviderFlow);
|
||||
yield takeLatest(CREATE_WORKTYPE_REQUEST, createWorktypeFlow);
|
||||
yield takeLatest(READ_WORKTYPE_REQUEST, readWorktypeFlow);
|
||||
yield takeLatest(UPDATE_WORKTYPE_REQUEST, updateWorktypeFlow);
|
||||
}
|
||||
|
|
88
src/sagas/worktype.sagas.js
Normal file
88
src/sagas/worktype.sagas.js
Normal file
|
@ -0,0 +1,88 @@
|
|||
import { effects } from "redux-saga";
|
||||
import {
|
||||
isSendingWorktypeRequest,
|
||||
setWorktypeRequestError,
|
||||
setWorktypeRequestSuccess,
|
||||
clearWorktypeRequestError,
|
||||
clearWorktypeRequestSuccess,
|
||||
setWorktypeUUID,
|
||||
setFormWorktypeColor,
|
||||
setFormWorktypeLabel
|
||||
} from "../actions/worktype/reducer.actions";
|
||||
import { getSelfUserRequest } from "../actions/user/saga.actions";
|
||||
import {
|
||||
createWorktype,
|
||||
getWorktype,
|
||||
updateWorktype,
|
||||
deleteWorktype
|
||||
} from "../api/worktype.api";
|
||||
|
||||
function* createWorktypeCall(postBody) {
|
||||
yield effects.put(isSendingWorktypeRequest(true));
|
||||
const { color, label } = postBody;
|
||||
try {
|
||||
return yield effects.call(createWorktype, color, label);
|
||||
} catch (exception) {
|
||||
yield effects.put(setWorktypeRequestError(exception));
|
||||
return false;
|
||||
} finally {
|
||||
yield effects.put(isSendingWorktypeRequest(false));
|
||||
}
|
||||
}
|
||||
|
||||
function* readWorktypeCall(uuid) {
|
||||
yield effects.put(isSendingWorktypeRequest(true));
|
||||
try {
|
||||
return yield effects.call(getWorktype, uuid);
|
||||
} catch (exception) {
|
||||
yield effects.put(setWorktypeRequestError(exception));
|
||||
return false;
|
||||
} finally {
|
||||
yield effects.put(isSendingWorktypeRequest(false));
|
||||
}
|
||||
}
|
||||
|
||||
function* updateWorktypeCall(payload) {
|
||||
yield effects.put(isSendingWorktypeRequest(true));
|
||||
const { uuid, color } = payload;
|
||||
try {
|
||||
return yield effects.call(updateWorktype, uuid, color);
|
||||
} catch (exception) {
|
||||
yield effects.put(setWorktypeRequestError(exception));
|
||||
return false;
|
||||
} finally {
|
||||
yield effects.put(isSendingWorktypeRequest(false));
|
||||
}
|
||||
}
|
||||
|
||||
export function* createWorktypeFlow(request) {
|
||||
yield effects.put(clearWorktypeRequestSuccess());
|
||||
yield effects.put(clearWorktypeRequestError());
|
||||
const wasSuccessful = yield effects.call(createWorktypeCall, request.data);
|
||||
if (wasSuccessful) {
|
||||
yield effects.put(getSelfUserRequest());
|
||||
yield effects.put(setWorktypeRequestSuccess(wasSuccessful));
|
||||
yield effects.put(setFormWorktypeColor(""));
|
||||
yield effects.put(setFormWorktypeLabel(""));
|
||||
yield effects.put(clearWorktypeRequestError());
|
||||
}
|
||||
}
|
||||
|
||||
export function* readWorktypeFlow(request) {
|
||||
const wasSuccessful = yield effects.call(readWorktypeCall, request.data);
|
||||
if (wasSuccessful) {
|
||||
yield effects.put(setWorktypeUUID(wasSuccessful.uuid));
|
||||
yield effects.put(setFormWorktypeColor(wasSuccessful.color));
|
||||
yield effects.put(setFormWorktypeLabel(wasSuccessful.label));
|
||||
}
|
||||
}
|
||||
|
||||
export function* updateWorktypeFlow(request) {
|
||||
yield effects.put(clearWorktypeRequestSuccess());
|
||||
yield effects.put(clearWorktypeRequestError());
|
||||
const wasSuccessful = yield effects.call(updateWorktypeCall, request.data);
|
||||
if (wasSuccessful) {
|
||||
yield effects.put(getSelfUserRequest());
|
||||
yield effects.put(setWorktypeRequestSuccess(wasSuccessful));
|
||||
}
|
||||
}
|
26
yarn.lock
26
yarn.lock
|
@ -3946,7 +3946,7 @@ lodash.uniq@^4.5.0:
|
|||
version "4.5.0"
|
||||
resolved "https://registry.yarnpkg.com/lodash.uniq/-/lodash.uniq-4.5.0.tgz#d0225373aeb652adc1bc82e4945339a842754773"
|
||||
|
||||
"lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0:
|
||||
"lodash@>=3.5 <5", lodash@^4.0.0, lodash@^4.0.1, lodash@^4.14.0, lodash@^4.15.0, lodash@^4.17.2, lodash@^4.17.3, lodash@^4.17.4, lodash@^4.2.0, lodash@^4.2.1, lodash@^4.3.0:
|
||||
version "4.17.4"
|
||||
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
|
||||
|
||||
|
@ -4006,6 +4006,10 @@ map-obj@^1.0.0, map-obj@^1.0.1:
|
|||
version "1.0.1"
|
||||
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-1.0.1.tgz#d933ceb9205d82bdcf4886f6742bdc2b4dea146d"
|
||||
|
||||
material-colors@^1.2.1:
|
||||
version "1.2.5"
|
||||
resolved "https://registry.yarnpkg.com/material-colors/-/material-colors-1.2.5.tgz#5292593e6754cb1bcc2b98030e4e0d6a3afc9ea1"
|
||||
|
||||
math-expression-evaluator@^1.2.14:
|
||||
version "1.2.17"
|
||||
resolved "https://registry.yarnpkg.com/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz#de819fdbcd84dccd8fae59c6aeb79615b9d266ac"
|
||||
|
@ -5081,6 +5085,16 @@ rc@^1.0.1, rc@^1.1.6, rc@^1.1.7:
|
|||
minimist "^1.2.0"
|
||||
strip-json-comments "~2.0.1"
|
||||
|
||||
react-color@^2.13.8:
|
||||
version "2.13.8"
|
||||
resolved "https://registry.yarnpkg.com/react-color/-/react-color-2.13.8.tgz#bcc58f79a722b9bfc37c402e68cd18f26970aee4"
|
||||
dependencies:
|
||||
lodash "^4.0.1"
|
||||
material-colors "^1.2.1"
|
||||
prop-types "^15.5.10"
|
||||
reactcss "^1.2.0"
|
||||
tinycolor2 "^1.4.1"
|
||||
|
||||
react-dev-utils@^4.0.0:
|
||||
version "4.0.0"
|
||||
resolved "https://registry.yarnpkg.com/react-dev-utils/-/react-dev-utils-4.0.0.tgz#76467b380946197e738aab5683336b5439e979ba"
|
||||
|
@ -5212,6 +5226,12 @@ react-scripts@1.0.12:
|
|||
object-assign "^4.1.0"
|
||||
prop-types "^15.5.10"
|
||||
|
||||
reactcss@^1.2.0:
|
||||
version "1.2.3"
|
||||
resolved "https://registry.yarnpkg.com/reactcss/-/reactcss-1.2.3.tgz#c00013875e557b1cf0dfd9a368a1c3dab3b548dd"
|
||||
dependencies:
|
||||
lodash "^4.0.1"
|
||||
|
||||
read-all-stream@^3.0.0:
|
||||
version "3.1.0"
|
||||
resolved "https://registry.yarnpkg.com/read-all-stream/-/read-all-stream-3.1.0.tgz#35c3e177f2078ef789ee4bfafa4373074eaef4fa"
|
||||
|
@ -6072,6 +6092,10 @@ timers-browserify@^2.0.2:
|
|||
dependencies:
|
||||
setimmediate "^1.0.4"
|
||||
|
||||
tinycolor2@^1.4.1:
|
||||
version "1.4.1"
|
||||
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"
|
||||
|
||||
tmp@^0.0.31:
|
||||
version "0.0.31"
|
||||
resolved "https://registry.yarnpkg.com/tmp/-/tmp-0.0.31.tgz#8f38ab9438e17315e5dbd8b3657e8bfb277ae4a7"
|
||||
|
|
Loading…
Reference in New Issue
Block a user