65 lines
2.1 KiB
TypeScript
65 lines
2.1 KiB
TypeScript
import React, {MutableRefObject} from 'react'
|
|
import {FlatList} from 'react-native'
|
|
import {IconProp} from '@fortawesome/fontawesome-svg-core'
|
|
import {Home} from './screens/Home'
|
|
import {Contacts} from './screens/Contacts'
|
|
import {Search} from './screens/Search'
|
|
import {Notifications} from './screens/Notifications'
|
|
import {NotFound} from './screens/NotFound'
|
|
import {PostThread} from './screens/PostThread'
|
|
import {PostLikedBy} from './screens/PostLikedBy'
|
|
import {PostRepostedBy} from './screens/PostRepostedBy'
|
|
import {Profile} from './screens/Profile'
|
|
import {ProfileFollowers} from './screens/ProfileFollowers'
|
|
import {ProfileFollows} from './screens/ProfileFollows'
|
|
import {Settings} from './screens/Settings'
|
|
|
|
export type ScreenParams = {
|
|
params: Record<string, any>
|
|
visible: boolean
|
|
scrollElRef?: MutableRefObject<FlatList<any> | undefined>
|
|
}
|
|
export type Route = [React.FC<ScreenParams>, IconProp, RegExp]
|
|
export type MatchResult = {
|
|
Com: React.FC<ScreenParams>
|
|
icon: IconProp
|
|
params: Record<string, any>
|
|
}
|
|
|
|
const r = (pattern: string) => new RegExp('^' + pattern + '([?]|$)', 'i')
|
|
export const routes: Route[] = [
|
|
[Home, 'house', r('/')],
|
|
[Contacts, ['far', 'circle-user'], r('/contacts')],
|
|
[Search, 'magnifying-glass', r('/search')],
|
|
[Notifications, 'bell', r('/notifications')],
|
|
[Settings, 'bell', r('/settings')],
|
|
[Profile, ['far', 'user'], r('/profile/(?<name>[^/]+)')],
|
|
[ProfileFollowers, 'users', r('/profile/(?<name>[^/]+)/followers')],
|
|
[ProfileFollows, 'users', r('/profile/(?<name>[^/]+)/follows')],
|
|
[
|
|
PostThread,
|
|
['far', 'message'],
|
|
r('/profile/(?<name>[^/]+)/post/(?<rkey>[^/]+)'),
|
|
],
|
|
[
|
|
PostLikedBy,
|
|
'heart',
|
|
r('/profile/(?<name>[^/]+)/post/(?<rkey>[^/]+)/liked-by'),
|
|
],
|
|
[
|
|
PostRepostedBy,
|
|
'retweet',
|
|
r('/profile/(?<name>[^/]+)/post/(?<rkey>[^/]+)/reposted-by'),
|
|
],
|
|
]
|
|
|
|
export function match(url: string): MatchResult {
|
|
for (const [Com, icon, pattern] of routes) {
|
|
const res = pattern.exec(url)
|
|
if (res) {
|
|
// TODO: query params
|
|
return {Com, icon, params: res.groups || {}}
|
|
}
|
|
}
|
|
return {Com: NotFound, icon: 'magnifying-glass', params: {}}
|
|
}
|