Implementing deep link (#41)
This commit is contained in:
committed by
GitHub
parent
f2115e23c7
commit
b4dbb55548
60
react-native/app/routes/component.js
vendored
60
react-native/app/routes/component.js
vendored
@@ -1,60 +0,0 @@
|
||||
import * as React from 'react';
|
||||
import {NavigationContainer} from '@react-navigation/native';
|
||||
import {ListPortals} from '../pages/list_portals/component';
|
||||
import {usePortal} from '../contexts/portals/hook';
|
||||
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||
import i18next from 'i18next';
|
||||
|
||||
import {createDrawerNavigator} from '@react-navigation/drawer';
|
||||
import SdkContainer from '../../bootstrap/sdk/container';
|
||||
import {initTranslation} from '../translations/index';
|
||||
|
||||
const Drawer = createDrawerNavigator();
|
||||
export const Routes = () => {
|
||||
initTranslation();
|
||||
|
||||
const {portals, setPortals} = usePortal();
|
||||
async function getPortals() {
|
||||
try {
|
||||
let items = await AsyncStorage.getAllKeys();
|
||||
if (items.includes('portal')) {
|
||||
let portalsStorage = await AsyncStorage.getItem('portal');
|
||||
portalsStorage = JSON.parse(portalsStorage);
|
||||
setPortals(portalsStorage);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log('error', e);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
React.useEffect(() => {
|
||||
getPortals();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<NavigationContainer>
|
||||
<Drawer.Navigator
|
||||
initialRouteName="Portals"
|
||||
screenOptions={{
|
||||
headerShown: false,
|
||||
}}>
|
||||
<Drawer.Screen
|
||||
name={i18next.t('mobileApp.portals.drawerNavigation.button.label')}
|
||||
component={ListPortals}
|
||||
/>
|
||||
{portals && portals.length
|
||||
? portals.map(item => {
|
||||
return (
|
||||
<Drawer.Screen
|
||||
key={item.name}
|
||||
name={item.name}
|
||||
children={() => <SdkContainer url={item.url} />}
|
||||
/>
|
||||
);
|
||||
})
|
||||
: null}
|
||||
</Drawer.Navigator>
|
||||
</NavigationContainer>
|
||||
);
|
||||
};
|
||||
133
react-native/app/routes/component.tsx
Normal file
133
react-native/app/routes/component.tsx
Normal file
@@ -0,0 +1,133 @@
|
||||
import * as React from 'react';
|
||||
import { NavigationContainer, useNavigation} from '@react-navigation/native';
|
||||
import {ListPortals} from '../pages/list_portals/component';
|
||||
import {usePortal} from '../contexts/portals/hook';
|
||||
import AsyncStorage from '@react-native-async-storage/async-storage';
|
||||
import i18next from 'i18next';
|
||||
|
||||
import {createDrawerNavigator} from '@react-navigation/drawer';
|
||||
import SdkContainer from '../../bootstrap/sdk/container';
|
||||
import {initTranslation} from '../translations/index';
|
||||
import { Alert, Linking } from 'react-native';
|
||||
import { createNewPortal } from '../pages/utils/createNewPortal';
|
||||
import { emitter } from '../emitter/emitter';
|
||||
import { IPortal } from '../pages/utils/types';
|
||||
|
||||
const DeepLink = ()=>{
|
||||
initTranslation();
|
||||
|
||||
const SCHEME = 'bigbluebutton://';
|
||||
const SCHEME_DEFAULT = 'https://'
|
||||
var NAME_PORTALS_DEEP_LINK = i18next.t('mobileApp.portals.namePortal.deepLink');
|
||||
|
||||
const navigate = useNavigation();
|
||||
const {portals, setPortals} = usePortal();
|
||||
|
||||
async function createTemporaryPortalFromDeepLink(link: string){
|
||||
const linkWithoutScheme = link.replace(SCHEME, '');
|
||||
|
||||
if(linkWithoutScheme === ''){
|
||||
navigate.navigate(i18next.t('mobileApp.portals.drawerNavigation.button.label'))
|
||||
return Alert.alert(i18next.t('mobileApp.portals.handleWithoutURL'))
|
||||
}
|
||||
const roomName = linkWithoutScheme.match(/^\w+/)
|
||||
if(roomName != 'bigbluebutton'){
|
||||
NAME_PORTALS_DEEP_LINK = roomName[0]
|
||||
}
|
||||
|
||||
const linkWhitoutSchemeAndName = linkWithoutScheme.replace(/^\w+[\/]/, '')
|
||||
const portalToAdd:IPortal = {
|
||||
name: NAME_PORTALS_DEEP_LINK,
|
||||
url: SCHEME_DEFAULT+linkWhitoutSchemeAndName,
|
||||
temporary: true
|
||||
}
|
||||
|
||||
// Adding LinkedPortal to AsyncStorage
|
||||
const newPortals = await createNewPortal(portalToAdd)
|
||||
// Adding to context
|
||||
setPortals(newPortals)
|
||||
// Navigation to portal
|
||||
navigate.navigate(NAME_PORTALS_DEEP_LINK)
|
||||
}
|
||||
|
||||
async function checkIfHaveTemporaryPortal(){
|
||||
const portalsFromStorage = await AsyncStorage.getItem('portal')
|
||||
const portalsParsed = JSON.parse(portalsFromStorage)
|
||||
const portalsWithoutTemporary = portalsParsed.filter((portal: IPortal)=>{
|
||||
if(portal.temporary == true) return false
|
||||
if(portal.name == NAME_PORTALS_DEEP_LINK) return false
|
||||
return portal
|
||||
})
|
||||
await AsyncStorage.setItem('portal', JSON.stringify(portalsWithoutTemporary))
|
||||
setPortals(portalsWithoutTemporary)
|
||||
|
||||
getLinkFromAppClosed() //To app running in backgrond then open throug deep link
|
||||
Linking.addEventListener('url', (url)=>{
|
||||
// if app is open when it's minimized (not running in background)
|
||||
createTemporaryPortalFromDeepLink(url.url)
|
||||
})
|
||||
|
||||
}
|
||||
|
||||
async function getLinkFromAppClosed(){
|
||||
const linkFromAppClosed = await Linking.getInitialURL()
|
||||
if(linkFromAppClosed === null) return
|
||||
createTemporaryPortalFromDeepLink(linkFromAppClosed)
|
||||
}
|
||||
|
||||
React.useEffect(() => {
|
||||
checkIfHaveTemporaryPortal()
|
||||
|
||||
}, []);
|
||||
return null
|
||||
}
|
||||
|
||||
const Drawer = createDrawerNavigator();
|
||||
export const Routes = () => {
|
||||
initTranslation();
|
||||
const {portals, setPortals} = usePortal();
|
||||
async function getPortals() {
|
||||
try {
|
||||
let items = await AsyncStorage.getAllKeys();
|
||||
if (items.includes('portal')) {
|
||||
let portalsStorage = await AsyncStorage.getItem('portal');
|
||||
portalsStorage = JSON.parse(portalsStorage);
|
||||
setPortals(portalsStorage);
|
||||
}
|
||||
} catch (e) {
|
||||
console.log('error', e);
|
||||
return null;
|
||||
}
|
||||
}
|
||||
|
||||
React.useEffect(() => {
|
||||
getPortals();
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<NavigationContainer>
|
||||
<DeepLink/>
|
||||
<Drawer.Navigator
|
||||
initialRouteName={i18next.t('mobileApp.portals.drawerNavigation.button.label')}
|
||||
screenOptions={{
|
||||
headerShown: false,
|
||||
}}>
|
||||
<Drawer.Screen
|
||||
name={i18next.t('mobileApp.portals.drawerNavigation.button.label')}
|
||||
component={ListPortals}
|
||||
/>
|
||||
{portals && portals.length
|
||||
? portals.map((item: { name: React.Key | null | undefined; url: string; }) => {
|
||||
return (
|
||||
<Drawer.Screen
|
||||
key={item.name}
|
||||
name={item.name}
|
||||
children={() => <SdkContainer url={item.url} />}
|
||||
/>
|
||||
);
|
||||
})
|
||||
: null}
|
||||
</Drawer.Navigator>
|
||||
</NavigationContainer>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user