mattermost-mobile/app/actions/views/options_modal.js
2017-04-10 11:33:35 -03:00

30 lines
752 B
JavaScript

// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.
import {ViewTypes} from 'app/constants';
export function openModal(title, options) {
return async (dispatch, getState) => {
dispatch({
type: ViewTypes.OPTIONS_MODAL_CHANGED,
data: {
title,
options,
visible: true
}
}, getState);
};
}
export function closeModal() {
return async (dispatch, getState) => {
dispatch({
type: ViewTypes.OPTIONS_MODAL_CHANGED,
data: {
title: '',
options: [],
visible: false
}
}, getState);
};
}