/* * Copyright (c) 2019 - 2020 Arnaud Vergnet. * * This file is part of Campus INSAT. * * Campus INSAT is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * Campus INSAT is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with Campus INSAT. If not, see . */ import * as React from 'react'; import {Card, Chip, List, Text} from 'react-native-paper'; import {StyleSheet, View} from 'react-native'; import i18n from 'i18n-js'; import AnimatedAccordion from '../../Animations/AnimatedAccordion'; import {isItemInCategoryFilter} from '../../../utils/Search'; import type {ClubCategoryType} from '../../../screens/Amicale/Clubs/ClubListScreen'; type PropsType = { categories: Array; onChipSelect: (id: number) => void; selectedCategories: Array; }; const styles = StyleSheet.create({ card: { margin: 5, }, text: { paddingLeft: 0, marginTop: 5, marginBottom: 10, marginLeft: 'auto', marginRight: 'auto', }, chipContainer: { justifyContent: 'space-around', flexDirection: 'row', flexWrap: 'wrap', paddingLeft: 0, marginBottom: 5, }, }); function ClubListHeader(props: PropsType) { const getChipRender = (category: ClubCategoryType, key: string) => { const onPress = (): void => props.onChipSelect(category.id); return ( {category.name} ); }; const getCategoriesRender = () => { const final: Array = []; props.categories.forEach((cat: ClubCategoryType) => { final.push(getChipRender(cat, cat.id.toString())); }); return final; }; return ( ( )} opened> {i18n.t('screens.clubs.categoriesFilterMessage')} {getCategoriesRender()} ); } const areEqual = (prevProps: PropsType, nextProps: PropsType): boolean => { return ( prevProps.selectedCategories.length === nextProps.selectedCategories.length ); }; export default React.memo(ClubListHeader, areEqual);