UnsignedLandingPage.js 7.2 KB

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