SidebarPage.js 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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. >
  86. {data.map(item => {
  87. let acc_check = item.title.toLowerCase()
  88. return (
  89. <List.Accordion
  90. key={acc_check}
  91. id={acc_check}
  92. style={[styles.accordionStyle, acc_check === expandedId && { backgroundColor: colors.tertiaryColor, borderColor: colors.tertiaryColor }]}
  93. titleStyle={[, styles.accordionTextStyle, acc_check === expandedId && { color: colors.white, fontFamily: fonts.type.semibold, }]}
  94. onPress={() => {
  95. // setExpandedsetIsShowingText(!isShowingText);
  96. // LayoutAnimation.configureNext(
  97. // LayoutAnimation.Presets.easeInEaseOut,
  98. // )
  99. // const nextState = { ...isExpanded };
  100. // nextState[item.title] = !nextState[item.title];
  101. //console.log("set state changes");
  102. }}
  103. left={() => <View style={{ paddingLeft: 16, }}><EntypoIcon name={item.icon} size={24} color={acc_check === expandedId ? colors.white : colors.black} /></View>}
  104. right={() => <EntypoIcon name={acc_check === expandedId ? "chevron-up" : "chevron-down"} size={12} color={acc_check === expandedId ? colors.white : colors.black} />}
  105. title={item.title}>
  106. {item.subTitles.map((subTitle) => (
  107. <List.Item
  108. key={`${item.title}_${subTitle}`}
  109. // key={`${item.title}_${item.subTitles.indexOf(subTitle)}`}
  110. //key={`Sidebar_${item.title}_${item.subTitles.indexOf(subTitle)}`}
  111. style={styles.accordionItemStyle}
  112. titleStyle={styles.accordionItemTextStyle}
  113. title={subTitle}
  114. />
  115. ))}
  116. </List.Accordion>
  117. )
  118. })}
  119. </List.AccordionGroup>
  120. </View>
  121. </ScrollView>
  122. </View>
  123. );
  124. };
  125. export default SidebarPage;
  126. const styles = StyleSheet.create({
  127. sideBarContainer: {
  128. paddingHorizontal: fonts.getSize(24),
  129. },
  130. logo: {
  131. width: fonts.getSize(84),
  132. height: fonts.getSize(84),
  133. },
  134. logoContainer: {
  135. justifyContent: 'center',
  136. alignItems: 'center',
  137. },
  138. buttonContainer: {},
  139. accordionContainer: {
  140. paddingVertical: fonts.getSize(16),
  141. gap: fonts.getSize(8),
  142. height:"100%"
  143. },
  144. accordionStyle: {
  145. backgroundColor: colors.white,
  146. borderRadius: fonts.getSize(8),
  147. borderWidth: fonts.getSize(3),
  148. borderColor: colors.lightGray,
  149. maxHeight: fonts.getSize(56),
  150. },
  151. accordionTextStyle: { fontFamily: fonts.type.medium },
  152. });