SidebarPage.js 6.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208
  1. import {
  2. LayoutAnimation,
  3. Platform,
  4. StyleSheet,
  5. Text,
  6. UIManager,
  7. View,
  8. ScrollView,
  9. TouchableOpacity,
  10. } from 'react-native';
  11. import React, {useState} from 'react';
  12. import NewscoutLogo from '../components/molecules/NewscoutLogo';
  13. import fonts from '../theme/fonts';
  14. import CircularPrimaryBackButton from '../components/organisms/Buttons/CircularPrimaryBackButton';
  15. import {List} from 'react-native-paper';
  16. import colors from '../theme/colors';
  17. import EntypoIcon from 'react-native-vector-icons/Entypo';
  18. import metrics from '../theme/metrics';
  19. const data = [
  20. {
  21. title: 'Sector Update',
  22. icon: 'area-graph',
  23. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  24. },
  25. {
  26. title: 'Regional Update',
  27. icon: 'network',
  28. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  29. },
  30. {
  31. title: 'Finance',
  32. icon: 'database',
  33. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  34. },
  35. {
  36. title: 'Economic',
  37. icon: 'line-graph',
  38. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  39. },
  40. {
  41. title: 'Miscellaneous',
  42. icon: 'documents',
  43. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  44. },
  45. {
  46. title: 'RSS',
  47. icon: 'rss',
  48. subTitles: ['Banking', 'Retail', 'Transport', 'Banking', 'Food & Drink'],
  49. },
  50. ];
  51. const SidebarPage = ({navigation, route}) => {
  52. const navigateToCategoryPage = (topic) => {
  53. navigation.navigate("CategoryPage",{category: topic})
  54. }
  55. if (
  56. Platform.OS === 'android' &&
  57. UIManager.setLayoutAnimationEnabledExperimental
  58. ) {
  59. UIManager.setLayoutAnimationEnabledExperimental(true);
  60. }
  61. // const [isExpanded, setExpanded] = useState(
  62. // data.map((item) => {
  63. // return {
  64. // key: item.title,
  65. // value: false
  66. // };
  67. // }).reduce((result, item) => {
  68. // result[item.key] = item.value;
  69. // return result;
  70. // }, {})
  71. // )
  72. const [expandedId, setExpandedId] = React.useState('');
  73. const handleAccordionPress = accordionId => {
  74. setExpandedId(accordionId === expandedId ? '' : accordionId);
  75. };
  76. return (
  77. <View style={styles.sideBarContainer}>
  78. <View style={styles.logoContainer}>
  79. <NewscoutLogo style={styles.logo} />
  80. </View>
  81. <View style={styles.buttonContainer}>
  82. <CircularPrimaryBackButton onPress={() => navigation.toggleDrawer()} />
  83. </View>
  84. <ScrollView showsVerticalScrollIndicator={false}>
  85. <View style={styles.accordionContainer}>
  86. <List.AccordionGroup
  87. expandedId={expandedId}
  88. onAccordionPress={handleAccordionPress}>
  89. {data.map(item => {
  90. let acc_check = item.title.toLowerCase();
  91. return (
  92. <List.Accordion
  93. key={acc_check}
  94. id={acc_check}
  95. style={[
  96. styles.accordionStyle,
  97. acc_check === expandedId && {
  98. backgroundColor: colors.tertiaryColor,
  99. borderColor: colors.tertiaryColor,
  100. },
  101. ]}
  102. titleStyle={[
  103. ,
  104. styles.accordionTextStyle,
  105. acc_check === expandedId && {
  106. color: colors.white,
  107. fontFamily: fonts.type.semibold,
  108. },
  109. ]}
  110. onPress={() => {
  111. // setExpandedsetIsShowingText(!isShowingText);
  112. // LayoutAnimation.configureNext(
  113. // LayoutAnimation.Presets.easeInEaseOut,
  114. // )
  115. // const nextState = { ...isExpanded };
  116. // nextState[item.title] = !nextState[item.title];
  117. //console.log("set state changes");
  118. }}
  119. left={() => (
  120. <View style={{paddingLeft: 16}}>
  121. <EntypoIcon
  122. name={item.icon}
  123. size={24}
  124. color={
  125. acc_check === expandedId ? colors.white : colors.black
  126. }
  127. />
  128. </View>
  129. )}
  130. right={() => (
  131. <EntypoIcon
  132. name={
  133. acc_check === expandedId ? 'chevron-up' : 'chevron-down'
  134. }
  135. size={12}
  136. color={
  137. acc_check === expandedId ? colors.white : colors.black
  138. }
  139. />
  140. )}
  141. title={item.title}>
  142. {item.subTitles.map(subTitle => (
  143. <TouchableOpacity onPress={() => navigateToCategoryPage(subTitle)}>
  144. <List.Item
  145. key={`${item.title}_${subTitle}`}
  146. // key={`${item.title}_${item.subTitles.indexOf(subTitle)}`}
  147. //key={`Sidebar_${item.title}_${item.subTitles.indexOf(subTitle)}`}
  148. style={styles.accordionItemStyle}
  149. titleStyle={styles.accordionItemTextStyle}
  150. title={subTitle}
  151. />
  152. </TouchableOpacity>
  153. ))}
  154. </List.Accordion>
  155. );
  156. })}
  157. </List.AccordionGroup>
  158. </View>
  159. </ScrollView>
  160. </View>
  161. );
  162. };
  163. export default SidebarPage;
  164. const styles = StyleSheet.create({
  165. sideBarContainer: {
  166. paddingHorizontal: fonts.getSize(24),
  167. },
  168. logo: {
  169. width: fonts.getSize(84),
  170. height: fonts.getSize(84),
  171. },
  172. logoContainer: {
  173. justifyContent: 'center',
  174. alignItems: 'center',
  175. },
  176. buttonContainer: {},
  177. accordionContainer: {
  178. paddingVertical: fonts.getSize(16),
  179. gap: fonts.getSize(8),
  180. height: '100%',
  181. },
  182. accordionStyle: {
  183. backgroundColor: colors.white,
  184. borderRadius: fonts.getSize(8),
  185. borderWidth: fonts.getSize(3),
  186. borderColor: colors.lightGray,
  187. maxHeight: fonts.getSize(56),
  188. },
  189. accordionTextStyle: {fontFamily: fonts.type.medium},
  190. accordionItemStyle:{
  191. },
  192. accordionItemTextStyle:{
  193. fontFamily: fonts.type.regular,
  194. color: colors.black
  195. }
  196. });