Skip to content

Commit

Permalink
Merge branch 'main' into adi/genre-filtering
Browse files Browse the repository at this point in the history
  • Loading branch information
adityapawar1 authored Apr 7, 2024
2 parents c52f92b + 507523a commit e1b03f9
Show file tree
Hide file tree
Showing 21 changed files with 810 additions and 62 deletions.
6 changes: 3 additions & 3 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 7 additions & 1 deletion src/app/(tabs)/_layout.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,6 @@ function TabNav() {
headerShown: false,
tabBarLabel: 'Home',
tabBarIcon: ({ color }) => HomeIcon({ color }),
// tabBarLabelStyle: { borderTopWidth: 12, paddingTop: 12 },
}}
/>
<Tabs.Screen
Expand Down Expand Up @@ -95,6 +94,13 @@ function TabNav() {
href: null,
}}
/>
<Tabs.Screen
name="genre"
options={{
headerShown: false,
href: null,
}}
/>
</Tabs>
);
}
Expand Down
54 changes: 29 additions & 25 deletions src/app/(tabs)/author/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ 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 All @@ -26,41 +27,39 @@ function AuthorScreen() {
useEffect(() => {
setLoading(true);
(async () => {
const storyData: StoryPreview[] = await fetchAuthorStoryPreviews(
parseInt(author as string, 10),
);
const authorData: Author = await fetchAuthor(
parseInt(author as string, 10),
);
try {
setAuthorInfo(authorData);
console.log('TESTING AUTHOR INFO QUERY OUTPUT:', authorInfo);
} catch (error) {
console.log(
`There was an error while trying to output authorinfo ${error}`,
const storyData: StoryPreview[] = await fetchAuthorStoryPreviews(
parseInt(author as string, 10),
);
}
try {
const authorData: Author = await fetchAuthor(
parseInt(author as string, 10),
);

// Assuming these setters do not throw, but if they do, they're caught by the catch block
setAuthorInfo(authorData);
setAuthorStoryPreview(storyData);
console.log('TESTING STORY PREVIEW INFO QUERY OUTPUT:', storyData);
} catch (error) {
console.log(
`There was an error while trying to output author story preview info ${error}`,
);
console.error('There was an error while fetching data:', error);
} finally {
setLoading(false);
}
})().then(() => {
setLoading(false);
});
})();
}, [author]);

const getTextFromHtml = (text: string) => {
return cheerio.load(text).text().trim();
};

return (
<SafeAreaView style={[globalStyles.container, { marginHorizontal: -8 }]}>
<SafeAreaView
style={[globalStyles.tabBarContainer, { marginHorizontal: -8 }]}
>
{isLoading ? (
<ActivityIndicator />
) : (
<ScrollView
showsVerticalScrollIndicator={false}
bounces={false}
bounces={true}
contentContainerStyle={{ paddingHorizontal: 8 }}
>
<BackButton pressFunction={() => router.back()} />
Expand All @@ -77,7 +76,7 @@ function AuthorScreen() {
numberOfLines={2}
style={globalStyles.h1}
>
{authorInfo.name}
{getTextFromHtml(authorInfo.name)}
</Text>
{authorInfo?.pronouns && (
<Text style={[globalStyles.subHeading2, styles.pronouns]}>
Expand All @@ -92,7 +91,9 @@ function AuthorScreen() {

{authorInfo?.bio && (
<>
<Text style={globalStyles.body1}>{decode(authorInfo.bio)}</Text>
<Text style={globalStyles.body1}>
{getTextFromHtml(authorInfo.bio)}
</Text>
<HorizontalLine />
</>
)}
Expand All @@ -105,7 +106,7 @@ function AuthorScreen() {
Artist's Statement
</Text>
<Text style={globalStyles.body1}>
{decode(authorInfo.artist_statement)}
{getTextFromHtml(authorInfo.artist_statement)}
</Text>
<HorizontalLine />
</>
Expand Down Expand Up @@ -135,6 +136,9 @@ function AuthorScreen() {
}
/>
))}

{/* View so there's space between the tab bar and the stories */}
<View style={{ paddingBottom: 10 }}></View>
</ScrollView>
)}
</SafeAreaView>
Expand Down
11 changes: 11 additions & 0 deletions src/app/(tabs)/genre/_layout.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { Stack } from 'expo-router';

function StackLayout() {
return (
<Stack>
<Stack.Screen name="index" options={{ headerShown: false }} />
</Stack>
);
}

export default StackLayout;
Loading

0 comments on commit e1b03f9

Please sign in to comment.