2020-02-11 14:01:35 +00:00
|
|
|
/* eslint-disable class-methods-use-this */
|
|
|
|
import React, { useContext } from 'react';
|
2020-05-18 16:25:13 +00:00
|
|
|
import { StyleSheet, Text } from 'react-native';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { BLOCK_CONTEXT, UiKitParserMessage, UiKitParserModal, uiKitMessage, uiKitModal } from '@rocket.chat/ui-kit';
|
2020-02-11 14:01:35 +00:00
|
|
|
|
2022-02-17 15:27:01 +00:00
|
|
|
import Markdown, { MarkdownPreview } from '../markdown';
|
2020-02-11 14:01:35 +00:00
|
|
|
import Button from '../Button';
|
|
|
|
import TextInput from '../TextInput';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { textParser, useBlockContext } from './utils';
|
2020-02-11 14:01:35 +00:00
|
|
|
import { themes } from '../../constants/colors';
|
2020-05-18 16:25:13 +00:00
|
|
|
import sharedStyles from '../../views/Styles';
|
2020-02-11 14:01:35 +00:00
|
|
|
import { Divider } from './Divider';
|
|
|
|
import { Section } from './Section';
|
|
|
|
import { Actions } from './Actions';
|
|
|
|
import { Image } from './Image';
|
|
|
|
import { Select } from './Select';
|
|
|
|
import { Context } from './Context';
|
|
|
|
import { MultiSelect } from './MultiSelect';
|
|
|
|
import { Input } from './Input';
|
|
|
|
import { DatePicker } from './DatePicker';
|
|
|
|
import { Overflow } from './Overflow';
|
|
|
|
import { ThemeContext } from '../../theme';
|
2022-03-16 19:07:49 +00:00
|
|
|
import { BlockContext, IButton, IInputIndex, IParser, IText } from './interfaces';
|
2020-02-11 14:01:35 +00:00
|
|
|
|
|
|
|
const styles = StyleSheet.create({
|
|
|
|
input: {
|
|
|
|
marginBottom: 0
|
|
|
|
},
|
|
|
|
multiline: {
|
|
|
|
height: 130
|
|
|
|
},
|
|
|
|
button: {
|
|
|
|
marginBottom: 16
|
2020-05-18 16:25:13 +00:00
|
|
|
},
|
|
|
|
text: {
|
|
|
|
fontSize: 16,
|
|
|
|
lineHeight: 22,
|
|
|
|
textAlignVertical: 'center',
|
|
|
|
...sharedStyles.textRegular
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
const plainText = ({ text } = { text: '' }) => text;
|
|
|
|
|
|
|
|
class MessageParser extends UiKitParserMessage {
|
2022-03-16 19:07:49 +00:00
|
|
|
get current() {
|
|
|
|
return this as unknown as IParser;
|
|
|
|
}
|
|
|
|
|
|
|
|
text({ text, type }: Partial<IText> = { text: '' }, context: BlockContext) {
|
|
|
|
const { theme } = useContext(ThemeContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
if (type !== 'mrkdwn') {
|
2020-05-18 16:25:13 +00:00
|
|
|
return <Text style={[styles.text, { color: themes[theme].bodyText }]}>{text}</Text>;
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const isContext = context === BLOCK_CONTEXT.CONTEXT;
|
2022-02-17 15:27:01 +00:00
|
|
|
if (isContext) {
|
|
|
|
return <MarkdownPreview msg={text} style={[isContext && { color: themes[theme].auxiliaryText }]} numberOfLines={0} />;
|
|
|
|
}
|
|
|
|
return <Markdown msg={text} theme={theme} style={[isContext && { color: themes[theme].auxiliaryText }]} />;
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
|
2022-03-16 19:07:49 +00:00
|
|
|
button(element: IButton, context: BlockContext) {
|
2021-09-13 20:41:05 +00:00
|
|
|
const { text, value, actionId, style } = element;
|
2022-03-16 19:07:49 +00:00
|
|
|
const [{ loading }, action] = useBlockContext(element, context);
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
return (
|
|
|
|
<Button
|
|
|
|
key={actionId}
|
|
|
|
type={style}
|
2020-05-18 16:25:13 +00:00
|
|
|
title={textParser([text])}
|
2020-02-11 14:01:35 +00:00
|
|
|
loading={loading}
|
|
|
|
onPress={() => action({ value })}
|
|
|
|
style={styles.button}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
divider() {
|
2022-03-16 19:07:49 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
2021-09-13 20:41:05 +00:00
|
|
|
// @ts-ignore
|
2020-02-11 14:01:35 +00:00
|
|
|
return <Divider theme={theme} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
section(args: any) {
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
return <Section {...args} theme={theme} parser={this} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
actions(args: any) {
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
return <Actions {...args} theme={theme} parser={this} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
overflow(element: any, context: any) {
|
|
|
|
const [{ loading }, action]: any = useBlockContext(element, context);
|
|
|
|
const { theme }: any = useContext(ThemeContext);
|
2022-03-16 19:07:49 +00:00
|
|
|
return <Overflow element={element} context={context} loading={loading} action={action} theme={theme} parser={this.current} />;
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
datePicker(element: any, context: any) {
|
|
|
|
const [{ loading, value, error, language }, action]: any = useBlockContext(element, context);
|
|
|
|
const { theme }: any = useContext(ThemeContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
return (
|
|
|
|
<DatePicker
|
|
|
|
element={element}
|
|
|
|
language={language}
|
|
|
|
theme={theme}
|
|
|
|
value={value}
|
|
|
|
action={action}
|
|
|
|
context={context}
|
|
|
|
loading={loading}
|
|
|
|
error={error}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
image(element: any, context: any) {
|
|
|
|
const { theme }: any = useContext(ThemeContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
return <Image element={element} theme={theme} context={context} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
context(args: any) {
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
return <Context {...args} theme={theme} parser={this} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
multiStaticSelect(element: any, context: any) {
|
|
|
|
const [{ loading, value }, action]: any = useBlockContext(element, context);
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
return (
|
2021-09-13 20:41:05 +00:00
|
|
|
<MultiSelect {...element} theme={theme} value={value} onChange={action} context={context} loading={loading} multiselect />
|
2020-02-11 14:01:35 +00:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
staticSelect(element: any, context: any) {
|
|
|
|
const [{ loading, value }, action]: any = useBlockContext(element, context);
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
2021-09-13 20:41:05 +00:00
|
|
|
return <Select {...element} theme={theme} value={value} onChange={action} loading={loading} />;
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
selectInput(element: any, context: any) {
|
|
|
|
const [{ loading, value }, action]: any = useBlockContext(element, context);
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
2021-09-13 20:41:05 +00:00
|
|
|
return <MultiSelect {...element} theme={theme} value={value} onChange={action} context={context} loading={loading} />;
|
2020-02-11 14:01:35 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class ModalParser extends UiKitParserModal {
|
|
|
|
constructor() {
|
|
|
|
super();
|
2021-09-13 20:41:05 +00:00
|
|
|
Object.getOwnPropertyNames(MessageParser.prototype).forEach(method => {
|
2020-02-11 14:01:35 +00:00
|
|
|
ModalParser.prototype[method] = ModalParser.prototype[method] || MessageParser.prototype[method];
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2022-03-16 19:07:49 +00:00
|
|
|
get current() {
|
|
|
|
return this as unknown as IParser;
|
|
|
|
}
|
|
|
|
|
|
|
|
input({ element, blockId, appId, label, description, hint }: IInputIndex, context: number) {
|
2021-09-13 20:41:05 +00:00
|
|
|
const [{ error }]: any = useBlockContext({ ...element, appId, blockId }, context);
|
|
|
|
const { theme }: any = useContext(ThemeContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
return (
|
|
|
|
<Input
|
2022-03-16 19:07:49 +00:00
|
|
|
parser={this.current}
|
2020-02-11 14:01:35 +00:00
|
|
|
element={{ ...element, appId, blockId }}
|
|
|
|
label={plainText(label)}
|
|
|
|
description={plainText(description)}
|
|
|
|
hint={plainText(hint)}
|
|
|
|
error={error}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
image(element: any, context: any) {
|
|
|
|
const { theme }: any = useContext(ThemeContext);
|
2020-02-11 14:01:35 +00:00
|
|
|
return <Image element={element} theme={theme} context={context} />;
|
|
|
|
}
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
plainInput(element: any, context: any) {
|
|
|
|
const [{ loading, value, error }, action]: any = useBlockContext(element, context);
|
2020-02-11 14:01:35 +00:00
|
|
|
const { theme } = useContext(ThemeContext);
|
|
|
|
const { multiline, actionId, placeholder } = element;
|
|
|
|
return (
|
2021-09-13 20:41:05 +00:00
|
|
|
// @ts-ignore
|
2020-02-11 14:01:35 +00:00
|
|
|
<TextInput
|
|
|
|
id={actionId}
|
|
|
|
placeholder={plainText(placeholder)}
|
|
|
|
onInput={action}
|
|
|
|
multiline={multiline}
|
|
|
|
loading={loading}
|
2021-09-13 20:41:05 +00:00
|
|
|
onChangeText={(text: any) => action({ value: text })}
|
2020-02-11 14:01:35 +00:00
|
|
|
inputStyle={multiline && styles.multiline}
|
|
|
|
containerStyle={styles.input}
|
|
|
|
value={value}
|
2021-09-13 20:41:05 +00:00
|
|
|
// @ts-ignore
|
2020-02-11 14:01:35 +00:00
|
|
|
error={{ error }}
|
|
|
|
theme={theme}
|
|
|
|
/>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export const messageParser = new MessageParser();
|
|
|
|
export const modalParser = new ModalParser();
|
|
|
|
|
|
|
|
export const UiKitMessage = uiKitMessage(messageParser);
|
|
|
|
export const UiKitModal = uiKitModal(modalParser);
|
|
|
|
|
2021-09-13 20:41:05 +00:00
|
|
|
export const UiKitComponent = ({ render, blocks }: any) => render(blocks);
|