Use the default integration manager for config options
This commit is contained in:
parent
5a15e78fe4
commit
018b4f5d41
3 changed files with 8 additions and 3 deletions
|
@ -427,7 +427,8 @@ async function _startCallApp(roomId, type) {
|
||||||
// URL, but this will at least allow the integration manager to not be hardcoded.
|
// URL, but this will at least allow the integration manager to not be hardcoded.
|
||||||
widgetUrl = SdkConfig.get().integrations_jitsi_widget_url + '?' + queryString;
|
widgetUrl = SdkConfig.get().integrations_jitsi_widget_url + '?' + queryString;
|
||||||
} else {
|
} else {
|
||||||
widgetUrl = SdkConfig.get().integrations_rest_url + '/widgets/jitsi.html?' + queryString;
|
const apiUrl = IntegrationManagers.sharedInstance().getPrimaryManager().apiUrl;
|
||||||
|
widgetUrl = apiUrl + '/widgets/jitsi.html?' + queryString;
|
||||||
}
|
}
|
||||||
|
|
||||||
const widgetData = { widgetSessionId };
|
const widgetData = { widgetSessionId };
|
||||||
|
|
|
@ -239,6 +239,7 @@ import dis from './dispatcher';
|
||||||
import WidgetUtils from './utils/WidgetUtils';
|
import WidgetUtils from './utils/WidgetUtils';
|
||||||
import RoomViewStore from './stores/RoomViewStore';
|
import RoomViewStore from './stores/RoomViewStore';
|
||||||
import { _t } from './languageHandler';
|
import { _t } from './languageHandler';
|
||||||
|
import {IntegrationManagers} from "./integrations/IntegrationManagers";
|
||||||
|
|
||||||
function sendResponse(event, res) {
|
function sendResponse(event, res) {
|
||||||
const data = JSON.parse(JSON.stringify(event.data));
|
const data = JSON.parse(JSON.stringify(event.data));
|
||||||
|
@ -548,7 +549,8 @@ const onMessage = function(event) {
|
||||||
// (See https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage)
|
// (See https://developer.mozilla.org/en-US/docs/Web/API/Window/postMessage)
|
||||||
let configUrl;
|
let configUrl;
|
||||||
try {
|
try {
|
||||||
configUrl = new URL(SdkConfig.get().integrations_ui_url);
|
// TODO: Support multiple integration managers
|
||||||
|
configUrl = new URL(IntegrationManagers.sharedInstance().getPrimaryManager().uiUrl);
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
// No integrations UI URL, ignore silently.
|
// No integrations UI URL, ignore silently.
|
||||||
return;
|
return;
|
||||||
|
|
|
@ -27,6 +27,7 @@ import WidgetEchoStore from '../stores/WidgetEchoStore';
|
||||||
const WIDGET_WAIT_TIME = 20000;
|
const WIDGET_WAIT_TIME = 20000;
|
||||||
import SettingsStore from "../settings/SettingsStore";
|
import SettingsStore from "../settings/SettingsStore";
|
||||||
import ActiveWidgetStore from "../stores/ActiveWidgetStore";
|
import ActiveWidgetStore from "../stores/ActiveWidgetStore";
|
||||||
|
import {IntegrationManagers} from "../integrations/IntegrationManagers";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Encodes a URI according to a set of template variables. Variables will be
|
* Encodes a URI according to a set of template variables. Variables will be
|
||||||
|
@ -102,7 +103,8 @@ export default class WidgetUtils {
|
||||||
|
|
||||||
let scalarUrls = SdkConfig.get().integrations_widgets_urls;
|
let scalarUrls = SdkConfig.get().integrations_widgets_urls;
|
||||||
if (!scalarUrls || scalarUrls.length === 0) {
|
if (!scalarUrls || scalarUrls.length === 0) {
|
||||||
scalarUrls = [SdkConfig.get().integrations_rest_url];
|
const defaultManager = IntegrationManagers.sharedInstance().getPrimaryManager();
|
||||||
|
if (defaultManager) scalarUrls = [defaultManager.apiUrl];
|
||||||
}
|
}
|
||||||
|
|
||||||
for (let i = 0; i < scalarUrls.length; i++) {
|
for (let i = 0; i < scalarUrls.length; i++) {
|
||||||
|
|
Loading…
Reference in a new issue