vn-verdnaturachat/app/views/AutoTranslateView/index.tsx

168 lines
4.8 KiB
TypeScript

import React from 'react';
import { FlatList, StyleSheet, Switch } from 'react-native';
import { RouteProp } from '@react-navigation/core';
import { ChatsStackParamList } from '../../stacks/types';
import RocketChat from '../../lib/rocketchat';
import I18n from '../../i18n';
import StatusBar from '../../containers/StatusBar';
import * as List from '../../containers/List';
import { SWITCH_TRACK_COLOR, themes } from '../../constants/colors';
import { withTheme } from '../../theme';
import SafeAreaView from '../../containers/SafeAreaView';
import { events, logEvent } from '../../utils/log';
import { ISubscription } from '../../definitions/ISubscription';
const styles = StyleSheet.create({
list: {
paddingTop: 16
}
});
interface IAutoTranslateViewProps {
route: RouteProp<ChatsStackParamList, 'AutoTranslateView'>;
theme: string;
}
class AutoTranslateView extends React.Component<IAutoTranslateViewProps, any> {
static navigationOptions = () => ({
title: I18n.t('Auto_Translate')
});
private mounted: boolean;
private rid: string | undefined;
private roomObservable: any;
private subscription: any;
constructor(props: IAutoTranslateViewProps) {
super(props);
this.mounted = false;
this.rid = props.route.params?.rid;
const room = props.route.params?.room;
if (room && room.observe) {
this.roomObservable = room.observe();
this.subscription = this.roomObservable.subscribe((changes: ISubscription) => {
if (this.mounted) {
const { selectedLanguage, enableAutoTranslate } = this.state;
if (selectedLanguage !== changes.autoTranslateLanguage) {
this.setState({ selectedLanguage: changes.autoTranslateLanguage });
}
if (enableAutoTranslate !== changes.autoTranslate) {
this.setState({ enableAutoTranslate: changes.autoTranslate });
}
}
});
}
this.state = {
languages: [],
selectedLanguage: room?.autoTranslateLanguage,
enableAutoTranslate: room?.autoTranslate
};
}
async componentDidMount() {
this.mounted = true;
try {
const languages = await RocketChat.getSupportedLanguagesAutoTranslate();
this.setState({ languages });
} catch (error) {
console.log(error);
}
}
componentWillUnmount() {
if (this.subscription && this.subscription.unsubscribe) {
this.subscription.unsubscribe();
}
}
toggleAutoTranslate = async () => {
logEvent(events.AT_TOGGLE_TRANSLATE);
const { enableAutoTranslate } = this.state;
try {
await RocketChat.saveAutoTranslate({
rid: this.rid,
field: 'autoTranslate',
value: enableAutoTranslate ? '0' : '1',
options: { defaultLanguage: 'en' }
});
this.setState({ enableAutoTranslate: !enableAutoTranslate });
} catch (error) {
logEvent(events.AT_TOGGLE_TRANSLATE_F);
console.log(error);
}
};
saveAutoTranslateLanguage = async (language: string) => {
logEvent(events.AT_SET_LANG);
try {
// TODO: remove the parameter options, after migrate the RocketChat
await RocketChat.saveAutoTranslate({
rid: this.rid,
field: 'autoTranslateLanguage',
value: language,
options: null
});
this.setState({ selectedLanguage: language });
} catch (error) {
logEvent(events.AT_SET_LANG_F);
console.log(error);
}
};
renderIcon = () => {
const { theme } = this.props;
return <List.Icon name='check' color={themes[theme!].tintColor} />;
};
renderSwitch = () => {
const { enableAutoTranslate } = this.state;
return <Switch value={enableAutoTranslate} trackColor={SWITCH_TRACK_COLOR} onValueChange={this.toggleAutoTranslate} />;
};
renderItem = ({ item }: { item: { language: string; name: string } }) => {
const { selectedLanguage } = this.state;
const { language, name } = item;
const isSelected = selectedLanguage === language;
return (
<List.Item
title={name || language}
onPress={() => this.saveAutoTranslateLanguage(language)}
testID={`auto-translate-view-${language}`}
right={() => (isSelected ? this.renderIcon() : null)}
translateTitle={false}
/>
);
};
render() {
const { languages } = this.state;
return (
<SafeAreaView testID='auto-translate-view'>
<StatusBar />
<List.Container testID='auto-translate-view-list'>
<List.Section>
<List.Separator />
<List.Item title='Enable_Auto_Translate' testID='auto-translate-view-switch' right={() => this.renderSwitch()} />
<List.Separator />
</List.Section>
<FlatList
data={languages}
extraData={this.state}
keyExtractor={item => item.language}
renderItem={this.renderItem}
ItemSeparatorComponent={List.Separator}
ListFooterComponent={List.Separator}
ListHeaderComponent={List.Separator}
contentContainerStyle={[List.styles.contentContainerStyleFlatList, styles.list]}
/>
</List.Container>
</SafeAreaView>
);
}
}
export default withTheme(AutoTranslateView);