import React from 'react' import {TouchableOpacity, View} from 'react-native' import {isAndroid} from '#/platform/detection' import {atoms as a, useTheme} from '#/alf' import {Globe_Stroke2_Corner0_Rounded as Globe} from '#/components/icons/Globe' import {Pencil_Stroke2_Corner0_Rounded as Pencil} from '#/components/icons/Pencil' import * as TextField from './TextField' import {useDialogControl} from '../Dialog' import {Text} from '../Typography' import {ServerInputDialog} from '#/view/com/auth/server-input' import {toNiceDomain} from '#/lib/strings/url-helpers' export function HostingProvider({ serviceUrl, onSelectServiceUrl, onOpenDialog, }: { serviceUrl: string onSelectServiceUrl: (provider: string) => void onOpenDialog?: () => void }) { const serverInputControl = useDialogControl() const t = useTheme() const onPressSelectService = React.useCallback(() => { serverInputControl.open() if (onOpenDialog) { onOpenDialog() } }, [onOpenDialog, serverInputControl]) return ( <> {toNiceDomain(serviceUrl)} ) }