@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
42 lines • 1.06 kB
JavaScript
import { Image, Linking, Platform } from 'react-native';
import { Logger } from '@sendbird/uikit-utils';
export default class SBUUtils {
static openSettings() {
Linking.openSettings().catch(() => {
if (Platform.OS === 'ios') Linking.openURL('App-Prefs:root');
});
}
static async openURL(url) {
try {
let targetUrl = url;
if (!url.startsWith('http://') && !url.startsWith('https://')) {
targetUrl = 'https://' + url;
}
await Linking.openURL(targetUrl);
} catch (e) {
Logger.warn('Cannot open url', e);
}
}
static getImageSize(uri) {
return new Promise((resolve, reject) => {
Image.getSize(uri, (width, height) => {
resolve({
width,
height
});
}, error => {
reject(error);
});
});
}
static async safeRun(callback) {
try {
await callback();
} catch (e) {}
}
static isExpo() {
const _g = global ?? window;
return typeof _g === 'object' && 'expo' in _g;
}
}
//# sourceMappingURL=SBUUtils.js.map