mirror of
https://github.com/mastodon/mastodon.git
synced 2025-02-08 07:55:06 +00:00
![Yamagishi Kazutoshi](/assets/img/avatar_default.png)
* Add semi to ESLint rules * Add padded-blocks to ESLint rules * Add comma-dangle to ESLint rules * add config/webpack and storyboard * add streaming/ * yarn test:lint -- --fix
19 lines
421 B
JavaScript
19 lines
421 B
JavaScript
import { MODAL_OPEN, MODAL_CLOSE } from '../actions/modal';
|
|
import Immutable from 'immutable';
|
|
|
|
const initialState = {
|
|
modalType: null,
|
|
modalProps: {},
|
|
};
|
|
|
|
export default function modal(state = initialState, action) {
|
|
switch(action.type) {
|
|
case MODAL_OPEN:
|
|
return { modalType: action.modalType, modalProps: action.modalProps };
|
|
case MODAL_CLOSE:
|
|
return initialState;
|
|
default:
|
|
return state;
|
|
}
|
|
};
|