about summary refs log tree commit diff
path: root/src/platform/urls.tsx
blob: fd844d9331518725de3345b80f58e73854efc687 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
import {Linking} from 'react-native'
import {isNative, isWeb} from './detection'

export async function getInitialURL(): Promise<string | undefined> {
  if (isNative) {
    const url = await Linking.getInitialURL()
    if (url) {
      return url
    }
    return undefined
  } else {
    // @ts-ignore window exists -prf
    if (window.location.pathname !== '/') {
      return window.location.pathname
    }
    return undefined
  }
}

export function clearHash() {
  if (isWeb) {
    // @ts-ignore window exists -prf
    window.location.hash = ''
  }
}