Files
EMI-ExpoAPP/Views/Courses.js
2026-02-20 20:18:27 -05:00

221 lines
7.4 KiB
JavaScript

import React, { useEffect } from "react";
import { Searchbar, Title } from 'react-native-paper';
import { ScrollView, ActivityIndicator, StyleSheet, SafeAreaView, View } from 'react-native';
import API from "../API";
import CourseCard from "../components/CourseCard";
import { useSnapshot } from 'valtio';
import GlobalState from '../contexts/GlobalState.js';
import i18n from "../i18nMessages.js";
import AsyncStorage from '@react-native-async-storage/async-storage';
const emptyCoursesData = {
courses: [],
popular: [],
watching: [],
};
const getCourses = async (profileObj = {}) => {
let courses = [];
let popular = [];
await API.getCourses().then((data) => {
const groups = Array.isArray(data?.groups) ? data.groups : [];
courses = groups;
popular = [...groups].sort((a, b) => {
return Object.keys(b.subscribed).length - Object.keys(a.subscribed).length;
});
});
let watching = {};
let watchingProms = [];
let viewerData = {};
try {
// Detach potential proxy/non-extensible objects before iterating keys.
viewerData = JSON.parse(JSON.stringify(profileObj?.data || {}));
} catch (error) {
viewerData = {};
}
Object.keys(viewerData).forEach((videoId) => {
const progress = viewerData[videoId];
if (progress?.profileId) {
let profileId = progress.profileId;
watchingProms.push(API.getUserProfile(profileId).then(profile => {
if (!profile.isCourse)
return 0;
if (!watching[profileId])
watching[profileId] = { profile, progress: [], mostRecent: 0 };
if (watching[profileId].mostRecent < progress.ts)
watching[profileId].mostRecent = progress.ts;
watching[profileId].progress.push(progress);
}));
}
});
let watchingArray = [];
await Promise.all(watchingProms).then(() => {
for (const courseId in watching) {
watchingArray.push(watching[courseId]);
}
watchingArray = watchingArray.sort((a, b) => {
return b.mostRecent - a.mostRecent;
});
});
return {
courses: courses.slice(0, 10),
popular: popular.slice(0, 10),
watching: watchingArray.slice(0, 10),
}
}
const storeCoursesCache = async (value) => {
try {
const jsonValue = JSON.stringify(value)
await AsyncStorage.setItem('courses', jsonValue)
} catch (e) {
}
}
const getCoursesCache = async () => {
try {
const value = await AsyncStorage.getItem('courses')
if (value !== null) {
return JSON.parse(value);
}
return emptyCoursesData;
} catch (e) {
return emptyCoursesData;
}
}
const Courses = () => {
const gState = useSnapshot(GlobalState);
const viewer = gState.me;
const [searchQuery, setSearchQuery] = React.useState('');
const [groups, setGroups] = React.useState([]);
const [popular, setPopular] = React.useState([]);
const [watching, setWatching] = React.useState([]);
const [queryTimer, setQueryTimer] = React.useState(0);
useEffect(() => {
let subscribed = true;
const getData = async () => {
const cached = await getCoursesCache();
console.log("Courses Cache");
if (subscribed) {
setGroups(Array.isArray(cached?.courses) ? cached.courses : []);
setPopular(Array.isArray(cached?.popular) ? cached.popular : []);
setWatching(Array.isArray(cached?.watching) ? cached.watching : []);
}
let r = await getCourses(viewer);
console.log("Courses Live");
if(subscribed){
setGroups(r.courses || []);
setPopular(r.popular || []);
setWatching(r.watching || []);
}
storeCoursesCache(r);
};
getData();
return () => {
subscribed = false;
}
}, [])
const onChangeSearch = query => {
setSearchQuery(query);
if (queryTimer) clearTimeout(queryTimer);
let timerId = setTimeout(() => {
if (!query) {
return API.getCourses('').then((data) => {
setGroups(data.groups || []);
});
}
API.searchCourses(query).then((data) => {
setGroups(data.groups || []);
})
}, 300);
setQueryTimer(timerId);
};
const renderCourseCards = (items = [], twoCols = false) => {
return items.map((item, index) => (
<CourseCard
key={item?._id || item?.profile?._id || `course-${index}`}
profileObj={item}
twoCols={twoCols}
/>
));
};
const renderWatchingCards = (items = []) => {
return items.map((item, index) => (
<CourseCard
key={item?.profile?._id || item?._id || `watching-${index}`}
profileObj={item?.profile}
/>
));
};
return (
<SafeAreaView style={styles.container}>
<Searchbar
placeholder = {i18n.t("message.searchCourses")}
onChangeText={onChangeSearch}
value={searchQuery}
/>
{groups.length ? <></> : <ActivityIndicator />}
<ScrollView>
{
(searchQuery.length === 0 && watching.length) ?
<View>
<Title style={styles.title} >{i18n.t("message.continueWatching")}:</Title>
<ScrollView horizontal={true} showsHorizontalScrollIndicator={false}>
{renderWatchingCards(watching)}
</ScrollView>
</View> : <></>
}
{
(searchQuery.length === 0 && groups.length) ?
<>
<Title style={styles.title} >{i18n.t("message.recentlyAdded")}:</Title>
<ScrollView horizontal={true} showsHorizontalScrollIndicator={false}>
{renderCourseCards(groups)}
</ScrollView>
</> : <></>
}
{
(searchQuery.length === 0 && popular.length) ?
<>
<Title style={styles.title} >{i18n.t("message.popularCourses")}:</Title>
<ScrollView horizontal={true} showsHorizontalScrollIndicator={false}>
{renderCourseCards(popular)}
</ScrollView>
</> : <></>
}
{
(searchQuery.length !== 0 && groups.length) ?
<View style={styles.searchGrid}>
{renderCourseCards(groups, true)}
</View> : <></>
}
</ScrollView>
</SafeAreaView>
)
}
export default Courses;
const styles = StyleSheet.create({
container: {
flex: 1
},
title: {
padding: 10,
fontSize: 30,
marginTop: 15,
fontWeight: "bold",
color: "#777"
},
searchGrid: {
flexDirection: 'row',
flexWrap: 'wrap',
justifyContent: 'space-between',
paddingHorizontal: 4,
}
});