152 lines
4.8 KiB
JavaScript
152 lines
4.8 KiB
JavaScript
/**
|
|
* This function returns a string combining the current Medium and OS
|
|
* that represents the current Context where the app is running.
|
|
*
|
|
* @returns {String} "Medium-OS", for example "Browser-Android"
|
|
*/
|
|
export const currentContext = () => `${currentMedium()}-${currentOS()}`;
|
|
|
|
/**
|
|
* This function returns a string that represents the current Medium where
|
|
* the app is currently running. The currently supported mediums are Browser,
|
|
* and ForemWebView.
|
|
*
|
|
* @returns {String} One of the supported Mediums
|
|
*/
|
|
export const currentMedium = () =>
|
|
/ForemWebView/i.test(navigator.userAgent) ? 'ForemWebView' : 'Browser';
|
|
|
|
/**
|
|
* This function returns a string that represents the current OS where the app
|
|
* is currently running. The currently supported Operating Systems are
|
|
* Windows, Linux, macOS, Android and iOS.
|
|
*
|
|
* @returns {String} One of the supported Operating Systems or 'Unsupported'
|
|
*/
|
|
export const currentOS = () => {
|
|
const macosPlatforms = ['Macintosh', 'MacIntel', 'MacPPC', 'Mac68K'];
|
|
const windowsPlatforms = ['Win32', 'Win64', 'Windows', 'WinCE'];
|
|
const iosPlatforms = ['iPhone', 'iPad', 'iPod'];
|
|
|
|
if (macosPlatforms.includes(window.navigator.platform)) {
|
|
return 'macOS';
|
|
} else if (iosPlatforms.includes(window.navigator.platform)) {
|
|
return 'iOS';
|
|
} else if (windowsPlatforms.includes(window.navigator.platform)) {
|
|
return 'Windows';
|
|
} else if (/Android/i.test(window.navigator.userAgent)) {
|
|
return 'Android';
|
|
} else if (/Linux/i.test(window.navigator.platform)) {
|
|
return 'Linux';
|
|
}
|
|
|
|
return 'Unsupported';
|
|
};
|
|
|
|
/**
|
|
* Checks the device for iOS (webkit) native feature support
|
|
*
|
|
* @function isNativeIOS
|
|
* @param {string} namespace Specifies support for a specific feature
|
|
* (i.e. video, podcast, etc)
|
|
* @returns {boolean} true if current environment support native features
|
|
*/
|
|
export const isNativeIOS = (namespace = null) => {
|
|
const nativeCheck =
|
|
/DEV-Native-ios|ForemWebView/i.test(navigator.userAgent) &&
|
|
window &&
|
|
window.webkit &&
|
|
window.webkit.messageHandlers;
|
|
|
|
let namespaceCheck = true;
|
|
if (nativeCheck && namespace) {
|
|
namespaceCheck = window.webkit.messageHandlers[namespace] != undefined;
|
|
}
|
|
|
|
return nativeCheck && namespaceCheck;
|
|
};
|
|
|
|
/**
|
|
* Checks the device for Android native feature support
|
|
*
|
|
* @function isNativeAndroid
|
|
* @param {string} namespace Specifies support for a specific feature
|
|
* (i.e. videoMessage, podcastMessage, etc)
|
|
* @returns {boolean} true if current environment support native features
|
|
*/
|
|
export const isNativeAndroid = (namespace = null) => {
|
|
const nativeCheck =
|
|
/DEV-Native-android|ForemWebView/i.test(navigator.userAgent) &&
|
|
typeof AndroidBridge !== 'undefined';
|
|
|
|
let namespaceCheck = true;
|
|
if (nativeCheck && namespace) {
|
|
namespaceCheck = AndroidBridge[namespace] != undefined;
|
|
}
|
|
|
|
return nativeCheck && namespaceCheck;
|
|
};
|
|
|
|
/**
|
|
* This function copies text to clipboard taking in consideration all
|
|
* supported platforms.
|
|
*
|
|
* @param {string} text to be copied to the clipboard
|
|
*
|
|
* @returns {Promise} Resolves when successful in copying to clipboard
|
|
*/
|
|
export const copyToClipboard = (text) => {
|
|
return new Promise((resolve, reject) => {
|
|
if (isNativeAndroid('copyToClipboard')) {
|
|
AndroidBridge.copyToClipboard(text);
|
|
resolve();
|
|
} else if (navigator.clipboard != null) {
|
|
navigator.clipboard
|
|
.writeText(text)
|
|
.then(() => {
|
|
resolve();
|
|
})
|
|
.catch((e) => {
|
|
reject(e);
|
|
});
|
|
} else {
|
|
reject('Unable to copy the text. Try reloading the page');
|
|
}
|
|
});
|
|
};
|
|
|
|
/**
|
|
* Returns true if the supplied KeyboardEvent includes the OS-specific
|
|
* modifier key. For example, the Cmd key on Apple platforms or the Ctrl key
|
|
* on others.
|
|
*
|
|
* @param {KeyboardEvent} The event to check for the OS-specific modifier key
|
|
*
|
|
* @returns {Boolean} true if the event was fired with the OS-specific
|
|
* modifier key, false otherwise. Also returns false if
|
|
* the event is not a KeyboardEvent.
|
|
*/
|
|
export const hasOSSpecificModifier = (event) => {
|
|
if (!(event instanceof KeyboardEvent)) {
|
|
return false;
|
|
}
|
|
|
|
if (navigator.userAgent.indexOf('Mac OS X') >= 0) {
|
|
return event.metaKey;
|
|
}
|
|
return event.ctrlKey;
|
|
};
|
|
|
|
/**
|
|
* Returns a string representation of the expected modifier key for the current OS.
|
|
* This allows us to display correct shortcut key hints to users in the UI, and set up correct shortcut key bindings.
|
|
*
|
|
* @returns {string} either 'cmd' if on macOS, or 'ctrl' otherwise
|
|
*/
|
|
export const getOSKeyboardModifierKeyString = () =>
|
|
currentOS() === 'macOS' ? 'cmd' : 'ctrl';
|
|
|
|
/**
|
|
* @returns {string} A string representing the locale as per the user's browser settings
|
|
*/
|
|
export const getCurrentLocale = () => navigator.language;
|