Improve feed/profile cache logs and add Expo app agent notes

This commit is contained in:
Adolfo Reyna
2026-02-20 20:10:07 -05:00
parent 009f1ec792
commit 487edb4a62
3 changed files with 205 additions and 15 deletions

View File

@@ -8,6 +8,11 @@ import NewPost from "./../components/NewPost.js";
import ProfileHeader from '../components/ProfileHeader.js';
import AsyncStorage from '@react-native-async-storage/async-storage';
const PROFILE_LOG_PREFIX = '[Profile]';
const logProfile = (...args) => {
if (__DEV__) console.log(PROFILE_LOG_PREFIX, ...args);
};
const storeProfilePosts = async (profileid, value) => {
try {
const jsonValue = JSON.stringify(value)
@@ -39,41 +44,74 @@ let Profile = ({ navigation, route }) => {
useEffect(() => {
let subscribed = true;
const getData = async () => {
logProfile('load:start', {
profileid: route?.params?.profileid || null,
tag,
});
setLoading(true);
setPosts([]);
if (route.params && route.params.profileid && tag == '') {
console.log('Loading Cache Profile:' + route.params.profileid);
logProfile('cache:read:start', { profileid: route.params.profileid });
await API.getUserProfile(route.params.profileid).then((profileObj) => {
if(!subscribed) return 0;
const nextProfile = profileObj && profileObj._id ? profileObj : {};
const profileData = nextProfile.profile || {};
setProfile(nextProfile);
navigation.setOptions({ title: (profileData.firstName || "") + " " + (profileData.lastName || "") });
logProfile('profile:loaded', {
profileid: nextProfile._id || route.params.profileid,
hasName: !!(profileData.firstName || profileData.lastName),
});
});
await getProfilePosts(route.params.profileid).then((cachedPosts) => {
const safeCachedPosts = Array.isArray(cachedPosts) ? cachedPosts : [];
setPosts(safeCachedPosts);
logProfile('cache:read:end', {
profileid: route.params.profileid,
count: safeCachedPosts.length,
});
});
await getProfilePosts(route.params.profileid).then(setPosts);
console.log('Loaded Cache Profile:' + route.params.profileid);
API.getPosts(route.params.profileid).then((data) => {
setLoading(false);
if(!subscribed) return 0;
setPosts(Array.isArray(data) ? data : []);
storeProfilePosts(route.params.profileid, data);
console.log('Store Cache Profile:' + route.params.profileid);
const safePosts = Array.isArray(data) ? data : [];
setPosts(safePosts);
storeProfilePosts(route.params.profileid, safePosts);
setLoading(false);
logProfile('network:loaded', {
profileid: route.params.profileid,
count: safePosts.length,
cached: true,
});
});
} else {
if(route.params && route.params.profileid){
console.log('Getting posts with tag', tag)
logProfile('tag:load:start', {
profileid: route.params.profileid,
tag,
});
API.getPostsWithTag(route.params.profileid, tag).then((data) => {
if(!subscribed) return 0;
setPosts(Array.isArray(data?.posts) ? data.posts : []);
const safeTagPosts = Array.isArray(data?.posts) ? data.posts : [];
setPosts(safeTagPosts);
setLoading(false);
logProfile('tag:load:end', {
profileid: route.params.profileid,
tag,
count: safeTagPosts.length,
});
});
} else {
// if no profile information is pressent should load feed
logProfile('redirect:feed');
navigation.navigate('Feed')
}
}
logProfile('load:end');
}
getData();
return ()=>{
subscribed = false;
logProfile('load:cleanup');
}
}, [tag, route.params?.profileid]);
@@ -149,7 +187,22 @@ let Profile = ({ navigation, route }) => {
maxToRenderPerBatch={3}
removeClippedSubviews={true}
onRefresh={() => {
API.getPosts(route.params.profileid).then((data) => setPosts(Array.isArray(data) ? data : []));
logProfile('refresh:start', {
profileid: route?.params?.profileid || null,
tag,
});
setLoading(true);
API.getPosts(route.params.profileid).then((data) => {
const safePosts = Array.isArray(data) ? data : [];
setPosts(safePosts);
storeProfilePosts(route.params.profileid, safePosts);
setLoading(false);
logProfile('refresh:end', {
profileid: route.params.profileid,
count: safePosts.length,
cached: true,
});
});
}}
/> :
<></> //TODO: Add empty profile card here