Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[chore] Create back button component #84

Merged
merged 7 commits into from
Apr 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
194 changes: 107 additions & 87 deletions package-lock.json

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions src/app/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ function TabNav() {

return (
<Tabs
backBehavior="history"
screenOptions={{
tabBarLabelStyle: { fontSize: 14 },
tabBarHideOnKeyboard: true,
Expand Down
8 changes: 4 additions & 4 deletions src/app/(tabs)/author/index.tsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import * as cheerio from 'cheerio';
import { useLocalSearchParams, router } from 'expo-router';
import { decode } from 'html-entities';
import { useEffect, useState } from 'react';
Expand All @@ -14,7 +15,6 @@ import {
} from '../../../queries/authors';
import { Author, StoryPreview } from '../../../queries/types';
import globalStyles from '../../../styles/globalStyles';
import * as cheerio from 'cheerio';

function AuthorScreen() {
const [authorInfo, setAuthorInfo] = useState<Author>();
Expand Down Expand Up @@ -52,14 +52,14 @@ function AuthorScreen() {

return (
<SafeAreaView
style={[globalStyles.tabBarContainer, { marginHorizontal: -8 }]}
style={[globalStyles.tabBarContainer, { paddingHorizontal: 22 }]}
>
{isLoading ? (
<ActivityIndicator />
) : (
<ScrollView
showsVerticalScrollIndicator={false}
bounces={true}
bounces
contentContainerStyle={{ paddingHorizontal: 8 }}
>
<BackButton pressFunction={() => router.back()} />
Expand Down Expand Up @@ -139,7 +139,7 @@ function AuthorScreen() {
))}

{/* View so there's space between the tab bar and the stories */}
<View style={{ paddingBottom: 10 }}></View>
<View style={{ paddingBottom: 10 }} />
</ScrollView>
)}
</SafeAreaView>
Expand Down
1 change: 0 additions & 1 deletion src/app/(tabs)/author/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import colors from '../../../styles/colors';

const styles = StyleSheet.create({
authorCardContainer: {
marginTop: 16,
marginBottom: 8,
flexDirection: 'row',
justifyContent: 'flex-start',
Expand Down
16 changes: 5 additions & 11 deletions src/app/(tabs)/genre/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ import { SafeAreaView } from 'react-native-safe-area-context';

import styles from './styles';
import BackButton from '../../../components/BackButton/BackButton';
import PreviewCard from '../../../components/PreviewCard/PreviewCard';
import { fetchGenreStoryById } from '../../../queries/genres';
import { fetchStoryPreviewByIds } from '../../../queries/stories';
import { StoryPreview, GenreStories } from '../../../queries/types';
import globalStyles from '../../../styles/globalStyles';
import PreviewCard from '../../../components/PreviewCard/PreviewCard';

function GenreScreen() {
const [genreStoryData, setGenreStoryData] = useState<GenreStories[]>();
Expand Down Expand Up @@ -47,13 +47,13 @@ function GenreScreen() {

useEffect(() => {
const checkTopic = (preview: StoryPreview): boolean => {
if (preview == null || preview.topic == null) return false;
if (preview?.topic == null) return false;
if (selectedTopicsForFiltering.length == 0) return true;
else
return selectedTopicsForFiltering.every(t => preview.topic.includes(t));
};
const checkTone = (preview: StoryPreview): boolean => {
if (preview == null || preview.tone == null) return false;
if (preview?.tone == null) return false;
if (selectedTonesForFiltering.length == 0) return true;
else
return selectedTonesForFiltering.every(t => preview.tone.includes(t));
Expand Down Expand Up @@ -202,7 +202,7 @@ function GenreScreen() {
const renderGenreHeading = () => {
return (
<View>
<Text style={[globalStyles.h1, { marginTop: 15 }]}>
<Text style={globalStyles.h1}>
{selectedSubgenre === 'All' ? mainGenre : selectedSubgenre}
</Text>
{/* <Text style={[globalStyles.subHeading1]}> */}
Expand Down Expand Up @@ -297,13 +297,7 @@ function GenreScreen() {
>
<View style={styles.container}>
<View style={styles.headerContainer}>
<BackButton
pressFunction={() =>
router.push({
pathname: '/search',
})
}
/>
<BackButton pressFunction={() => router.back()} />

{useMemo(renderGenreHeading, [selectedSubgenre, mainGenre])}
{useMemo(renderGenreScrollSelector, [subgenres, selectedSubgenre])}
Expand Down
1 change: 0 additions & 1 deletion src/app/(tabs)/genre/styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const styles = StyleSheet.create({
container: {
paddingHorizontal: 24,
width: '100%',
marginTop: 24,
flex: 1,
},

Expand Down
17 changes: 7 additions & 10 deletions src/app/(tabs)/settings/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,19 +8,20 @@ import {
Pressable,
Appearance,
} from 'react-native';
import { Icon } from 'react-native-elements';
import { ScrollView } from 'react-native-gesture-handler';
import DateTimePickerModal from 'react-native-modal-datetime-picker';
import { SafeAreaView } from 'react-native-safe-area-context';
import { Icon } from 'react-native-elements';

import styles from './styles';
import colors from '../../../styles/colors';
import AccountDataDisplay from '../../../components/AccountDataDisplay/AccountDataDisplay';
import BackButton from '../../../components/BackButton/BackButton';
import StyledButton from '../../../components/StyledButton/StyledButton';
import UserSelectorInput from '../../../components/UserSelectorInput/UserSelectorInput';
import colors from '../../../styles/colors';
import globalStyles from '../../../styles/globalStyles';
import { useSession } from '../../../utils/AuthContext';
import supabase from '../../../utils/supabase';
import DateTimePickerModal from 'react-native-modal-datetime-picker';

function SettingsScreen() {
const { session, signOut } = useSession();
Expand Down Expand Up @@ -180,16 +181,12 @@ function SettingsScreen() {
edges={['right', 'left', 'top', 'bottom']}
>
<ScrollView
bounces={true}
bounces
contentContainerStyle={styles.main}
showsVerticalScrollIndicator={false}
>
<View>
<Link href="/home" style={styles.back}>
<Text style={[globalStyles.subtext, styles.backText]}>
{'<Back'}
</Text>
</Link>
<BackButton pressFunction={() => router.back()} />
<View>
<DateTimePickerModal
isVisible={showDatePicker}
Expand Down Expand Up @@ -229,7 +226,7 @@ function SettingsScreen() {
type="material"
color={colors.darkGrey}
style={styles.icon}
></Icon>
/>
</View>
</Pressable>
</View>
Expand Down
11 changes: 1 addition & 10 deletions src/app/(tabs)/settings/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import { StyleSheet } from 'react-native';

import colors from '../../../styles/colors';

export default StyleSheet.create({
Expand Down Expand Up @@ -27,16 +28,6 @@ export default StyleSheet.create({
heading: {
paddingBottom: 20,
},
back: {
paddingTop: 30,
paddingBottom: 16,
color: '#797979',
fontSize: 12,
fontWeight: '400',
},
backText: {
color: colors.darkGrey,
},
staticData: {
flexDirection: 'row',
flexWrap: 'wrap',
Expand Down
3 changes: 3 additions & 0 deletions src/app/(tabs)/story/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import { RenderHTML } from 'react-native-render-html';
import { SafeAreaView } from 'react-native-safe-area-context';

import styles from './styles';
import BackButton from '../../../components/BackButton/BackButton';
import { fetchStory } from '../../../queries/stories';
import { Story } from '../../../queries/types';
import colors from '../../../styles/colors';
Expand Down Expand Up @@ -74,6 +75,8 @@ function StoryScreen() {
ref={scrollRef}
showsVerticalScrollIndicator={false}
>
<BackButton pressFunction={() => router.back()} />

<Text style={[globalStyles.h1, styles.title]}>{story?.title}</Text>

<TouchableOpacity
Expand Down
2 changes: 1 addition & 1 deletion src/app/(tabs)/story/styles.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
import { StyleSheet } from 'react-native';

import colors from '../../../styles/colors';

const styles = StyleSheet.create({
container: {
paddingLeft: 24,
paddingRight: 24,
paddingTop: 48,
},
authorImage: {
backgroundColor: '#D9D9D9',
Expand Down
20 changes: 10 additions & 10 deletions src/app/auth/forgotPassword/index.tsx
Original file line number Diff line number Diff line change
@@ -1,17 +1,19 @@
import { router, Link } from 'expo-router';
import { useState, useRef, useEffect } from 'react';
import { Alert, Text, View } from 'react-native';
import validator from 'validator';
import { SafeAreaView } from 'react-native-safe-area-context';
import { useDebounce } from 'use-debounce';
import validator from 'validator';

import styles from './styles';
import globalStyles from '../../../styles/globalStyles';
import { useSession } from '../../../utils/AuthContext';
import UserStringInput from '../../../components/UserStringInput/UserStringInput';
import BackButton from '../../../components/BackButton/BackButton';
import StyledButton from '../../../components/StyledButton/StyledButton';
import { isEmailTaken } from '../../../queries/profiles';
import UserStringInput from '../../../components/UserStringInput/UserStringInput';
import { queryEmailByUsername } from '../../../queries/auth';
import { isEmailTaken } from '../../../queries/profiles';
import colors from '../../../styles/colors';
import globalStyles from '../../../styles/globalStyles';
import { useSession } from '../../../utils/AuthContext';

function ForgotPasswordScreen() {
const { resetPassword } = useSession();
Expand Down Expand Up @@ -71,10 +73,8 @@ function ForgotPasswordScreen() {
};

return (
<View style={styles.container}>
<Link href="/auth/login" style={styles.back}>
<Text style={[globalStyles.subtext, styles.backText]}>{'<Back'}</Text>
</Link>
<SafeAreaView style={styles.container}>
<BackButton pressFunction={() => router.back()} />
<View style={styles.body}>
<View>
<Text style={[globalStyles.h1, styles.heading]}>
Expand Down Expand Up @@ -106,7 +106,7 @@ function ForgotPasswordScreen() {
/>
</View>
</View>
</View>
</SafeAreaView>
);
}

Expand Down
16 changes: 2 additions & 14 deletions src/app/auth/forgotPassword/styles.tsx
Original file line number Diff line number Diff line change
@@ -1,20 +1,18 @@
import { StyleSheet } from 'react-native';

import colors from '../../../styles/colors';

export default StyleSheet.create({
container: {
flex: 1,
paddingVertical: 32,
paddingLeft: 30,
paddingRight: 30,
marginHorizontal: 42,
},
heading: {
paddingBottom: 8,
},
body: {
flex: 1,
justifyContent: 'space-between',
paddingHorizontal: 12,
},
button: {
paddingBottom: 40,
Expand All @@ -23,14 +21,4 @@ export default StyleSheet.create({
paddingVertical: 18,
color: colors.darkGrey,
},
back: {
paddingTop: 30,
paddingBottom: 16,
color: colors.darkGrey,
fontSize: 12,
fontWeight: '400',
},
backText: {
color: colors.darkGrey,
},
});
Loading
Loading