vn-verdnaturachat/app/containers/UIKit/index.tsx

205 lines
6.0 KiB
TypeScript
Raw Normal View History

2020-02-11 14:01:35 +00:00
/* eslint-disable class-methods-use-this */
import React, { useContext } from 'react';
import { StyleSheet, Text } from 'react-native';
import { BLOCK_CONTEXT, UiKitParserMessage, UiKitParserModal, uiKitMessage, uiKitModal } from '@rocket.chat/ui-kit';
2020-02-11 14:01:35 +00:00
import Markdown from '../markdown';
import Button from '../Button';
import TextInput from '../TextInput';
import { textParser, useBlockContext } from './utils';
2020-02-11 14:01:35 +00:00
import { themes } from '../../constants/colors';
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';
const styles = StyleSheet.create({
input: {
marginBottom: 0
},
multiline: {
height: 130
},
button: {
marginBottom: 16
},
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 {
text({ text, type }: any = { text: '' }, context: any) {
const { theme }: any = useContext(ThemeContext);
2020-02-11 14:01:35 +00:00
if (type !== 'mrkdwn') {
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;
return (
// @ts-ignore
<Markdown msg={text} theme={theme} style={[isContext && { color: themes[theme].auxiliaryText }]} preview={isContext} />
2020-02-11 14:01:35 +00:00
);
}
button(element: any, context: any) {
const { text, value, actionId, style } = element;
const [{ loading }, action]: any = useBlockContext(element, context);
2020-02-11 14:01:35 +00:00
const { theme } = useContext(ThemeContext);
return (
<Button
key={actionId}
type={style}
title={textParser([text])}
2020-02-11 14:01:35 +00:00
loading={loading}
onPress={() => action({ value })}
style={styles.button}
theme={theme}
/>
);
}
divider() {
const { theme }: any = useContext(ThemeContext);
// @ts-ignore
2020-02-11 14:01:35 +00:00
return <Divider theme={theme} />;
}
section(args: any) {
2020-02-11 14:01:35 +00:00
const { theme } = useContext(ThemeContext);
return <Section {...args} theme={theme} parser={this} />;
}
actions(args: any) {
2020-02-11 14:01:35 +00:00
const { theme } = useContext(ThemeContext);
return <Actions {...args} theme={theme} parser={this} />;
}
overflow(element: any, context: any) {
const [{ loading }, action]: any = useBlockContext(element, context);
const { theme }: any = useContext(ThemeContext);
return <Overflow element={element} context={context} loading={loading} action={action} theme={theme} parser={this} />;
2020-02-11 14:01:35 +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}
/>
);
}
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} />;
}
context(args: any) {
2020-02-11 14:01:35 +00:00
const { theme } = useContext(ThemeContext);
return <Context {...args} theme={theme} parser={this} />;
}
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 (
<MultiSelect {...element} theme={theme} value={value} onChange={action} context={context} loading={loading} multiselect />
2020-02-11 14:01:35 +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);
return <Select {...element} theme={theme} value={value} onChange={action} loading={loading} />;
2020-02-11 14:01:35 +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);
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();
Object.getOwnPropertyNames(MessageParser.prototype).forEach(method => {
2020-02-11 14:01:35 +00:00
ModalParser.prototype[method] = ModalParser.prototype[method] || MessageParser.prototype[method];
});
}
input({ element, blockId, appId, label, description, hint }: any, context: any) {
const [{ error }]: any = useBlockContext({ ...element, appId, blockId }, context);
const { theme }: any = useContext(ThemeContext);
2020-02-11 14:01:35 +00:00
return (
<Input
parser={this}
element={{ ...element, appId, blockId }}
label={plainText(label)}
description={plainText(description)}
hint={plainText(hint)}
error={error}
theme={theme}
/>
);
}
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} />;
}
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 (
// @ts-ignore
2020-02-11 14:01:35 +00:00
<TextInput
id={actionId}
placeholder={plainText(placeholder)}
onInput={action}
multiline={multiline}
loading={loading}
onChangeText={(text: any) => action({ value: text })}
2020-02-11 14:01:35 +00:00
inputStyle={multiline && styles.multiline}
containerStyle={styles.input}
value={value}
// @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);
export const UiKitComponent = ({ render, blocks }: any) => render(blocks);