2018-01-18 21:28:25 +00:00
|
|
|
// @flow
|
2017-12-14 17:02:32 +00:00
|
|
|
|
2018-01-08 11:00:31 +00:00
|
|
|
import { HIDE_APP_SETTINGS, SHOW_APP_SETTINGS } from './actionTypes';
|
2017-12-14 17:02:32 +00:00
|
|
|
|
|
|
|
/**
|
2018-02-02 14:48:43 +00:00
|
|
|
* Redux-signals the request to hide the app settings screen.
|
2018-01-18 21:28:25 +00:00
|
|
|
*
|
|
|
|
* @returns {{
|
|
|
|
* type: HIDE_APP_SETTINGS
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
export function hideAppSettings() {
|
2017-12-14 17:02:32 +00:00
|
|
|
return {
|
2018-01-18 21:28:25 +00:00
|
|
|
type: HIDE_APP_SETTINGS
|
2017-12-14 17:02:32 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2018-02-02 14:48:43 +00:00
|
|
|
* Redux-signals the request to open the app settings screen.
|
2018-01-18 21:28:25 +00:00
|
|
|
*
|
|
|
|
* @returns {{
|
|
|
|
* type: SHOW_APP_SETTINGS
|
|
|
|
* }}
|
|
|
|
*/
|
|
|
|
export function showAppSettings() {
|
2017-12-14 17:02:32 +00:00
|
|
|
return {
|
2018-01-18 21:28:25 +00:00
|
|
|
type: SHOW_APP_SETTINGS
|
2017-12-14 17:02:32 +00:00
|
|
|
};
|
|
|
|
}
|