2021-09-22 17:29:26 +00:00
|
|
|
import React, { useEffect, useState, useCallback } from 'react';
|
2021-09-28 19:25:20 +00:00
|
|
|
import { FlatList } from 'react-native';
|
2021-09-22 17:29:26 +00:00
|
|
|
import { useSelector } from 'react-redux';
|
|
|
|
import { useSafeAreaInsets } from 'react-native-safe-area-context';
|
2022-02-04 22:15:01 +00:00
|
|
|
import { RouteProp } from '@react-navigation/native';
|
|
|
|
import { HeaderBackButton, StackNavigationOptions, StackNavigationProp } from '@react-navigation/stack';
|
2021-09-22 17:29:26 +00:00
|
|
|
|
|
|
|
import database from '../../lib/database';
|
|
|
|
import I18n from '../../i18n';
|
|
|
|
import SafeAreaView from '../../containers/SafeAreaView';
|
|
|
|
import StatusBar from '../../containers/StatusBar';
|
|
|
|
import ActivityIndicator from '../../containers/ActivityIndicator';
|
|
|
|
import SearchHeader from '../../containers/SearchHeader';
|
|
|
|
import BackgroundContainer from '../../containers/BackgroundContainer';
|
|
|
|
import { getHeaderTitlePosition } from '../../containers/Header';
|
|
|
|
import { useTheme } from '../../theme';
|
|
|
|
import debounce from '../../utils/debounce';
|
2022-04-07 13:22:19 +00:00
|
|
|
import Navigation from '../../lib/navigation/appNavigation';
|
2021-09-22 17:29:26 +00:00
|
|
|
import { goRoom } from '../../utils/goRoom';
|
|
|
|
import * as HeaderButton from '../../containers/HeaderButton';
|
|
|
|
import * as List from '../../containers/List';
|
2022-04-07 14:10:03 +00:00
|
|
|
import { themes } from '../../lib/constants';
|
2021-09-22 17:29:26 +00:00
|
|
|
import log from '../../utils/log';
|
|
|
|
import CannedResponseItem from './CannedResponseItem';
|
|
|
|
import Dropdown from './Dropdown';
|
|
|
|
import DropdownItemHeader from './Dropdown/DropdownItemHeader';
|
|
|
|
import styles from './styles';
|
2022-05-03 00:30:20 +00:00
|
|
|
import { ICannedResponse } from '../../definitions/ICannedResponse';
|
2022-02-04 22:15:01 +00:00
|
|
|
import { ChatsStackParamList } from '../../stacks/types';
|
|
|
|
import { ISubscription } from '../../definitions/ISubscription';
|
2022-04-28 20:37:25 +00:00
|
|
|
import { getRoomTitle, getUidDirectMessage } from '../../lib/methods';
|
|
|
|
import { Services } from '../../lib/services';
|
2022-05-03 00:30:20 +00:00
|
|
|
import { IApplicationState } from '../../definitions';
|
|
|
|
import { ILivechatDepartment } from '../../definitions/ILivechatDepartment';
|
2021-09-22 17:29:26 +00:00
|
|
|
|
|
|
|
const COUNT = 25;
|
|
|
|
|
|
|
|
const fixedScopes = [
|
|
|
|
{
|
|
|
|
_id: 'all',
|
|
|
|
name: I18n.t('All')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: 'global',
|
|
|
|
name: I18n.t('Public')
|
|
|
|
},
|
|
|
|
{
|
|
|
|
_id: 'user',
|
|
|
|
name: I18n.t('Private')
|
|
|
|
}
|
2022-05-03 00:30:20 +00:00
|
|
|
] as ILivechatDepartment[];
|
2021-09-22 17:29:26 +00:00
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
interface ICannedResponsesListViewProps {
|
|
|
|
navigation: StackNavigationProp<ChatsStackParamList, 'CannedResponsesListView'>;
|
|
|
|
route: RouteProp<ChatsStackParamList, 'CannedResponsesListView'>;
|
|
|
|
}
|
2021-09-22 17:29:26 +00:00
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const CannedResponsesListView = ({ navigation, route }: ICannedResponsesListViewProps): JSX.Element => {
|
|
|
|
const [room, setRoom] = useState<ISubscription | null>(null);
|
|
|
|
|
|
|
|
const [cannedResponses, setCannedResponses] = useState<ICannedResponse[]>([]);
|
|
|
|
const [cannedResponsesScopeName, setCannedResponsesScopeName] = useState<ICannedResponse[]>([]);
|
2022-05-03 00:30:20 +00:00
|
|
|
const [departments, setDepartments] = useState<ILivechatDepartment[]>([]);
|
2021-09-22 17:29:26 +00:00
|
|
|
|
|
|
|
// states used by the filter in Header and Dropdown
|
|
|
|
const [isSearching, setIsSearching] = useState(false);
|
|
|
|
const [currentDepartment, setCurrentDepartment] = useState(fixedScopes[0]);
|
|
|
|
const [showFilterDropdown, setShowFilterDropDown] = useState(false);
|
|
|
|
|
|
|
|
// states used to do a fetch by onChangeText, onDepartmentSelect and onEndReached
|
|
|
|
const [searchText, setSearchText] = useState('');
|
|
|
|
const [scope, setScope] = useState('');
|
|
|
|
const [departmentId, setDepartmentId] = useState('');
|
|
|
|
const [loading, setLoading] = useState(true);
|
|
|
|
const [offset, setOffset] = useState(0);
|
|
|
|
|
|
|
|
const insets = useSafeAreaInsets();
|
|
|
|
const { theme } = useTheme();
|
2022-05-03 00:30:20 +00:00
|
|
|
const isMasterDetail = useSelector((state: IApplicationState) => state.app.isMasterDetail);
|
|
|
|
const rooms = useSelector((state: IApplicationState) => state.room.rooms);
|
2021-09-22 17:29:26 +00:00
|
|
|
|
|
|
|
const getRoomFromDb = async () => {
|
|
|
|
const { rid } = route.params;
|
|
|
|
const db = database.active;
|
|
|
|
const subsCollection = db.get('subscriptions');
|
|
|
|
try {
|
|
|
|
const r = await subsCollection.find(rid);
|
|
|
|
setRoom(r);
|
|
|
|
} catch (error) {
|
|
|
|
console.log('CannedResponsesListView: Room not found');
|
|
|
|
log(error);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
const getDepartments = debounce(async () => {
|
|
|
|
try {
|
2022-05-03 00:30:20 +00:00
|
|
|
const res = await Services.getDepartments();
|
2021-09-22 17:29:26 +00:00
|
|
|
if (res.success) {
|
2022-05-03 00:30:20 +00:00
|
|
|
setDepartments([...fixedScopes, ...(res.departments as ILivechatDepartment[])]);
|
2021-09-22 17:29:26 +00:00
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
setDepartments(fixedScopes);
|
|
|
|
log(e);
|
|
|
|
}
|
|
|
|
}, 300);
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const goToDetail = (item: ICannedResponse) => {
|
|
|
|
if (room) {
|
|
|
|
navigation.navigate('CannedResponseDetail', { cannedResponse: item, room });
|
|
|
|
}
|
2021-09-22 17:29:26 +00:00
|
|
|
};
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const navigateToRoom = (item: ICannedResponse) => {
|
2021-09-22 17:29:26 +00:00
|
|
|
if (!room) {
|
|
|
|
return;
|
|
|
|
}
|
2022-02-04 22:15:01 +00:00
|
|
|
const { name } = room;
|
2021-09-22 17:29:26 +00:00
|
|
|
const params = {
|
|
|
|
rid: room.rid,
|
2022-04-28 20:37:25 +00:00
|
|
|
name: getRoomTitle({
|
2021-09-22 17:29:26 +00:00
|
|
|
t: room.t,
|
2022-02-04 22:15:01 +00:00
|
|
|
fname: name
|
2021-09-22 17:29:26 +00:00
|
|
|
}),
|
2022-05-03 00:30:20 +00:00
|
|
|
t: room.t,
|
2022-04-28 20:37:25 +00:00
|
|
|
roomUserId: getUidDirectMessage(room),
|
2021-09-22 17:29:26 +00:00
|
|
|
usedCannedResponse: item.text
|
|
|
|
};
|
|
|
|
|
|
|
|
if (room.rid) {
|
|
|
|
// if it's on master detail layout, we close the modal and replace RoomView
|
|
|
|
if (isMasterDetail) {
|
|
|
|
Navigation.navigate('DrawerNavigator');
|
2022-02-04 22:15:01 +00:00
|
|
|
goRoom({ item: params, isMasterDetail });
|
2021-09-22 17:29:26 +00:00
|
|
|
} else {
|
|
|
|
let navigate = navigation.push;
|
|
|
|
// if this is a room focused
|
|
|
|
if (rooms.includes(room.rid)) {
|
|
|
|
({ navigate } = navigation);
|
|
|
|
}
|
|
|
|
navigate('RoomView', params);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const getListCannedResponse = async ({
|
|
|
|
text,
|
|
|
|
department,
|
|
|
|
depId,
|
|
|
|
debounced
|
|
|
|
}: {
|
|
|
|
text: string;
|
|
|
|
department: string;
|
|
|
|
depId: string;
|
|
|
|
debounced: boolean;
|
|
|
|
}) => {
|
2021-09-22 17:29:26 +00:00
|
|
|
try {
|
2022-04-28 20:37:25 +00:00
|
|
|
const res = await Services.getListCannedResponse({
|
2021-09-22 17:29:26 +00:00
|
|
|
text,
|
|
|
|
offset,
|
|
|
|
count: COUNT,
|
|
|
|
departmentId: depId,
|
|
|
|
scope: department
|
|
|
|
});
|
|
|
|
if (res.success) {
|
|
|
|
// search with changes on text or scope are debounced
|
|
|
|
// the begin result and pagination aren't debounced
|
|
|
|
setCannedResponses(prevCanned => (debounced ? res.cannedResponses : [...prevCanned, ...res.cannedResponses]));
|
|
|
|
setLoading(false);
|
|
|
|
setOffset(prevOffset => prevOffset + COUNT);
|
|
|
|
}
|
|
|
|
} catch (e) {
|
|
|
|
log(e);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
if (departments.length > 0) {
|
|
|
|
const newCannedResponses = cannedResponses.map(cr => {
|
|
|
|
let scopeName = '';
|
|
|
|
|
|
|
|
if (cr?.departmentId) {
|
|
|
|
scopeName = departments.filter(dep => dep._id === cr.departmentId)[0]?.name || 'Department';
|
|
|
|
} else {
|
|
|
|
scopeName = departments.filter(dep => dep._id === cr.scope)[0]?.name;
|
|
|
|
}
|
|
|
|
cr.scopeName = scopeName;
|
|
|
|
|
|
|
|
return cr;
|
|
|
|
});
|
|
|
|
setCannedResponsesScopeName(newCannedResponses);
|
|
|
|
}
|
|
|
|
}, [departments, cannedResponses]);
|
|
|
|
|
|
|
|
const searchCallback = useCallback(
|
|
|
|
debounce(async (text = '', department = '', depId = '') => {
|
|
|
|
await getListCannedResponse({ text, department, depId, debounced: true });
|
|
|
|
}, 1000),
|
|
|
|
[]
|
|
|
|
); // use debounce with useCallback https://stackoverflow.com/a/58594890
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
getRoomFromDb();
|
|
|
|
getDepartments();
|
|
|
|
getListCannedResponse({ text: '', department: '', depId: '', debounced: false });
|
|
|
|
}, []);
|
|
|
|
|
|
|
|
const newSearch = () => {
|
|
|
|
setCannedResponses([]);
|
|
|
|
setLoading(true);
|
|
|
|
setOffset(0);
|
|
|
|
};
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const onChangeText = (text: string) => {
|
2021-09-22 17:29:26 +00:00
|
|
|
newSearch();
|
|
|
|
setSearchText(text);
|
|
|
|
searchCallback(text, scope, departmentId);
|
|
|
|
};
|
|
|
|
|
2022-05-03 00:30:20 +00:00
|
|
|
const onDepartmentSelect = (value: ILivechatDepartment) => {
|
2021-09-22 17:29:26 +00:00
|
|
|
let department = '';
|
|
|
|
let depId = '';
|
|
|
|
|
|
|
|
if (value._id === fixedScopes[0]._id) {
|
|
|
|
department = '';
|
|
|
|
} else if (value._id === fixedScopes[1]._id) {
|
|
|
|
department = 'global';
|
|
|
|
} else if (value._id === fixedScopes[2]._id) {
|
|
|
|
department = 'user';
|
|
|
|
} else {
|
|
|
|
department = 'department';
|
|
|
|
depId = value._id;
|
|
|
|
}
|
|
|
|
|
|
|
|
newSearch();
|
|
|
|
setCurrentDepartment(value);
|
|
|
|
setScope(department);
|
|
|
|
setDepartmentId(depId);
|
|
|
|
setShowFilterDropDown(false);
|
|
|
|
searchCallback(searchText, department, depId);
|
|
|
|
};
|
|
|
|
|
|
|
|
const onEndReached = async () => {
|
|
|
|
if (cannedResponses.length < offset || loading) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
setLoading(true);
|
|
|
|
await getListCannedResponse({ text: searchText, department: scope, depId: departmentId, debounced: false });
|
|
|
|
};
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const getHeader = (): StackNavigationOptions => {
|
2021-09-22 17:29:26 +00:00
|
|
|
if (isSearching) {
|
|
|
|
const headerTitlePosition = getHeaderTitlePosition({ insets, numIconsRight: 1 });
|
|
|
|
return {
|
|
|
|
headerTitleAlign: 'left',
|
|
|
|
headerLeft: () => (
|
|
|
|
<HeaderButton.Container left>
|
|
|
|
<HeaderButton.Item
|
|
|
|
iconName='close'
|
|
|
|
onPress={() => {
|
2022-02-04 22:15:01 +00:00
|
|
|
onChangeText('');
|
2021-09-22 17:29:26 +00:00
|
|
|
setIsSearching(false);
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</HeaderButton.Container>
|
|
|
|
),
|
2022-02-18 13:46:19 +00:00
|
|
|
headerTitle: () => <SearchHeader onSearchChangeText={onChangeText} testID='team-channels-view-search-header' />,
|
2021-09-22 17:29:26 +00:00
|
|
|
headerTitleContainerStyle: {
|
|
|
|
left: headerTitlePosition.left,
|
|
|
|
right: headerTitlePosition.right
|
|
|
|
},
|
|
|
|
headerRight: () => null
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
2022-02-04 22:15:01 +00:00
|
|
|
const options: StackNavigationOptions = {
|
2021-09-22 17:29:26 +00:00
|
|
|
headerLeft: () => (
|
|
|
|
<HeaderBackButton labelVisible={false} onPress={() => navigation.pop()} tintColor={themes[theme].headerTintColor} />
|
|
|
|
),
|
|
|
|
headerTitleAlign: 'center',
|
|
|
|
headerTitle: I18n.t('Canned_Responses'),
|
|
|
|
headerTitleContainerStyle: {
|
2022-04-08 14:27:10 +00:00
|
|
|
left: 0,
|
|
|
|
right: 0
|
2021-09-22 17:29:26 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
if (isMasterDetail) {
|
|
|
|
options.headerLeft = () => <HeaderButton.CloseModal navigation={navigation} />;
|
|
|
|
}
|
|
|
|
|
|
|
|
options.headerRight = () => (
|
|
|
|
<HeaderButton.Container>
|
|
|
|
<HeaderButton.Item iconName='search' onPress={() => setIsSearching(true)} />
|
|
|
|
</HeaderButton.Container>
|
|
|
|
);
|
|
|
|
return options;
|
|
|
|
};
|
|
|
|
|
|
|
|
const setHeader = () => {
|
|
|
|
const options = getHeader();
|
|
|
|
navigation.setOptions(options);
|
|
|
|
};
|
|
|
|
|
|
|
|
useEffect(() => {
|
|
|
|
setHeader();
|
|
|
|
}, [isSearching]);
|
|
|
|
|
|
|
|
const showDropdown = () => {
|
|
|
|
if (isSearching) {
|
|
|
|
setSearchText('');
|
|
|
|
setIsSearching(false);
|
|
|
|
}
|
|
|
|
setShowFilterDropDown(true);
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderFlatListHeader = () => {
|
|
|
|
if (!departments.length) {
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
<DropdownItemHeader department={currentDepartment} onPress={showDropdown} />
|
|
|
|
<List.Separator />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
const renderContent = () => {
|
|
|
|
if (!cannedResponsesScopeName.length && !loading) {
|
|
|
|
return (
|
|
|
|
<>
|
|
|
|
{renderFlatListHeader()}
|
|
|
|
<BackgroundContainer text={I18n.t('No_canned_responses')} />
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
}
|
|
|
|
return (
|
|
|
|
<FlatList
|
|
|
|
data={cannedResponsesScopeName}
|
|
|
|
extraData={cannedResponsesScopeName}
|
|
|
|
style={[styles.list, { backgroundColor: themes[theme].backgroundColor }]}
|
|
|
|
renderItem={({ item }) => (
|
|
|
|
<CannedResponseItem
|
|
|
|
theme={theme}
|
|
|
|
scope={item.scopeName}
|
|
|
|
shortcut={item.shortcut}
|
|
|
|
tags={item?.tags}
|
|
|
|
text={item.text}
|
|
|
|
onPressDetail={() => goToDetail(item)}
|
|
|
|
onPressUse={() => navigateToRoom(item)}
|
|
|
|
/>
|
|
|
|
)}
|
|
|
|
keyExtractor={item => item._id || item.shortcut}
|
|
|
|
ListHeaderComponent={renderFlatListHeader}
|
|
|
|
stickyHeaderIndices={[0]}
|
|
|
|
onEndReached={onEndReached}
|
|
|
|
onEndReachedThreshold={0.5}
|
|
|
|
ItemSeparatorComponent={List.Separator}
|
2022-03-18 02:37:10 +00:00
|
|
|
ListFooterComponent={loading ? <ActivityIndicator /> : null}
|
2021-09-22 17:29:26 +00:00
|
|
|
/>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
return (
|
|
|
|
<SafeAreaView>
|
|
|
|
<StatusBar />
|
|
|
|
{renderContent()}
|
|
|
|
{showFilterDropdown ? (
|
|
|
|
<Dropdown
|
|
|
|
departments={departments}
|
|
|
|
currentDepartment={currentDepartment}
|
|
|
|
onDepartmentSelected={onDepartmentSelect}
|
|
|
|
onClose={() => setShowFilterDropDown(false)}
|
|
|
|
/>
|
|
|
|
) : null}
|
|
|
|
</SafeAreaView>
|
|
|
|
);
|
|
|
|
};
|
|
|
|
|
|
|
|
export default CannedResponsesListView;
|