Rocket.Chat.ReactNative/app/containers/UIKit/Overflow.tsx

85 lines
2.3 KiB
TypeScript
Raw Normal View History

2020-02-11 14:01:35 +00:00
import React, { useState } from 'react';
import { FlatList, StyleSheet, Text } from 'react-native';
2020-02-11 14:01:35 +00:00
import Popover from 'react-native-popover-view';
import Touchable from 'react-native-platform-touchable';
import { CustomIcon } from '../../lib/Icons';
import ActivityIndicator from '../ActivityIndicator';
import { themes } from '../../lib/constants';
import { useTheme } from '../../theme';
2020-02-11 14:01:35 +00:00
import { BUTTON_HIT_SLOP } from '../message/utils';
import * as List from '../List';
import { IOption, IOptions, IOverflow } from './interfaces';
const keyExtractor = (item: any) => item.value;
2020-02-11 14:01:35 +00:00
const styles = StyleSheet.create({
menu: {
justifyContent: 'center'
},
option: {
padding: 8,
minHeight: 32
},
loading: {
padding: 0
}
});
const Option = ({ option: { text, value }, onOptionPress, parser, theme }: IOption) => (
2020-02-11 14:01:35 +00:00
<Touchable
onPress={() => onOptionPress({ value })}
background={Touchable.Ripple(themes[theme].bannerBackground)}
style={styles.option}>
2020-02-11 14:01:35 +00:00
<Text>{parser.text(text)}</Text>
</Touchable>
);
const Options = ({ options, onOptionPress, parser, theme }: IOptions) => (
2020-02-11 14:01:35 +00:00
<FlatList
data={options}
renderItem={({ item }) => <Option option={item} onOptionPress={onOptionPress} parser={parser} theme={theme} />}
keyExtractor={keyExtractor}
ItemSeparatorComponent={List.Separator}
2020-02-11 14:01:35 +00:00
/>
);
const touchable: { [key: string]: Touchable | null } = {};
2020-02-11 14:01:35 +00:00
export const Overflow = ({ element, loading, action, parser }: IOverflow) => {
const { theme } = useTheme();
const options = element?.options || [];
const blockId = element?.blockId || '';
2020-02-11 14:01:35 +00:00
const [show, onShow] = useState(false);
const onOptionPress = ({ value }: any) => {
2020-02-11 14:01:35 +00:00
onShow(false);
action({ value });
};
return (
<>
<Touchable
ref={ref => (touchable[blockId] = ref)}
2020-02-11 14:01:35 +00:00
background={Touchable.Ripple(themes[theme].bannerBackground)}
onPress={() => onShow(!show)}
hitSlop={BUTTON_HIT_SLOP}
style={styles.menu}>
{!loading ? (
<CustomIcon size={18} name='kebab' color={themes[theme].bodyText} />
) : (
<ActivityIndicator style={styles.loading} />
)}
2020-02-11 14:01:35 +00:00
</Touchable>
<Popover
isVisible={show}
// fromView exists in Popover Component
/* @ts-ignore*/
2020-02-11 14:01:35 +00:00
fromView={touchable[blockId]}
onRequestClose={() => onShow(false)}>
2020-02-11 14:01:35 +00:00
<Options options={options} onOptionPress={onOptionPress} parser={parser} theme={theme} />
</Popover>
</>
);
};