2018-06-20 20:19:53 +00:00
|
|
|
// @flow
|
|
|
|
|
|
|
|
import Tabs from '@atlaskit/tabs';
|
|
|
|
import React, { Component } from 'react';
|
|
|
|
|
2018-10-18 08:28:08 +00:00
|
|
|
import { StatelessDialog } from '../../../dialog';
|
|
|
|
import { translate } from '../../../i18n';
|
2018-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
const logger = require('jitsi-meet-logger').getLogger(__filename);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} props of {@link DialogWithTabs}.
|
|
|
|
*/
|
|
|
|
export type Props = {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Function that closes the dialog.
|
|
|
|
*/
|
|
|
|
closeDialog: Function,
|
|
|
|
|
2018-11-24 11:50:09 +00:00
|
|
|
/**
|
|
|
|
* Css class name that will be added to the dialog.
|
|
|
|
*/
|
|
|
|
cssClassName: string,
|
|
|
|
|
2018-06-20 20:19:53 +00:00
|
|
|
/**
|
|
|
|
* Which settings tab should be initially displayed. If not defined then
|
|
|
|
* the first tab will be displayed.
|
|
|
|
*/
|
|
|
|
defaultTab: number,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disables dismissing the dialog when the blanket is clicked. Enabled
|
|
|
|
* by default.
|
|
|
|
*/
|
|
|
|
disableBlanketClickDismiss: boolean,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback invoked when the Save button has been pressed.
|
|
|
|
*/
|
|
|
|
onSubmit: Function,
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Invoked to obtain translated strings.
|
|
|
|
*/
|
|
|
|
t: Function,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Information about the tabs that will be rendered.
|
|
|
|
*/
|
2018-11-24 11:50:09 +00:00
|
|
|
tabs: Array<Object>,
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Key to use for showing a title.
|
|
|
|
*/
|
|
|
|
titleKey: string
|
2018-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* The type of the React {@code Component} state of {@link DialogWithTabs}.
|
|
|
|
*/
|
|
|
|
type State = {
|
|
|
|
|
2018-09-05 21:46:28 +00:00
|
|
|
/**
|
|
|
|
* The index of the tab that should be displayed.
|
|
|
|
*/
|
|
|
|
selectedTab: number,
|
|
|
|
|
2018-06-20 20:19:53 +00:00
|
|
|
/**
|
|
|
|
* An array of the states of the tabs.
|
|
|
|
*/
|
|
|
|
tabStates: Array<Object>
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A React {@code Component} for displaying a dialog with tabs.
|
|
|
|
*
|
|
|
|
* @extends Component
|
|
|
|
*/
|
|
|
|
class DialogWithTabs extends Component<Props, State> {
|
|
|
|
/**
|
|
|
|
* Initializes a new {@code DialogWithTabs} instance.
|
|
|
|
*
|
|
|
|
* @param {Object} props - The read-only React {@code Component} props with
|
|
|
|
* which the new instance is to be initialized.
|
|
|
|
*/
|
|
|
|
constructor(props: Props) {
|
|
|
|
super(props);
|
|
|
|
this.state = {
|
2018-09-05 21:46:28 +00:00
|
|
|
selectedTab: this.props.defaultTab || 0,
|
2018-06-20 20:19:53 +00:00
|
|
|
tabStates: this.props.tabs.map(tab => tab.props)
|
|
|
|
};
|
|
|
|
this._onSubmit = this._onSubmit.bind(this);
|
2018-09-05 21:46:28 +00:00
|
|
|
this._onTabSelected = this._onTabSelected.bind(this);
|
2018-06-20 20:19:53 +00:00
|
|
|
this._onTabStateChange = this._onTabStateChange.bind(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Implements React's {@link Component#render()}.
|
|
|
|
*
|
|
|
|
* @inheritdoc
|
|
|
|
* @returns {ReactElement}
|
|
|
|
*/
|
|
|
|
render() {
|
|
|
|
const onCancel = this.props.closeDialog;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<StatelessDialog
|
|
|
|
disableBlanketClickDismiss
|
|
|
|
= { this.props.disableBlanketClickDismiss }
|
|
|
|
onCancel = { onCancel }
|
|
|
|
onSubmit = { this._onSubmit }
|
2018-11-24 11:50:09 +00:00
|
|
|
titleKey = { this.props.titleKey } >
|
|
|
|
<div className = { this.props.cssClassName } >
|
2018-06-20 20:19:53 +00:00
|
|
|
{ this._renderTabs() }
|
|
|
|
</div>
|
|
|
|
</StatelessDialog>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2018-08-06 15:24:59 +00:00
|
|
|
/**
|
|
|
|
* Gets the props to pass into the tab component.
|
|
|
|
*
|
|
|
|
* @param {number} tabId - The index of the tab configuration within
|
|
|
|
* {@link this.state.tabStates}.
|
|
|
|
* @returns {Object}
|
|
|
|
*/
|
|
|
|
_getTabProps(tabId) {
|
|
|
|
const { tabs } = this.props;
|
|
|
|
const { tabStates } = this.state;
|
|
|
|
const tabConfiguration = tabs[tabId];
|
|
|
|
const currentTabState = tabStates[tabId];
|
|
|
|
|
|
|
|
if (tabConfiguration.propsUpdateFunction) {
|
|
|
|
return tabConfiguration.propsUpdateFunction(
|
|
|
|
currentTabState,
|
|
|
|
tabConfiguration.props);
|
|
|
|
}
|
|
|
|
|
|
|
|
return { ...currentTabState };
|
|
|
|
}
|
|
|
|
|
2018-09-05 21:46:28 +00:00
|
|
|
_onTabSelected: (Object, number) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Callback invoked when the desired tab to display should be changed.
|
|
|
|
*
|
|
|
|
* @param {Object} tab - The configuration passed into atlaskit tabs to
|
|
|
|
* describe how to display the selected tab.
|
|
|
|
* @param {number} tabIndex - The index of the tab within the array of
|
|
|
|
* displayed tabs.
|
|
|
|
* @private
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onTabSelected(tab, tabIndex) { // eslint-disable-line no-unused-vars
|
|
|
|
this.setState({ selectedTab: tabIndex });
|
|
|
|
}
|
|
|
|
|
2018-06-20 20:19:53 +00:00
|
|
|
/**
|
|
|
|
* Renders the tabs from the tab information passed on props.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_renderTabs() {
|
2018-09-05 21:46:28 +00:00
|
|
|
const { t, tabs } = this.props;
|
2018-06-20 20:19:53 +00:00
|
|
|
|
|
|
|
if (tabs.length === 1) {
|
|
|
|
return this._renderTab({
|
|
|
|
...tabs[0],
|
|
|
|
tabId: 0
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (tabs.length > 1) {
|
|
|
|
return (
|
|
|
|
<Tabs
|
2018-09-05 21:46:28 +00:00
|
|
|
onSelect = { this._onTabSelected }
|
|
|
|
selected = { this.state.selectedTab }
|
2018-06-20 20:19:53 +00:00
|
|
|
tabs = {
|
|
|
|
tabs.map(({ component, label, styles }, idx) => {
|
|
|
|
return {
|
|
|
|
content: this._renderTab({
|
|
|
|
component,
|
|
|
|
styles,
|
|
|
|
tabId: idx
|
|
|
|
}),
|
|
|
|
label: t(label)
|
|
|
|
};
|
|
|
|
})
|
|
|
|
} />);
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.warn('No settings tabs configured to display.');
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Renders a tab from the tab information passed as parameters.
|
|
|
|
*
|
|
|
|
* @param {Object} tabInfo - Information about the tab.
|
|
|
|
* @returns {Component} - The tab.
|
|
|
|
*/
|
|
|
|
_renderTab({ component, styles, tabId }) {
|
|
|
|
const { closeDialog } = this.props;
|
|
|
|
const TabComponent = component;
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className = { styles }>
|
|
|
|
<TabComponent
|
|
|
|
closeDialog = { closeDialog }
|
2018-08-06 15:24:59 +00:00
|
|
|
mountCallback = { this.props.tabs[tabId].onMount }
|
2018-06-20 20:19:53 +00:00
|
|
|
onTabStateChange
|
|
|
|
= { this._onTabStateChange }
|
|
|
|
tabId = { tabId }
|
2018-08-06 15:24:59 +00:00
|
|
|
{ ...this._getTabProps(tabId) } />
|
2018-06-20 20:19:53 +00:00
|
|
|
</div>);
|
|
|
|
}
|
|
|
|
|
|
|
|
_onTabStateChange: (number, Object) => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the state for a tab.
|
|
|
|
*
|
|
|
|
* @param {number} tabId - The id of the tab which state will be changed.
|
|
|
|
* @param {Object} state - The new state.
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onTabStateChange(tabId, state) {
|
|
|
|
const tabStates = [ ...this.state.tabStates ];
|
|
|
|
|
|
|
|
tabStates[tabId] = state;
|
|
|
|
this.setState({ tabStates });
|
|
|
|
}
|
|
|
|
|
|
|
|
_onSubmit: () => void;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Submits the information filled in the dialog.
|
|
|
|
*
|
|
|
|
* @returns {void}
|
|
|
|
*/
|
|
|
|
_onSubmit() {
|
|
|
|
const { onSubmit, tabs } = this.props;
|
|
|
|
|
|
|
|
tabs.forEach(({ submit }, idx) => {
|
Google & Microsoft calendar API integration (#3340)
* Refactor calendar-sync feature to be loaded on web.
For the web part it just adds new property to enable/disable calendar web integration, disabled by default.
* Initial implementation of retrieving google calendar events.
* Initial implementation of retrieving microsoft calendar events.
* Fixes comments.
* Rework to use the promise part of microsoft-graph-client api.
* Moves dispatching some actions, fixing comments.
* Makes sure we do not initializeClient google-api client multiple times.
* Do not try to login when fetching calendar entries.
The case where there is a calendar type google selected, but not logged in, trying to login on loading welcome page will show a warning that it tried to open a popup, which was denied by browser.
* Updates profile display data on sign in.
* Propagate google-api state to calendar-sync only if we use google cal.
* Adds sign out action.
* Clears the event listener when the popup closes.
* Clears calendarIntegrationInstance on signOut.
* WIP: UI for calendar settings, refactor auth flows
* Clean up some unused constants, functions and exports.
* break circular dependency of function and constant
* Exports only isCalendarEnabled from functions.
* Checks isSignedIn when doing fetchCalendarEntries on web.
* address comments
List microsoftApiApplicationClientID in undocument config.
remove unused SET_CALENDAR_TYPE action
use helper for calendar enabled in bootstrap
reorder actions
reorder imports
change order of signin -> set type -> update profile
add logging for signout error
reword setting dialog desc to avoid redundancy
add jsdoc to microsoft button props
reorder calendar constants
move default state to reducer (not reused anywhere)
update comment about calendar-sync due to removal of getCalendarState
update comment for getCalendarIntegration
remove vague comment
alpha order reducer, return default state on reset
alpha order persistence registry
remove unnecessary getType from apis
update comments in microsoftCalendar
alpha order google-api exports, use api.get in loadGoogleAPI
set jsdoc for google signin props
alpha order googleapi methods
fix calendartab docs
* Moves fetching calendar from APP_WILL_MOUNT to SET_CONFIG.
The web part needs configuration in order to refresh tokens (Microsoft).
* Fixes storing token expire time and refreshing tokens in Microsoft impl.
* Address comments
updateProfile changed to getCurrentEmail
rename result to results
stop storing integration in redux, store if ready for use
use existing helpers to parse redirect url
* update jsdocs, get google app id from redux
* clear integration instead of actual sign out
2018-08-15 20:11:54 +00:00
|
|
|
submit && submit(this.state.tabStates[idx]);
|
2018-06-20 20:19:53 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
onSubmit();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default translate(DialogWithTabs);
|