UnsignedLandingPage.js 7.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. import { StyleSheet, Text, View, ScrollView, FlatList, TouchableWithoutFeedback } from 'react-native'
  2. import { useState } from 'react'
  3. import fonts from '../theme/fonts'
  4. import colors from '../theme/colors'
  5. import PrimaryButton from '../components/organisms/Buttons/PrimaryButton'
  6. import { Portal, ToggleButton, Modal, PaperProvider, IconButton } from 'react-native-paper'
  7. import HorizontalNewsCardVariant from '../components/organisms/Cards/HorizontalNewsCardVariant'
  8. import NewscoutHomeHeader from '../components/organisms/Headers/NewscoutHomeHeader'
  9. import SecondaryButton from '../components/organisms/Buttons/SecondaryButton'
  10. import ThemedTextButton from '../components/organisms/Buttons/ThemedTextButton'
  11. const UnsignedLandingPage = ({ navigation }) => {
  12. const categories = ["All", "Tech", "Banking", "Retail", "Politics"]
  13. const news = [{}, {}, {}, {}, {}, {}, {}]
  14. const [categoryValue, setCategoryValue] = useState('all')
  15. const [visible, setVisible] = useState(false);
  16. const showModal = () => setVisible(true);
  17. const hideModal = () => setVisible(false);
  18. const homePageNavigation = () => {
  19. navigation.navigate('Home')
  20. }
  21. return (
  22. <PaperProvider>
  23. <NewscoutHomeHeader />
  24. <View style={styles.container}>
  25. <Portal>
  26. <Modal visible={visible} onDismiss={hideModal} contentContainerStyle={styles.modalContainerStyle}>
  27. <IconButton
  28. icon="close"
  29. iconColor={colors.black}
  30. size={16}
  31. onPress={hideModal}
  32. style={{ alignSelf: 'flex-end' }}
  33. />
  34. <Text
  35. style={{
  36. fontFamily: fonts.type.regular,
  37. color: colors.black,
  38. fontSize: fonts.getSize(14),
  39. paddingTop: fonts.getSize(8),
  40. paddingBottom: fonts.getSize(16)
  41. }}
  42. >
  43. You are not logged in. Log in to bookmark news, leave comment and to explore more!
  44. </Text>
  45. <ThemedTextButton title="Login" onPress={homePageNavigation} theme={"secondary-contained"}/>
  46. <View style={{ flexDirection: 'row', justifyContent:'center',alignItems:'center',paddingVertical:fonts.getSize(16)}}>
  47. <Text
  48. style={{
  49. color: colors.black,
  50. fontFamily: fonts.type.regular
  51. }}
  52. >Don’t have account? </Text>
  53. <TouchableWithoutFeedback onPress={true}>
  54. <Text
  55. style={{
  56. color: colors.secondaryColor,
  57. fontFamily: fonts.type.regular
  58. }}
  59. >
  60. Create one
  61. </Text>
  62. </TouchableWithoutFeedback>
  63. </View>
  64. </Modal>
  65. </Portal>
  66. <Text style={styles.loginText}>You are not logged in. Sign in or log in to bookmark news leave comment and a lot more!</Text>
  67. <PrimaryButton title="Sign In" onPress={showModal} />
  68. <View style={styles.underlinePillContainer}>
  69. <ScrollView horizontal showsHorizontalScrollIndicator={false}>
  70. <ToggleButton.Group onValueChange={value => setCategoryValue(value)}>
  71. {
  72. categories.map((category) => {
  73. let valueId = category.toLowerCase()
  74. return <ToggleButton
  75. icon={() =>
  76. <Text style={
  77. [
  78. valueId === categoryValue ?
  79. styles.selectedPillText :
  80. styles.pillText,
  81. {
  82. paddingHorizontal: fonts.getSize(11),
  83. fontSize: fonts.getSize(16)
  84. }
  85. ]
  86. }>
  87. {category}
  88. </Text>}
  89. style={[styles.underlinePill]}
  90. value={valueId}
  91. />
  92. })
  93. }
  94. </ToggleButton.Group>
  95. </ScrollView>
  96. </View>
  97. <FlatList
  98. showsVerticalScrollIndicator={false}
  99. ItemSeparatorComponent={() => <View style={{ height: fonts.getSize(8) }}></View>}
  100. // ListFooterComponent={() => <View style={{height: fonts.getSize(16)}}></View>}
  101. ListHeaderComponent={() => <View style={{ height: fonts.getSize(16) }}></View>}
  102. data={news}
  103. renderItem={(item) => <HorizontalNewsCardVariant onPress={true} />}
  104. keyExtractor={item => news.indexOf(item)}
  105. />
  106. {/* <ScrollView showsVerticalScrollIndicator={false}>
  107. <View style={styles.cardContainer}>
  108. {
  109. news.map((newsItem) => <HorizontalNewsCardVariant onPress={true} />)
  110. }
  111. </View>
  112. </ScrollView> */}
  113. </View>
  114. </PaperProvider>
  115. )
  116. }
  117. export default UnsignedLandingPage
  118. const styles = StyleSheet.create({
  119. container: {
  120. paddingHorizontal: fonts.getSize(16),
  121. backgroundColor: colors.white
  122. },
  123. loginText: {
  124. fontFamily: fonts.type.regular,
  125. paddingVertical: fonts.getSize(16),
  126. color: colors.black
  127. },
  128. underlinePillContainer: {
  129. paddingVertical: fonts.getSize(8),
  130. flexDirection: 'row',
  131. alignItems: 'space-between',
  132. },
  133. selectedPillText: {
  134. fontFamily: fonts.type.semibold,
  135. fontSize: fonts.getSize(12),
  136. color: colors.black,
  137. borderBottomWidth: fonts.getSize(4),
  138. borderBottomColor: colors.tertiaryColor,
  139. borderRadius: 0
  140. },
  141. pillText: {
  142. fontFamily: fonts.type.semibold,
  143. fontSize: fonts.getSize(12),
  144. color: colors.gray
  145. },
  146. underlinePill: {
  147. width: 'auto',
  148. },
  149. cardContainer: {
  150. gap: fonts.getSize(4),
  151. paddingVertical: fonts.getSize(4)
  152. },
  153. modalContainerStyle: {
  154. padding: fonts.getSize(16),
  155. width: 'auto',
  156. marginHorizontal: fonts.getSize(32),
  157. backgroundColor: colors.white,
  158. borderRadius: fonts.getSize(4)
  159. }
  160. })