File size: 875 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
/*
* Home Actions
*
* Actions change things in your application
* Since this boilerplate uses a uni-directional data flow, specifically redux,
* we have these actions which are the only way your application interacts with
* your application state. This guarantees that your state is up to date and nobody
* messes it up weirdly somewhere.
*
* To add a new Action:
* 1) Import your constant
* 2) Add a function like this:
* export function yourAction(var) {
* return { type: YOUR_ACTION_CONSTANT, var: var }
* }
*/
import { CHANGE_USERNAME } from './constants';
/**
* Changes the input field of the form
*
* @param {string} username The new text of the input field
*
* @return {object} An action object with a type of CHANGE_USERNAME
*/
export function changeUsername(username) {
return {
type: CHANGE_USERNAME,
username,
};
}
|