2021-12-03 19:27:57 +00:00
|
|
|
import { RouteProp } from '@react-navigation/core';
|
|
|
|
import { StackNavigationProp } from '@react-navigation/stack';
|
|
|
|
|
|
|
|
import { NewMessageStackParamList } from '../../stacks/types';
|
|
|
|
|
2021-09-15 19:58:14 +00:00
|
|
|
export interface ICreateChannelViewProps {
|
2021-12-03 19:27:57 +00:00
|
|
|
navigation: StackNavigationProp<NewMessageStackParamList, 'CreateDiscussionView'>;
|
|
|
|
route: RouteProp<NewMessageStackParamList, 'CreateDiscussionView'>;
|
2021-09-15 19:58:14 +00:00
|
|
|
server: string;
|
|
|
|
user: {
|
|
|
|
id: string;
|
|
|
|
token: string;
|
|
|
|
};
|
|
|
|
create: Function;
|
|
|
|
loading: boolean;
|
|
|
|
result: {
|
|
|
|
rid: string;
|
|
|
|
t: string;
|
|
|
|
prid: string;
|
|
|
|
};
|
|
|
|
failure: boolean;
|
|
|
|
error: {
|
|
|
|
reason: string;
|
|
|
|
};
|
|
|
|
theme: string;
|
|
|
|
isMasterDetail: boolean;
|
|
|
|
blockUnauthenticatedAccess: boolean;
|
|
|
|
serverVersion: string;
|
|
|
|
encryptionEnabled: boolean;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ICreateDiscussionViewSelectChannel {
|
|
|
|
server: string;
|
|
|
|
token: string;
|
|
|
|
userId: string;
|
|
|
|
initial: object;
|
|
|
|
onChannelSelect: Function;
|
|
|
|
blockUnauthenticatedAccess: boolean;
|
|
|
|
serverVersion: string;
|
|
|
|
theme: string;
|
|
|
|
}
|
|
|
|
|
|
|
|
export interface ICreateDiscussionViewSelectUsers {
|
|
|
|
server: string;
|
|
|
|
token: string;
|
|
|
|
userId: string;
|
|
|
|
selected: any[];
|
|
|
|
onUserSelect: Function;
|
|
|
|
blockUnauthenticatedAccess: boolean;
|
|
|
|
serverVersion: string;
|
|
|
|
theme: string;
|
|
|
|
}
|