2022-10-17 11:28:01 +00:00
|
|
|
import { IStateful } from '../base/app/types';
|
|
|
|
import { toState } from '../base/redux/functions';
|
|
|
|
import { getServerURL } from '../base/settings/functions.web';
|
2018-05-10 04:45:24 +00:00
|
|
|
|
2022-03-17 14:13:58 +00:00
|
|
|
export * from './functions.any';
|
|
|
|
|
2019-02-07 14:37:35 +00:00
|
|
|
/**
|
|
|
|
* Retrieves the default URL for the app. This can either come from a prop to
|
|
|
|
* the root App component or be configured in the settings.
|
|
|
|
*
|
|
|
|
* @param {Function|Object} stateful - The redux store or {@code getState}
|
|
|
|
* function.
|
|
|
|
* @returns {string} - Default URL for the app.
|
|
|
|
*/
|
2022-10-17 11:28:01 +00:00
|
|
|
export function getDefaultURL(stateful: IStateful) {
|
2019-02-07 14:37:35 +00:00
|
|
|
const state = toState(stateful);
|
|
|
|
const { href } = window.location;
|
|
|
|
|
|
|
|
if (href) {
|
|
|
|
return href;
|
|
|
|
}
|
|
|
|
|
|
|
|
return getServerURL(state);
|
|
|
|
}
|
|
|
|
|
2017-10-13 20:34:27 +00:00
|
|
|
/**
|
|
|
|
* Returns application name.
|
|
|
|
*
|
|
|
|
* @returns {string} The application name.
|
|
|
|
*/
|
|
|
|
export function getName() {
|
|
|
|
return interfaceConfig.APP_NAME;
|
|
|
|
}
|