SidebarPage.js 5.8 KB

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