2021-08-04 12:52:59 +03:00
|
|
|
/* eslint-disable react/prop-types */
|
|
|
|
import React, { useState, useEffect } from 'react';
|
|
|
|
import PropTypes from 'prop-types';
|
|
|
|
import './ChannelViewCmdBar.scss';
|
2021-08-09 12:13:43 +03:00
|
|
|
import parse from 'html-react-parser';
|
|
|
|
import twemoji from 'twemoji';
|
2021-08-04 12:52:59 +03:00
|
|
|
|
|
|
|
import initMatrix from '../../../client/initMatrix';
|
|
|
|
import cons from '../../../client/state/cons';
|
2021-08-08 19:26:34 +03:00
|
|
|
import { toggleMarkdown } from '../../../client/action/settings';
|
|
|
|
import * as roomActions from '../../../client/action/room';
|
|
|
|
import {
|
|
|
|
selectRoom,
|
|
|
|
openCreateChannel,
|
|
|
|
openPublicChannels,
|
|
|
|
openInviteUser,
|
2021-08-16 15:21:23 +03:00
|
|
|
openReadReceipts,
|
2021-08-08 19:26:34 +03:00
|
|
|
} from '../../../client/action/navigation';
|
2021-08-24 13:01:20 +03:00
|
|
|
import { emojis } from '../emoji-board/emoji';
|
|
|
|
import AsyncSearch from '../../../util/AsyncSearch';
|
2021-08-04 12:52:59 +03:00
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
import Text from '../../atoms/text/Text';
|
|
|
|
import Button from '../../atoms/button/Button';
|
|
|
|
import IconButton from '../../atoms/button/IconButton';
|
|
|
|
import ContextMenu, { MenuHeader } from '../../atoms/context-menu/ContextMenu';
|
|
|
|
import ScrollView from '../../atoms/scroll/ScrollView';
|
|
|
|
import SettingTile from '../../molecules/setting-tile/SettingTile';
|
2021-08-04 12:52:59 +03:00
|
|
|
import TimelineChange from '../../molecules/message/TimelineChange';
|
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
import CmdIC from '../../../../public/res/ic/outlined/cmd.svg';
|
|
|
|
|
2021-08-04 12:52:59 +03:00
|
|
|
import { getUsersActionJsx } from './common';
|
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
const commands = [{
|
|
|
|
name: 'markdown',
|
|
|
|
description: 'Toggle markdown for messages.',
|
|
|
|
exe: () => toggleMarkdown(),
|
|
|
|
}, {
|
|
|
|
name: 'startDM',
|
|
|
|
isOptions: true,
|
|
|
|
description: 'Start direct message with user. Example: /startDM/@johndoe.matrix.org',
|
|
|
|
exe: (roomId, searchTerm) => openInviteUser(undefined, searchTerm),
|
|
|
|
}, {
|
|
|
|
name: 'createChannel',
|
|
|
|
description: 'Create new channel',
|
|
|
|
exe: () => openCreateChannel(),
|
|
|
|
}, {
|
|
|
|
name: 'join',
|
|
|
|
isOptions: true,
|
|
|
|
description: 'Join channel with alias. Example: /join/#cinny:matrix.org',
|
|
|
|
exe: (roomId, searchTerm) => openPublicChannels(searchTerm),
|
|
|
|
}, {
|
|
|
|
name: 'leave',
|
|
|
|
description: 'Leave current channel',
|
|
|
|
exe: (roomId) => roomActions.leave(roomId),
|
|
|
|
}, {
|
|
|
|
name: 'invite',
|
|
|
|
isOptions: true,
|
|
|
|
description: 'Invite user to room. Example: /invite/@johndoe:matrix.org',
|
|
|
|
exe: (roomId, searchTerm) => openInviteUser(roomId, searchTerm),
|
|
|
|
}];
|
|
|
|
|
|
|
|
function CmdHelp() {
|
|
|
|
return (
|
|
|
|
<ContextMenu
|
|
|
|
placement="top"
|
|
|
|
content={(
|
|
|
|
<>
|
|
|
|
<MenuHeader>General command</MenuHeader>
|
|
|
|
<Text variant="b2">/command_name</Text>
|
|
|
|
<MenuHeader>Go-to commands</MenuHeader>
|
|
|
|
<Text variant="b2">{'>*space_name'}</Text>
|
|
|
|
<Text variant="b2">{'>#channel_name'}</Text>
|
|
|
|
<Text variant="b2">{'>@people_name'}</Text>
|
|
|
|
<MenuHeader>Autofill command</MenuHeader>
|
|
|
|
<Text variant="b2">:emoji_name:</Text>
|
2021-08-24 13:01:20 +03:00
|
|
|
<Text variant="b2">@name</Text>
|
2021-08-08 19:26:34 +03:00
|
|
|
</>
|
|
|
|
)}
|
|
|
|
render={(toggleMenu) => (
|
|
|
|
<IconButton
|
|
|
|
src={CmdIC}
|
|
|
|
size="extra-small"
|
|
|
|
onClick={toggleMenu}
|
|
|
|
tooltip="Commands"
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function ViewCmd() {
|
|
|
|
function renderAllCmds() {
|
|
|
|
return commands.map((command) => (
|
|
|
|
<SettingTile
|
|
|
|
key={command.name}
|
|
|
|
title={command.name}
|
|
|
|
content={(<Text variant="b3">{command.description}</Text>)}
|
|
|
|
/>
|
|
|
|
));
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<ContextMenu
|
|
|
|
maxWidth={250}
|
|
|
|
placement="top"
|
|
|
|
content={(
|
|
|
|
<>
|
|
|
|
<MenuHeader>General commands</MenuHeader>
|
|
|
|
{renderAllCmds()}
|
|
|
|
</>
|
|
|
|
)}
|
|
|
|
render={(toggleMenu) => (
|
|
|
|
<span>
|
|
|
|
<Button onClick={toggleMenu}><span className="text text-b3">View all</span></Button>
|
|
|
|
</span>
|
|
|
|
)}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
function FollowingMembers({ roomId, roomTimeline, viewEvent }) {
|
2021-08-04 12:52:59 +03:00
|
|
|
const [followingMembers, setFollowingMembers] = useState([]);
|
|
|
|
const mx = initMatrix.matrixClient;
|
|
|
|
|
|
|
|
function handleOnMessageSent() {
|
|
|
|
setFollowingMembers([]);
|
|
|
|
}
|
|
|
|
|
|
|
|
function updateFollowingMembers() {
|
|
|
|
const room = mx.getRoom(roomId);
|
|
|
|
const { timeline } = room;
|
|
|
|
const userIds = room.getUsersReadUpTo(timeline[timeline.length - 1]);
|
|
|
|
const myUserId = mx.getUserId();
|
|
|
|
setFollowingMembers(userIds.filter((userId) => userId !== myUserId));
|
|
|
|
}
|
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
useEffect(() => updateFollowingMembers(), [roomId]);
|
2021-08-04 12:52:59 +03:00
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
roomTimeline.on(cons.events.roomTimeline.READ_RECEIPT, updateFollowingMembers);
|
|
|
|
viewEvent.on('message_sent', handleOnMessageSent);
|
|
|
|
return () => {
|
|
|
|
roomTimeline.removeListener(cons.events.roomTimeline.READ_RECEIPT, updateFollowingMembers);
|
|
|
|
viewEvent.removeListener('message_sent', handleOnMessageSent);
|
|
|
|
};
|
|
|
|
}, [roomTimeline]);
|
|
|
|
|
2021-08-16 15:21:23 +03:00
|
|
|
const lastMEvent = roomTimeline.timeline[roomTimeline.timeline.length - 1];
|
2021-08-08 19:26:34 +03:00
|
|
|
return followingMembers.length !== 0 && (
|
|
|
|
<TimelineChange
|
|
|
|
variant="follow"
|
2021-08-26 15:58:33 +03:00
|
|
|
content={getUsersActionJsx(roomId, followingMembers, 'following the conversation.')}
|
2021-08-08 19:26:34 +03:00
|
|
|
time=""
|
2021-08-16 15:21:23 +03:00
|
|
|
onClick={() => openReadReceipts(roomId, lastMEvent.getId())}
|
2021-08-08 19:26:34 +03:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
FollowingMembers.propTypes = {
|
|
|
|
roomId: PropTypes.string.isRequired,
|
|
|
|
roomTimeline: PropTypes.shape({}).isRequired,
|
|
|
|
viewEvent: PropTypes.shape({}).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
function getCmdActivationMessage(prefix) {
|
|
|
|
function genMessage(prime, secondary) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<span>{prime}</span>
|
|
|
|
<span>{secondary}</span>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
const cmd = {
|
|
|
|
'/': () => genMessage('General command mode activated. ', 'Type command name for suggestions.'),
|
|
|
|
'>*': () => genMessage('Go-to command mode activated. ', 'Type space name for suggestions.'),
|
|
|
|
'>#': () => genMessage('Go-to command mode activated. ', 'Type channel name for suggestions.'),
|
|
|
|
'>@': () => genMessage('Go-to command mode activated. ', 'Type people name for suggestions.'),
|
|
|
|
':': () => genMessage('Emoji autofill command mode activated. ', 'Type emoji shortcut for suggestions.'),
|
2021-08-24 13:01:20 +03:00
|
|
|
'@': () => genMessage('Name autofill command mode activated. ', 'Type name for suggestions.'),
|
2021-08-08 19:26:34 +03:00
|
|
|
};
|
|
|
|
return cmd[prefix]?.();
|
|
|
|
}
|
|
|
|
|
|
|
|
function CmdItem({ onClick, children }) {
|
2021-08-04 12:52:59 +03:00
|
|
|
return (
|
2021-08-08 19:26:34 +03:00
|
|
|
<button className="cmd-item" onClick={onClick} type="button">
|
|
|
|
{children}
|
|
|
|
</button>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
CmdItem.propTypes = {
|
|
|
|
onClick: PropTypes.func.isRequired,
|
|
|
|
children: PropTypes.node.isRequired,
|
|
|
|
};
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
function getCmdSuggestions({ prefix, option, suggestions }, fireCmd) {
|
|
|
|
function getGenCmdSuggestions(cmdPrefix, cmds) {
|
|
|
|
const cmdOptString = (typeof option === 'string') ? `/${option}` : '/?';
|
|
|
|
return cmds.map((cmd) => (
|
2021-08-08 19:26:34 +03:00
|
|
|
<CmdItem
|
2021-08-24 13:01:20 +03:00
|
|
|
key={cmd.name}
|
2021-08-08 19:26:34 +03:00
|
|
|
onClick={() => {
|
|
|
|
fireCmd({
|
|
|
|
prefix: cmdPrefix,
|
2021-08-24 13:01:20 +03:00
|
|
|
option,
|
|
|
|
result: cmd,
|
2021-08-08 19:26:34 +03:00
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
2021-08-24 13:01:20 +03:00
|
|
|
<Text variant="b2">{`${cmd.name}${cmd.isOptions ? cmdOptString : ''}`}</Text>
|
2021-08-08 19:26:34 +03:00
|
|
|
</CmdItem>
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
function getRoomsSuggestion(cmdPrefix, rooms) {
|
|
|
|
return rooms.map((room) => (
|
|
|
|
<CmdItem
|
|
|
|
key={room.roomId}
|
|
|
|
onClick={() => {
|
|
|
|
fireCmd({
|
|
|
|
prefix: cmdPrefix,
|
|
|
|
result: room,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Text variant="b2">{room.name}</Text>
|
|
|
|
</CmdItem>
|
|
|
|
));
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
function getEmojiSuggestion(emPrefix, emos) {
|
|
|
|
return emos.map((emoji) => (
|
2021-08-08 19:26:34 +03:00
|
|
|
<CmdItem
|
2021-08-24 13:01:20 +03:00
|
|
|
key={emoji.hexcode}
|
2021-08-08 19:26:34 +03:00
|
|
|
onClick={() => fireCmd({
|
|
|
|
prefix: emPrefix,
|
2021-08-24 13:01:20 +03:00
|
|
|
result: emoji,
|
2021-08-08 19:26:34 +03:00
|
|
|
})}
|
|
|
|
>
|
2021-08-09 12:13:43 +03:00
|
|
|
{
|
|
|
|
parse(twemoji.parse(
|
2021-08-24 13:01:20 +03:00
|
|
|
emoji.unicode,
|
2021-08-09 12:13:43 +03:00
|
|
|
{
|
|
|
|
attributes: () => ({
|
2021-08-24 13:01:20 +03:00
|
|
|
unicode: emoji.unicode,
|
|
|
|
shortcodes: emoji.shortcodes?.toString(),
|
2021-08-09 12:13:43 +03:00
|
|
|
}),
|
|
|
|
},
|
|
|
|
))
|
|
|
|
}
|
2021-08-24 13:01:20 +03:00
|
|
|
<Text variant="b2">{`:${emoji.shortcode}:`}</Text>
|
|
|
|
</CmdItem>
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
function getNameSuggestion(namePrefix, members) {
|
|
|
|
return members.map((member) => (
|
|
|
|
<CmdItem
|
|
|
|
key={member.userId}
|
|
|
|
onClick={() => {
|
|
|
|
fireCmd({
|
|
|
|
prefix: namePrefix,
|
|
|
|
result: member,
|
|
|
|
});
|
|
|
|
}}
|
|
|
|
>
|
|
|
|
<Text variant="b2">{member.name}</Text>
|
2021-08-08 19:26:34 +03:00
|
|
|
</CmdItem>
|
|
|
|
));
|
|
|
|
}
|
|
|
|
|
|
|
|
const cmd = {
|
2021-08-24 13:01:20 +03:00
|
|
|
'/': (cmds) => getGenCmdSuggestions(prefix, cmds),
|
|
|
|
'>*': (spaces) => getRoomsSuggestion(prefix, spaces),
|
|
|
|
'>#': (channels) => getRoomsSuggestion(prefix, channels),
|
|
|
|
'>@': (peoples) => getRoomsSuggestion(prefix, peoples),
|
|
|
|
':': (emos) => getEmojiSuggestion(prefix, emos),
|
|
|
|
'@': (members) => getNameSuggestion(prefix, members),
|
2021-08-08 19:26:34 +03:00
|
|
|
};
|
2021-08-24 13:01:20 +03:00
|
|
|
return cmd[prefix]?.(suggestions);
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
const asyncSearch = new AsyncSearch();
|
|
|
|
let cmdPrefix;
|
|
|
|
let cmdOption;
|
2021-08-08 19:26:34 +03:00
|
|
|
function ChannelViewCmdBar({ roomId, roomTimeline, viewEvent }) {
|
|
|
|
const [cmd, setCmd] = useState(null);
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
function displaySuggestions(suggestions) {
|
|
|
|
if (suggestions.length === 0) {
|
|
|
|
setCmd({ prefix: cmd?.prefix || cmdPrefix, error: 'No suggestion found.' });
|
|
|
|
viewEvent.emit('cmd_error');
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setCmd({ prefix: cmd?.prefix || cmdPrefix, suggestions, option: cmdOption });
|
|
|
|
}
|
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
function processCmd(prefix, slug) {
|
2021-08-24 13:01:20 +03:00
|
|
|
let searchTerm = slug;
|
|
|
|
cmdOption = undefined;
|
|
|
|
cmdPrefix = prefix;
|
|
|
|
if (prefix === '/') {
|
|
|
|
const cmdSlugParts = slug.split('/');
|
|
|
|
[searchTerm, cmdOption] = cmdSlugParts;
|
|
|
|
}
|
|
|
|
if (prefix === ':') {
|
|
|
|
if (searchTerm.length <= 3) {
|
|
|
|
if (searchTerm.match(/^[-]?(\))$/)) searchTerm = 'smile';
|
|
|
|
else if (searchTerm.match(/^[-]?(s|S)$/)) searchTerm = 'confused';
|
|
|
|
else if (searchTerm.match(/^[-]?(o|O|0)$/)) searchTerm = 'astonished';
|
|
|
|
else if (searchTerm.match(/^[-]?(\|)$/)) searchTerm = 'neutral_face';
|
|
|
|
else if (searchTerm.match(/^[-]?(d|D)$/)) searchTerm = 'grin';
|
|
|
|
else if (searchTerm.match(/^[-]?(\/)$/)) searchTerm = 'frown';
|
2021-08-26 08:06:41 +03:00
|
|
|
else if (searchTerm.match(/^[-]?(p|P)$/)) searchTerm = 'stuck_out_tongue';
|
2021-08-24 13:01:20 +03:00
|
|
|
else if (searchTerm.match(/^'[-]?(\()$/)) searchTerm = 'cry';
|
|
|
|
else if (searchTerm.match(/^[-]?(x|X)$/)) searchTerm = 'dizzy_face';
|
|
|
|
else if (searchTerm.match(/^[-]?(\()$/)) searchTerm = 'pleading_face';
|
|
|
|
else if (searchTerm.match(/^[-]?(\$)$/)) searchTerm = 'money';
|
|
|
|
else if (searchTerm.match(/^(<3)$/)) searchTerm = 'heart';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
asyncSearch.search(searchTerm);
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
function activateCmd(prefix) {
|
|
|
|
setCmd({ prefix });
|
2021-08-24 13:01:20 +03:00
|
|
|
cmdPrefix = prefix;
|
|
|
|
|
|
|
|
const { roomList, matrixClient } = initMatrix;
|
|
|
|
function getRooms(roomIds) {
|
|
|
|
return roomIds.map((rId) => {
|
|
|
|
const room = matrixClient.getRoom(rId);
|
|
|
|
return {
|
|
|
|
name: room.name,
|
|
|
|
roomId: room.roomId,
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
const setupSearch = {
|
|
|
|
'/': () => asyncSearch.setup(commands, { keys: ['name'], isContain: true }),
|
|
|
|
'>*': () => asyncSearch.setup(getRooms([...roomList.spaces]), { keys: ['name'], limit: 20 }),
|
|
|
|
'>#': () => asyncSearch.setup(getRooms([...roomList.rooms]), { keys: ['name'], limit: 20 }),
|
|
|
|
'>@': () => asyncSearch.setup(getRooms([...roomList.directs]), { keys: ['name'], limit: 20 }),
|
|
|
|
':': () => asyncSearch.setup(emojis, { keys: ['shortcode'], limit: 20 }),
|
|
|
|
'@': () => asyncSearch.setup(matrixClient.getRoom(roomId).getJoinedMembers().map((member) => ({
|
|
|
|
name: member.name,
|
|
|
|
userId: member.userId.slice(1),
|
|
|
|
})), { keys: ['name', 'userId'], limit: 20 }),
|
|
|
|
};
|
|
|
|
setupSearch[prefix]?.();
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
function deactivateCmd() {
|
|
|
|
setCmd(null);
|
2021-08-24 13:01:20 +03:00
|
|
|
cmdOption = undefined;
|
|
|
|
cmdPrefix = undefined;
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
function fireCmd(myCmd) {
|
|
|
|
if (myCmd.prefix.match(/^>[*#@]$/)) {
|
|
|
|
selectRoom(myCmd.result.roomId);
|
|
|
|
viewEvent.emit('cmd_fired');
|
|
|
|
}
|
|
|
|
if (myCmd.prefix === '/') {
|
|
|
|
myCmd.result.exe(roomId, myCmd.option);
|
|
|
|
viewEvent.emit('cmd_fired');
|
|
|
|
}
|
|
|
|
if (myCmd.prefix === ':') {
|
|
|
|
viewEvent.emit('cmd_fired', {
|
|
|
|
replace: myCmd.result.unicode,
|
|
|
|
});
|
|
|
|
}
|
2021-08-24 13:01:20 +03:00
|
|
|
if (myCmd.prefix === '@') {
|
|
|
|
viewEvent.emit('cmd_fired', {
|
|
|
|
replace: myCmd.result.name,
|
|
|
|
});
|
|
|
|
}
|
2021-08-08 19:26:34 +03:00
|
|
|
deactivateCmd();
|
|
|
|
}
|
|
|
|
function executeCmd() {
|
2021-08-24 13:01:20 +03:00
|
|
|
if (cmd.suggestions.length === 0) return;
|
|
|
|
fireCmd({
|
|
|
|
prefix: cmd.prefix,
|
|
|
|
option: cmd.option,
|
|
|
|
result: cmd.suggestions[0],
|
|
|
|
});
|
2021-08-08 19:26:34 +03:00
|
|
|
}
|
|
|
|
|
2021-08-26 12:13:14 +03:00
|
|
|
function listenKeyboard(event) {
|
|
|
|
const { activeElement } = document;
|
|
|
|
const lastCmdItem = document.activeElement.parentNode.lastElementChild;
|
|
|
|
if (event.keyCode === 27) {
|
|
|
|
if (activeElement.className !== 'cmd-item') return;
|
|
|
|
viewEvent.emit('focus_msg_input');
|
|
|
|
}
|
|
|
|
if (event.keyCode === 9) {
|
|
|
|
if (lastCmdItem.className !== 'cmd-item') return;
|
|
|
|
if (lastCmdItem !== activeElement) return;
|
|
|
|
if (event.shiftKey) return;
|
|
|
|
viewEvent.emit('focus_msg_input');
|
|
|
|
event.preventDefault();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-08-08 19:26:34 +03:00
|
|
|
useEffect(() => {
|
|
|
|
viewEvent.on('cmd_activate', activateCmd);
|
|
|
|
viewEvent.on('cmd_deactivate', deactivateCmd);
|
|
|
|
return () => {
|
|
|
|
deactivateCmd();
|
|
|
|
viewEvent.removeListener('cmd_activate', activateCmd);
|
|
|
|
viewEvent.removeListener('cmd_deactivate', deactivateCmd);
|
|
|
|
};
|
|
|
|
}, [roomId]);
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
useEffect(() => {
|
2021-08-26 12:13:14 +03:00
|
|
|
if (cmd !== null) document.body.addEventListener('keydown', listenKeyboard);
|
2021-08-24 13:01:20 +03:00
|
|
|
viewEvent.on('cmd_process', processCmd);
|
|
|
|
viewEvent.on('cmd_exe', executeCmd);
|
|
|
|
asyncSearch.on(asyncSearch.RESULT_SENT, displaySuggestions);
|
|
|
|
return () => {
|
2021-08-26 12:13:14 +03:00
|
|
|
if (cmd !== null) document.body.removeEventListener('keydown', listenKeyboard);
|
|
|
|
|
2021-08-24 13:01:20 +03:00
|
|
|
viewEvent.removeListener('cmd_process', processCmd);
|
|
|
|
viewEvent.removeListener('cmd_exe', executeCmd);
|
|
|
|
asyncSearch.removeListener(asyncSearch.RESULT_SENT, displaySuggestions);
|
|
|
|
};
|
|
|
|
}, [cmd]);
|
|
|
|
|
|
|
|
if (typeof cmd?.error === 'string') {
|
2021-08-08 19:26:34 +03:00
|
|
|
return (
|
|
|
|
<div className="cmd-bar">
|
|
|
|
<div className="cmd-bar__info">
|
|
|
|
<div className="cmd-bar__info-indicator--error" />
|
|
|
|
</div>
|
|
|
|
<div className="cmd-bar__content">
|
|
|
|
<Text className="cmd-bar__content-error" variant="b2">{cmd.error}</Text>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (
|
|
|
|
<div className="cmd-bar">
|
|
|
|
<div className="cmd-bar__info">
|
|
|
|
{cmd === null && <CmdHelp />}
|
2021-08-24 13:01:20 +03:00
|
|
|
{cmd !== null && typeof cmd.suggestions === 'undefined' && <div className="cmd-bar__info-indicator" /> }
|
|
|
|
{cmd !== null && typeof cmd.suggestions !== 'undefined' && <Text variant="b3">TAB</Text>}
|
2021-08-08 19:26:34 +03:00
|
|
|
</div>
|
|
|
|
<div className="cmd-bar__content">
|
|
|
|
{cmd === null && (
|
|
|
|
<FollowingMembers
|
|
|
|
roomId={roomId}
|
|
|
|
roomTimeline={roomTimeline}
|
|
|
|
viewEvent={viewEvent}
|
|
|
|
/>
|
|
|
|
)}
|
2021-08-24 13:01:20 +03:00
|
|
|
{cmd !== null && typeof cmd.suggestions === 'undefined' && <Text className="cmd-bar__content-help" variant="b2">{getCmdActivationMessage(cmd.prefix)}</Text>}
|
|
|
|
{cmd !== null && typeof cmd.suggestions !== 'undefined' && (
|
2021-08-08 19:26:34 +03:00
|
|
|
<ScrollView horizontal vertical={false} invisible>
|
2021-08-24 13:01:20 +03:00
|
|
|
<div className="cmd-bar__content__suggestions">{getCmdSuggestions(cmd, fireCmd)}</div>
|
2021-08-08 19:26:34 +03:00
|
|
|
</ScrollView>
|
|
|
|
)}
|
|
|
|
</div>
|
|
|
|
<div className="cmd-bar__more">
|
|
|
|
{cmd !== null && cmd.prefix === '/' && <ViewCmd />}
|
|
|
|
</div>
|
2021-08-04 12:52:59 +03:00
|
|
|
</div>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
ChannelViewCmdBar.propTypes = {
|
|
|
|
roomId: PropTypes.string.isRequired,
|
|
|
|
roomTimeline: PropTypes.shape({}).isRequired,
|
|
|
|
viewEvent: PropTypes.shape({}).isRequired,
|
|
|
|
};
|
|
|
|
|
|
|
|
export default ChannelViewCmdBar;
|