2022-01-17 21:27:28 +00:00
|
|
|
import { StackNavigationOptions } from '@react-navigation/stack';
|
2020-01-28 13:22:35 +00:00
|
|
|
import React from 'react';
|
2021-11-10 14:11:05 +00:00
|
|
|
import { TextInputProps, View } from 'react-native';
|
2020-01-28 13:22:35 +00:00
|
|
|
import RNPickerSelect from 'react-native-picker-select';
|
2022-01-17 21:27:28 +00:00
|
|
|
import { connect } from 'react-redux';
|
2020-01-28 13:22:35 +00:00
|
|
|
|
2022-01-17 21:27:28 +00:00
|
|
|
import { inviteLinksCreate, inviteLinksSetParams } from '../../actions/inviteLinks';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { themes } from '../../lib/constants';
|
2020-01-28 13:22:35 +00:00
|
|
|
import Button from '../../containers/Button';
|
2022-01-17 21:27:28 +00:00
|
|
|
import * as List from '../../containers/List';
|
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
2020-01-28 13:22:35 +00:00
|
|
|
import StatusBar from '../../containers/StatusBar';
|
2022-01-17 21:27:28 +00:00
|
|
|
import { IApplicationState, IBaseScreen } from '../../definitions';
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import { ChatsStackParamList } from '../../stacks/types';
|
2020-01-28 13:22:35 +00:00
|
|
|
import { withTheme } from '../../theme';
|
2021-09-13 20:41:05 +00:00
|
|
|
import { events, logEvent } from '../../utils/log';
|
|
|
|
import styles from './styles';
|
2020-01-28 13:22:35 +00:00
|
|
|
|
|
|
|
const OPTIONS = {
|
2021-09-13 20:41:05 +00:00
|
|
|
days: [
|
|
|
|
{
|
|
|
|
label: '1',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '7',
|
|
|
|
value: 7
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '15',
|
|
|
|
value: 15
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '30',
|
|
|
|
value: 30
|
|
|
|
}
|
|
|
|
],
|
|
|
|
maxUses: [
|
|
|
|
{
|
|
|
|
label: '1',
|
|
|
|
value: 1
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '5',
|
|
|
|
value: 5
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '10',
|
|
|
|
value: 10
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '25',
|
|
|
|
value: 25
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '50',
|
|
|
|
value: 50
|
|
|
|
},
|
|
|
|
{
|
|
|
|
label: '100',
|
|
|
|
value: 100
|
|
|
|
}
|
|
|
|
]
|
2020-01-28 13:22:35 +00:00
|
|
|
};
|
|
|
|
|
2022-01-17 21:27:28 +00:00
|
|
|
interface IInviteUsersEditViewProps extends IBaseScreen<ChatsStackParamList, 'InviteUsersEditView'> {
|
2021-11-10 14:11:05 +00:00
|
|
|
days: number;
|
|
|
|
maxUses: number;
|
|
|
|
}
|
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
class InviteUsersEditView extends React.Component<IInviteUsersEditViewProps, any> {
|
2021-11-10 14:11:05 +00:00
|
|
|
static navigationOptions = (): StackNavigationOptions => ({
|
2020-06-15 14:00:46 +00:00
|
|
|
title: I18n.t('Invite_users')
|
2021-09-13 20:41:05 +00:00
|
|
|
});
|
2020-01-28 13:22:35 +00:00
|
|
|
|
2021-11-10 14:11:05 +00:00
|
|
|
private rid: string;
|
2020-01-28 13:22:35 +00:00
|
|
|
|
2021-12-03 19:27:57 +00:00
|
|
|
constructor(props: IInviteUsersEditViewProps) {
|
2020-01-28 13:22:35 +00:00
|
|
|
super(props);
|
2020-06-15 14:00:46 +00:00
|
|
|
this.rid = props.route.params?.rid;
|
2020-01-28 13:22:35 +00:00
|
|
|
}
|
|
|
|
|
2021-11-10 14:11:05 +00:00
|
|
|
onValueChangePicker = (key: string, value: number) => {
|
2022-01-17 21:27:28 +00:00
|
|
|
const { dispatch } = this.props;
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.IU_EDIT_SET_LINK_PARAM);
|
2020-01-28 13:22:35 +00:00
|
|
|
const params = {
|
|
|
|
[key]: value
|
|
|
|
};
|
2022-01-17 21:27:28 +00:00
|
|
|
dispatch(inviteLinksSetParams(params));
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-01-28 13:22:35 +00:00
|
|
|
|
|
|
|
createInviteLink = () => {
|
2022-01-17 21:27:28 +00:00
|
|
|
const { dispatch, navigation } = this.props;
|
2020-08-05 13:15:56 +00:00
|
|
|
logEvent(events.IU_EDIT_CREATE_LINK);
|
2022-01-17 21:27:28 +00:00
|
|
|
dispatch(inviteLinksCreate(this.rid));
|
2020-01-28 13:22:35 +00:00
|
|
|
navigation.pop();
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-01-28 13:22:35 +00:00
|
|
|
|
2021-11-10 14:11:05 +00:00
|
|
|
renderPicker = (key: 'days' | 'maxUses', first: string) => {
|
2020-01-28 13:22:35 +00:00
|
|
|
const { props } = this;
|
|
|
|
const { theme } = props;
|
2021-11-10 14:11:05 +00:00
|
|
|
const textInputStyle: TextInputProps = { style: { ...styles.pickerText, color: themes[theme].actionTintColor } };
|
2021-09-13 20:41:05 +00:00
|
|
|
const firstEl = [
|
|
|
|
{
|
|
|
|
label: I18n.t(first),
|
|
|
|
value: 0
|
|
|
|
}
|
|
|
|
];
|
2020-01-28 13:22:35 +00:00
|
|
|
return (
|
|
|
|
<RNPickerSelect
|
|
|
|
style={{ viewContainer: styles.viewContainer }}
|
|
|
|
value={props[key]}
|
2021-11-10 14:11:05 +00:00
|
|
|
textInputProps={textInputStyle}
|
2020-01-28 13:22:35 +00:00
|
|
|
useNativeAndroidPickerStyle={false}
|
|
|
|
placeholder={{}}
|
|
|
|
onValueChange={value => this.onValueChangePicker(key, value)}
|
2020-07-24 19:23:34 +00:00
|
|
|
items={firstEl.concat(OPTIONS[key])}
|
2020-01-28 13:22:35 +00:00
|
|
|
/>
|
|
|
|
);
|
2021-09-13 20:41:05 +00:00
|
|
|
};
|
2020-01-28 13:22:35 +00:00
|
|
|
|
|
|
|
render() {
|
|
|
|
return (
|
2020-10-30 13:59:44 +00:00
|
|
|
<SafeAreaView>
|
|
|
|
<List.Container>
|
|
|
|
<StatusBar />
|
|
|
|
<List.Section>
|
|
|
|
<List.Separator />
|
2021-09-13 20:41:05 +00:00
|
|
|
<List.Item title='Expiration_Days' right={() => this.renderPicker('days', 'Never')} />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
2021-09-13 20:41:05 +00:00
|
|
|
<List.Item title='Max_number_of_uses' right={() => this.renderPicker('maxUses', 'No_limit')} />
|
2020-10-30 13:59:44 +00:00
|
|
|
<List.Separator />
|
|
|
|
</List.Section>
|
2020-01-28 13:22:35 +00:00
|
|
|
<View style={styles.innerContainer}>
|
2022-05-20 16:37:57 +00:00
|
|
|
<Button title={I18n.t('Generate_New_Link')} type='primary' onPress={this.createInviteLink} />
|
2020-01-28 13:22:35 +00:00
|
|
|
</View>
|
2020-10-30 13:59:44 +00:00
|
|
|
</List.Container>
|
2020-01-28 13:22:35 +00:00
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-17 21:27:28 +00:00
|
|
|
const mapStateToProps = (state: IApplicationState) => ({
|
2020-01-28 13:22:35 +00:00
|
|
|
days: state.inviteLinks.days,
|
|
|
|
maxUses: state.inviteLinks.maxUses
|
|
|
|
});
|
|
|
|
|
2022-01-17 21:27:28 +00:00
|
|
|
export default connect(mapStateToProps)(withTheme(InviteUsersEditView));
|