UnsignedLandingPage.js 7.2 KB

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