You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

57 lines
1.1 KiB

import {
IS_SENDING_PSHIFT_REQUEST,
SET_PSHIFT_REQUEST_SUCCESS,
SET_PSHIFT_REQUEST_ERROR,
CLEAR_PSHIFT_REQUEST_ERROR,
CLEAR_PSHIFT_REQUEST_SUCCESS,
SET_FORM_SHIFT_CHART,
SET_CLEAR_PSHIFT_STATE
} from "../../constants/pShift.constants";
import { parseError } from "../common.actions";
export function isSendingPShiftRequest(sendingRequest) {
return {
type: IS_SENDING_PSHIFT_REQUEST,
data: sendingRequest
};
}
export function setPShiftRequestSuccess(response) {
return {
type: SET_PSHIFT_REQUEST_SUCCESS,
data: response.detail || response
};
}
export function setPShiftRequestError(exception) {
let error = parseError(exception);
return {
type: SET_PSHIFT_REQUEST_ERROR,
data: error
};
}
export function clearPShiftRequestError() {
return {
type: CLEAR_PSHIFT_REQUEST_ERROR
};
}
export function clearPShiftRequestSuccess() {
return {
type: CLEAR_PSHIFT_REQUEST_SUCCESS
};
}
export function setFormShiftChart(chart) {
return {
type: SET_FORM_SHIFT_CHART,
data: chart
};
}
export function setClearPShiftState() {
return {
type: SET_CLEAR_PSHIFT_STATE
};
}