jiti-meet/react/features/toolbox/actions.native.js

254 lines
5.8 KiB
JavaScript
Raw Normal View History

2017-02-16 23:02:40 +00:00
/* @flow */
import type { Dispatch } from 'redux-thunk';
import {
2017-04-01 05:52:40 +00:00
CLEAR_TOOLBOX_TIMEOUT,
2017-02-16 23:02:40 +00:00
SET_SUBJECT,
SET_SUBJECT_SLIDE_IN,
SET_TOOLBAR_BUTTON,
SET_TOOLBAR_HOVERED,
SET_TOOLBOX_ALWAYS_VISIBLE,
SET_TOOLBOX_ENABLED,
2017-04-01 05:52:40 +00:00
SET_TOOLBOX_TIMEOUT,
SET_TOOLBOX_TIMEOUT_MS,
SET_TOOLBOX_VISIBLE
2017-02-16 23:02:40 +00:00
} from './actionTypes';
2017-05-26 21:28:16 +00:00
/**
* FIXME: We should make sure all common functions for native and web are
2017-05-26 21:28:16 +00:00
* merged in a global functions file.
2017-05-26 21:28:16 +00:00
*/
2017-05-26 21:28:16 +00:00
import { getButton } from './functions.native';
2017-05-26 21:28:16 +00:00
2017-02-16 23:02:40 +00:00
/**
* Event handler for local raise hand changed event.
*
* @param {boolean} handRaised - Flag showing whether hand is raised.
* @returns {Function}
*/
export function changeLocalRaiseHand(handRaised: boolean): Function {
return (dispatch: Dispatch<*>, getState: Function) => {
const buttonName = 'raisehand';
2017-05-26 21:28:16 +00:00
const button = getButton(buttonName, getState());
2017-02-16 23:02:40 +00:00
button.toggled = handRaised;
dispatch(setToolbarButton(buttonName, button));
};
}
/**
2017-04-01 05:52:40 +00:00
* Signals that toolbox timeout should be cleared.
2017-02-16 23:02:40 +00:00
*
* @returns {{
2017-04-01 05:52:40 +00:00
* type: CLEAR_TOOLBOX_TIMEOUT
2017-02-16 23:02:40 +00:00
* }}
*/
2017-04-01 05:52:40 +00:00
export function clearToolboxTimeout(): Object {
2017-02-16 23:02:40 +00:00
return {
2017-04-01 05:52:40 +00:00
type: CLEAR_TOOLBOX_TIMEOUT
2017-02-16 23:02:40 +00:00
};
}
/**
2017-04-01 05:52:40 +00:00
* Signals that value of conference subject should be changed.
2017-02-16 23:02:40 +00:00
*
2017-04-01 05:52:40 +00:00
* @param {string} subject - Conference subject string.
* @returns {Object}
2017-02-16 23:02:40 +00:00
*/
2017-04-01 05:52:40 +00:00
export function setSubject(subject: string): Object {
2017-02-16 23:02:40 +00:00
return {
type: SET_SUBJECT,
subject
};
}
/**
2017-04-01 05:52:40 +00:00
* Signals that toolbox subject slide in value should be changed.
2017-02-16 23:02:40 +00:00
*
2017-04-01 05:52:40 +00:00
* @param {boolean} subjectSlideIn - True if the subject is shown; otherwise,
* false.
2017-02-16 23:02:40 +00:00
* @returns {{
* type: SET_SUBJECT_SLIDE_IN,
* subjectSlideIn: boolean
* }}
*/
export function setSubjectSlideIn(subjectSlideIn: boolean): Object {
return {
type: SET_SUBJECT_SLIDE_IN,
subjectSlideIn
};
}
/**
* Signals that value of the button specified by key should be changed.
*
* @param {string} buttonName - Button key.
* @param {Object} button - Button object.
* @returns {{
* type: SET_TOOLBAR_BUTTON,
2017-04-01 05:52:40 +00:00
* button: Object,
* buttonName: string
2017-02-16 23:02:40 +00:00
* }}
*/
export function setToolbarButton(buttonName: string, button: Object): Object {
return {
type: SET_TOOLBAR_BUTTON,
2017-04-01 05:52:40 +00:00
button,
buttonName
2017-02-16 23:02:40 +00:00
};
}
/**
* Signals that toolbar is hovered value should be changed.
*
* @param {boolean} hovered - Flag showing whether toolbar is hovered.
* @returns {{
* type: SET_TOOLBAR_HOVERED,
* hovered: boolean
* }}
*/
export function setToolbarHovered(hovered: boolean): Object {
return {
type: SET_TOOLBAR_HOVERED,
hovered
};
}
/**
* Signals that always visible toolbars value should be changed.
*
* @param {boolean} alwaysVisible - Value to be set in redux store.
* @returns {{
* type: SET_TOOLBOX_ALWAYS_VISIBLE,
* alwaysVisible: boolean
* }}
*/
export function setToolboxAlwaysVisible(alwaysVisible: boolean): Object {
return {
type: SET_TOOLBOX_ALWAYS_VISIBLE,
alwaysVisible
};
}
2017-04-01 05:52:40 +00:00
/* eslint-disable flowtype/space-before-type-colon */
/**
* Enables/disables the toolbox.
*
* @param {boolean} enabled - True to enable the toolbox or false to disable it.
* @returns {{
* type: SET_TOOLBOX_ENABLED,
* enabled: boolean
* }}
*/
export function setToolboxEnabled(enabled: boolean): Object {
return {
type: SET_TOOLBOX_ENABLED,
enabled
};
}
2017-02-16 23:02:40 +00:00
/**
* Dispatches an action which sets new timeout and clears the previous one.
*
* @param {Function} handler - Function to be invoked after the timeout.
2017-04-01 05:52:40 +00:00
* @param {number} timeoutMS - Delay.
2017-02-16 23:02:40 +00:00
* @returns {{
2017-04-01 05:52:40 +00:00
* type: SET_TOOLBOX_TIMEOUT,
* handler: Function,
* timeoutMS: number
2017-02-16 23:02:40 +00:00
* }}
*/
2017-04-01 05:52:40 +00:00
export function setToolboxTimeout(handler: Function, timeoutMS: number)
: Object {
2017-02-16 23:02:40 +00:00
return {
2017-04-01 05:52:40 +00:00
type: SET_TOOLBOX_TIMEOUT,
2017-02-16 23:02:40 +00:00
handler,
2017-04-01 05:52:40 +00:00
timeoutMS
2017-02-16 23:02:40 +00:00
};
}
2017-04-01 05:52:40 +00:00
/* eslint-enable flowtype/space-before-type-colon */
2017-02-16 23:02:40 +00:00
/**
2017-04-01 05:52:40 +00:00
* Dispatches an action which sets new toolbox timeout value.
2017-02-16 23:02:40 +00:00
*
2017-04-01 05:52:40 +00:00
* @param {number} timeoutMS - Delay.
2017-02-16 23:02:40 +00:00
* @returns {{
2017-04-01 05:52:40 +00:00
* type: SET_TOOLBOX_TIMEOUT_MS,
* timeoutMS: number
2017-02-16 23:02:40 +00:00
* }}
*/
2017-04-01 05:52:40 +00:00
export function setToolboxTimeoutMS(timeoutMS: number): Object {
2017-02-16 23:02:40 +00:00
return {
2017-04-01 05:52:40 +00:00
type: SET_TOOLBOX_TIMEOUT_MS,
timeoutMS
2017-02-16 23:02:40 +00:00
};
}
/**
2017-04-01 05:52:40 +00:00
* Shows/hides the toolbox.
2017-02-16 23:02:40 +00:00
*
2017-04-01 05:52:40 +00:00
* @param {boolean} visible - True to show the toolbox or false to hide it.
2017-02-16 23:02:40 +00:00
* @returns {{
2017-04-01 05:52:40 +00:00
* type: SET_TOOLBOX_VISIBLE,
2017-02-16 23:02:40 +00:00
* visible: boolean
* }}
*/
2017-04-01 05:52:40 +00:00
export function setToolboxVisible(visible: boolean): Object {
2017-02-16 23:02:40 +00:00
return {
2017-04-01 05:52:40 +00:00
type: SET_TOOLBOX_VISIBLE,
2017-02-16 23:02:40 +00:00
visible
};
}
/**
* Shows etherpad button if it's not shown.
*
* @returns {Function}
*/
export function showEtherpadButton(): Function {
return (dispatch: Dispatch<*>) => {
dispatch(setToolbarButton('etherpad', {
hidden: false
}));
};
}
/**
* Event handler for full screen toggled event.
*
* @param {boolean} isFullScreen - Flag showing whether app in full
* screen mode.
* @returns {Function}
*/
export function toggleFullScreen(isFullScreen: boolean): Function {
return (dispatch: Dispatch<*>, getState: Function) => {
const buttonName = 'fullscreen';
2017-05-26 21:28:16 +00:00
const button = getButton(buttonName, getState());
2017-02-16 23:02:40 +00:00
if (button) {
button.toggled = isFullScreen;
dispatch(setToolbarButton(buttonName, button));
}
2017-02-16 23:02:40 +00:00
};
}
/**
* Sets negation of button's toggle property.
*
* @param {string} buttonName - Button key.
* @returns {Function}
*/
export function toggleToolbarButton(buttonName: string): Function {
return (dispatch: Dispatch, getState: Function) => {
2017-05-26 21:28:16 +00:00
const button = getButton(buttonName, getState());
2017-02-16 23:02:40 +00:00
dispatch(setToolbarButton(buttonName, {
toggled: !button.toggled
}));
};
}