* Enable exhaustive deps in the repo * Add tests for the new hooks * Update claude.md * Remove pre-commit overwrite
125 lines
3.9 KiB
TypeScript
125 lines
3.9 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import {withObservables} from '@nozbe/watermelondb/react';
|
|
import {useNavigation} from '@react-navigation/native';
|
|
import {applicationName} from 'expo-application';
|
|
import React, {useEffect, useMemo} from 'react';
|
|
import {defineMessages, useIntl} from 'react-intl';
|
|
import {StyleSheet, View} from 'react-native';
|
|
import {from as from$} from 'rxjs';
|
|
|
|
import DatabaseManager from '@database/manager';
|
|
import useDidMount from '@hooks/did_mount';
|
|
import {getActiveServerUrl} from '@queries/app/servers';
|
|
import ContentView from '@share/components/content_view';
|
|
import NoMemberships from '@share/components/error/no_memberships';
|
|
import NoServers from '@share/components/error/no_servers';
|
|
import CloseHeaderButton from '@share/components/header/close_header_button';
|
|
import PostButton from '@share/components/header/post_button';
|
|
import {hasChannels} from '@share/queries';
|
|
import {setShareExtensionState, useShareExtensionServerUrl} from '@share/state';
|
|
|
|
import type {SharedItem} from '@mattermost/rnshare';
|
|
|
|
export const errorScreenMessages = defineMessages({
|
|
label: {
|
|
id: 'share_extension.error_screen.label',
|
|
defaultMessage: 'An error ocurred',
|
|
},
|
|
description: {
|
|
id: 'share_extension.error_screen.description',
|
|
defaultMessage: 'There was an error when attempting to share the content to {applicationName}.',
|
|
},
|
|
reason: {
|
|
id: 'share_extension.error_screen.reason',
|
|
defaultMessage: 'Reason: {reason}',
|
|
},
|
|
});
|
|
|
|
type Props = {
|
|
hasChannelMemberships: boolean;
|
|
initialServerUrl: string;
|
|
files: SharedItem[];
|
|
linkPreviewUrl?: string;
|
|
message?: string;
|
|
theme: Theme;
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
},
|
|
});
|
|
|
|
const ShareScreen = ({hasChannelMemberships, initialServerUrl, files, linkPreviewUrl, message, theme}: Props) => {
|
|
const navigator = useNavigation();
|
|
const intl = useIntl();
|
|
const serverUrl = useShareExtensionServerUrl();
|
|
const hasServers = useMemo(() => Object.keys(DatabaseManager.serverDatabases).length > 0, []);
|
|
const serverDb = useMemo(() => {
|
|
try {
|
|
if (!serverUrl) {
|
|
return undefined;
|
|
}
|
|
|
|
const {database} = DatabaseManager.getServerDatabaseAndOperator(serverUrl);
|
|
return database;
|
|
} catch {
|
|
return undefined;
|
|
}
|
|
}, [serverUrl]);
|
|
|
|
useEffect(() => {
|
|
navigator.setOptions({
|
|
title: intl.formatMessage({
|
|
id: 'share_extension.share_screen.title',
|
|
defaultMessage: 'Share to {applicationName}',
|
|
},
|
|
{applicationName},
|
|
),
|
|
});
|
|
|
|
// We only care about changes in the locale
|
|
// navigator should not change in the lifetime of this component.
|
|
// eslint-disable-next-line react-hooks/exhaustive-deps
|
|
}, [intl.locale]);
|
|
|
|
useDidMount(() => {
|
|
setShareExtensionState({
|
|
files,
|
|
linkPreviewUrl,
|
|
message,
|
|
serverUrl: initialServerUrl,
|
|
});
|
|
|
|
navigator.setOptions({
|
|
headerLeft: () => (<CloseHeaderButton theme={theme}/>),
|
|
headerRight: () => (<PostButton theme={theme}/>),
|
|
});
|
|
});
|
|
|
|
return (
|
|
<View style={styles.container}>
|
|
{!hasServers &&
|
|
<NoServers theme={theme}/>
|
|
}
|
|
{hasServers && !hasChannelMemberships &&
|
|
<NoMemberships theme={theme}/>
|
|
}
|
|
{hasServers && hasChannelMemberships && Boolean(serverDb) &&
|
|
<ContentView
|
|
database={serverDb!}
|
|
theme={theme}
|
|
/>
|
|
}
|
|
</View>
|
|
);
|
|
};
|
|
|
|
const enhanced = withObservables([], () => ({
|
|
initialServerUrl: from$(getActiveServerUrl()),
|
|
hasChannelMemberships: from$(hasChannels()),
|
|
}));
|
|
|
|
export default enhanced(ShareScreen);
|