Files
Saúl Ibarra Corretgé 7cd39b7983 feat(ts) make tsc happy
2022-11-02 09:03:14 +01:00

20 lines
547 B
TypeScript

import { IStore } from '../app/types';
import getRoomName from '../base/config/getRoomName';
import { downloadJSON } from '../base/util/downloadJSON';
/**
* Create an action for saving the conference logs.
*
* @returns {Function}
*/
export function saveLogs() {
return (dispatch: IStore['dispatch'], getState: IStore['getState']) => {
const logs = getState()['features/base/connection'].connection?.getLogs();
const roomName = getRoomName() || '';
downloadJSON(logs ?? {}, `meetlog-${roomName}.json`);
};
}