* feat: ai rewrite * feat: allow crating content apart from editing it * feat: feature parity with webapp * feat: feature parity with webapp * chore: fixed padding * map ux to webapp * refactored ai rewrite logic to separate package * chore: tests and lint * Update app/products/ai/rewrite/screens/options/options.tsx Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * rewrite post editor animation * i18n * ui feedback, centered icon and less top padding * chore: lint * Consolidate @ai product into @agents Move all rewrite functionality from app/products/ai/ into app/products/agents/ to unify under a single namespace. - Add rewrite types, store, hooks, components, and screens to agents - Merge AI client methods into agents client - Update screen constants (AI_* -> AGENTS_*) - Update all consumer imports - Remove AI state from EphemeralStore - Remove @ai path alias from config - Delete app/products/ai/ directory * refactor: load screens from product package * refactor: move detection logic to the agents pacakge * refactor: remove "backwards compatibility" * refactor: move hooks to proper package * refactor: styles * refactor: remove unneedd position attribute * refactor: remove unneeded cancel animation calls * refactor: "backwards compat" * refactor: optimize renderContent with useCallback for performance * refactor: rename variable to avoid confusion * refactor: update handleRewrite to use async/await for better error handling * refactor: simplify handleRewrite by always dismissing keyboard * refactor: use hook, always all keyboard.dismiss * chore: enhance AgentSelector component with FlatList support * feat: add rewriteMessage function for AI message rewriting and integrate it into useRewrite hook * refactor: simplify message length calculation in useHandleSendMessage hook * refactor: consolidate agent screen constants and integrate with existing screens * fix: update dependency array in useMemo for isUnrevealedPost to include post expiration metadata * refactor: remove unused variable to clean up Typing component * refactor: simplify logic for atDisabled and slashDisabled flags in QuickActions component * feat: add AIRewriteAction component for AI message rewriting functionality * revert: thread.ts changes manually * refactor: integrate useSafeAreaInsets * refactor: cleanup unused methods * chore: add comment to clarify casting * refactor: use_agents * chore: lint and test * fix: trim --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
173 lines
5.2 KiB
TypeScript
173 lines
5.2 KiB
TypeScript
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
import React, {useCallback, useEffect, useRef, useState} from 'react';
|
|
import {DeviceEventEmitter} from 'react-native';
|
|
|
|
import FormattedText from '@components/formatted_text';
|
|
import StatusIndicator from '@components/post_draft/status_indicator';
|
|
import {Events} from '@constants';
|
|
import {useTheme} from '@context/theme';
|
|
import {changeOpacity, makeStyleSheetFromTheme} from '@utils/theme';
|
|
import {typography} from '@utils/typography';
|
|
|
|
type Props = {
|
|
channelId: string;
|
|
rootId: string;
|
|
}
|
|
|
|
const getStyleSheet = makeStyleSheetFromTheme((theme: Theme) => {
|
|
return {
|
|
typing: {
|
|
color: changeOpacity(theme.centerChannelColor, 0.7),
|
|
paddingHorizontal: 10,
|
|
...typography('Body', 75),
|
|
},
|
|
};
|
|
});
|
|
|
|
function Typing({
|
|
channelId,
|
|
rootId,
|
|
}: Props) {
|
|
const typing = useRef<Array<{id: string; now: number; username: string}>>([]);
|
|
const timeoutToDisappear = useRef<NodeJS.Timeout>();
|
|
const mounted = useRef(false);
|
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
|
const [refresh, setRefresh] = useState(0); // Used to trigger re-renders when typing state changes
|
|
|
|
const theme = useTheme();
|
|
const style = getStyleSheet(theme);
|
|
|
|
const onUserStartTyping = useCallback((msg: any) => {
|
|
if (channelId !== msg.channelId) {
|
|
return;
|
|
}
|
|
|
|
const msgRootId = msg.parentId || msg.rootId || '';
|
|
if (rootId !== msgRootId) {
|
|
return;
|
|
}
|
|
|
|
typing.current = typing.current.filter(({id}) => id !== msg.userId);
|
|
typing.current.push({id: msg.userId, now: msg.now, username: msg.username});
|
|
if (timeoutToDisappear.current) {
|
|
clearTimeout(timeoutToDisappear.current);
|
|
timeoutToDisappear.current = undefined;
|
|
}
|
|
if (mounted.current) {
|
|
setRefresh(Date.now());
|
|
}
|
|
}, [channelId, rootId]);
|
|
|
|
const onUserStopTyping = useCallback((msg: any) => {
|
|
if (channelId !== msg.channelId) {
|
|
return;
|
|
}
|
|
|
|
const msgRootId = msg.parentId || msg.rootId || '';
|
|
if (rootId !== msgRootId) {
|
|
return;
|
|
}
|
|
|
|
typing.current = typing.current.filter(({id, now}) => id !== msg.userId && now !== msg.now);
|
|
|
|
if (timeoutToDisappear.current) {
|
|
clearTimeout(timeoutToDisappear.current);
|
|
timeoutToDisappear.current = undefined;
|
|
}
|
|
|
|
if (typing.current.length === 0) {
|
|
timeoutToDisappear.current = setTimeout(() => {
|
|
if (mounted.current) {
|
|
setRefresh(Date.now());
|
|
}
|
|
timeoutToDisappear.current = undefined;
|
|
}, 500);
|
|
} else if (mounted.current) {
|
|
setRefresh(Date.now());
|
|
}
|
|
}, [channelId, rootId]);
|
|
|
|
useEffect(() => {
|
|
mounted.current = true;
|
|
return () => {
|
|
mounted.current = false;
|
|
};
|
|
}, []);
|
|
|
|
useEffect(() => {
|
|
const listener = DeviceEventEmitter.addListener(Events.USER_TYPING, onUserStartTyping);
|
|
return () => {
|
|
listener.remove();
|
|
};
|
|
}, [onUserStartTyping]);
|
|
|
|
useEffect(() => {
|
|
const listener = DeviceEventEmitter.addListener(Events.USER_STOP_TYPING, onUserStopTyping);
|
|
return () => {
|
|
listener.remove();
|
|
};
|
|
}, [onUserStopTyping]);
|
|
|
|
useEffect(() => {
|
|
typing.current = [];
|
|
if (timeoutToDisappear.current) {
|
|
clearTimeout(timeoutToDisappear.current);
|
|
timeoutToDisappear.current = undefined;
|
|
}
|
|
}, [channelId, rootId]);
|
|
|
|
const renderTyping = () => {
|
|
const nextTyping = typing.current.map(({username}) => username);
|
|
|
|
// Max three names
|
|
nextTyping.splice(3);
|
|
|
|
const numUsers = nextTyping.length;
|
|
|
|
switch (numUsers) {
|
|
case 0:
|
|
return null;
|
|
case 1:
|
|
return (
|
|
<FormattedText
|
|
id='msg_typing.isTyping'
|
|
defaultMessage='{user} is typing...'
|
|
style={style.typing}
|
|
ellipsizeMode='tail'
|
|
numberOfLines={1}
|
|
values={{
|
|
user: nextTyping[0],
|
|
}}
|
|
/>
|
|
);
|
|
default: {
|
|
const last = nextTyping.pop();
|
|
return (
|
|
<FormattedText
|
|
id='msg_typing.areTyping'
|
|
defaultMessage='{users} and {last} are typing...'
|
|
style={style.typing}
|
|
ellipsizeMode='tail'
|
|
numberOfLines={1}
|
|
values={{
|
|
users: (nextTyping.join(', ')),
|
|
last,
|
|
}}
|
|
/>
|
|
);
|
|
}
|
|
}
|
|
};
|
|
|
|
const isVisible = typing.current.length > 0;
|
|
|
|
return (
|
|
<StatusIndicator visible={isVisible}>
|
|
{renderTyping()}
|
|
</StatusIndicator>
|
|
);
|
|
}
|
|
|
|
export default React.memo(Typing);
|