jiti-meet/react/features/calendar-sync/actions.native.js

48 lines
1.4 KiB
JavaScript
Raw Normal View History

2018-09-04 07:29:48 +00:00
// @flow
2020-07-09 07:17:23 +00:00
import { generateRoomWithoutSeparator } from '@jitsi/js-utils/random';
2019-03-19 15:42:25 +00:00
import type { Dispatch } from 'redux';
import { getDefaultURL } from '../app/functions';
2018-09-04 07:29:48 +00:00
import { openDialog } from '../base/dialog';
import { refreshCalendar } from './actions';
import {
UpdateCalendarEventDialog
} from './components';
2020-05-20 10:57:03 +00:00
import { addLinkToCalendarEntry } from './functions.native';
2018-09-04 07:29:48 +00:00
export * from './actions.any';
/**
* Asks confirmation from the user to add a Jitsi link to the calendar event.
*
* @param {string} eventId - The event id.
* @returns {{
* type: OPEN_DIALOG,
* component: React.Component,
* componentProps: (Object | undefined)
* }}
*/
export function openUpdateCalendarEventDialog(eventId: string) {
return openDialog(UpdateCalendarEventDialog, { eventId });
}
/**
* Updates calendar event by generating new invite URL and editing the event
* adding some descriptive text and location.
*
* @param {string} eventId - The event id.
* @returns {Function}
*/
export function updateCalendarEvent(eventId: string) {
2019-03-19 15:42:25 +00:00
return (dispatch: Dispatch<any>, getState: Function) => {
2018-09-04 07:29:48 +00:00
const defaultUrl = getDefaultURL(getState);
const roomName = generateRoomWithoutSeparator();
addLinkToCalendarEntry(getState(), eventId, `${defaultUrl}/${roomName}`)
.finally(() => {
dispatch(refreshCalendar(false, false));
});
};
}