64 lines
1.6 KiB
TypeScript
64 lines
1.6 KiB
TypeScript
import { Linking } from 'react-native';
|
|
import * as WebBrowser from 'expo-web-browser';
|
|
import parse from 'url-parse';
|
|
|
|
import UserPreferences from '../lib/userPreferences';
|
|
import { themes } from '../constants/colors';
|
|
|
|
export const DEFAULT_BROWSER_KEY = 'DEFAULT_BROWSER_KEY';
|
|
|
|
const scheme = {
|
|
chrome: 'googlechrome:',
|
|
chromeSecure: 'googlechromes:',
|
|
firefox: 'firefox:',
|
|
brave: 'brave:'
|
|
};
|
|
|
|
const appSchemeURL = (url: string, browser: string): string => {
|
|
let schemeUrl = url;
|
|
const parsedUrl = parse(url, true);
|
|
const { protocol } = parsedUrl;
|
|
const isSecure = ['https:'].includes(protocol);
|
|
|
|
if (browser === 'googlechrome') {
|
|
if (!isSecure) {
|
|
schemeUrl = url.replace(protocol, scheme.chrome);
|
|
} else {
|
|
schemeUrl = url.replace(protocol, scheme.chromeSecure);
|
|
}
|
|
} else if (browser === 'firefox') {
|
|
schemeUrl = `${scheme.firefox}//open-url?url=${url}`;
|
|
} else if (browser === 'brave') {
|
|
schemeUrl = `${scheme.brave}//open-url?url=${url}`;
|
|
}
|
|
|
|
return schemeUrl;
|
|
};
|
|
|
|
const openLink = async (url: string, theme = 'light'): Promise<void> => {
|
|
try {
|
|
const browser = UserPreferences.getString(DEFAULT_BROWSER_KEY);
|
|
|
|
if (browser === 'inApp') {
|
|
await WebBrowser.openBrowserAsync(url, {
|
|
toolbarColor: themes[theme].headerBackground,
|
|
controlsColor: themes[theme].headerTintColor,
|
|
// https://github.com/expo/expo/pull/4923
|
|
enableBarCollapsing: true,
|
|
showTitle: true
|
|
});
|
|
} else {
|
|
const schemeUrl = appSchemeURL(url, browser!.replace(':', ''));
|
|
await Linking.openURL(schemeUrl);
|
|
}
|
|
} catch {
|
|
try {
|
|
await Linking.openURL(url);
|
|
} catch {
|
|
// do nothing
|
|
}
|
|
}
|
|
};
|
|
|
|
export default openLink;
|