updated mobile app to stagger load conversations

This commit is contained in:
balzack 2022-12-28 14:55:54 -08:00
parent 2ad1071f01
commit 067abfea0d
7 changed files with 117 additions and 36 deletions

View File

@ -15,7 +15,7 @@
<key>CFBundlePackageType</key> <key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string> <string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>1.8</string> <string>1.9</string>
<key>CFBundleSignature</key> <key>CFBundleSignature</key>
<string>????</string> <string>????</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>

View File

@ -222,6 +222,17 @@ export function useCardContext() {
} }
} }
} }
const setCardChannelTopicMarker = (cardId, channelId, marker) => {
let card = cards.current.get(cardId);
if (card) {
let channel = card.channels.get(channelId);
if (channel) {
channel.topicMarker = marker;
card.channels.set(channelId, channel);
cards.current.set(cardId, card);
}
}
}
const setCardChannelBlocked = (cardId, channelId, blocked) => { const setCardChannelBlocked = (cardId, channelId, blocked) => {
let card = cards.current.get(cardId); let card = cards.current.get(cardId);
if (card) { if (card) {
@ -512,6 +523,12 @@ export function useCardContext() {
setCardChannelSyncRevision(cardId, channelId, revision); setCardChannelSyncRevision(cardId, channelId, revision);
updateState({ cards: cards.current }); updateState({ cards: cards.current });
}, },
setTopicMarker: async (cardId, channelId, marker) => {
const { guid } = session.current;
await store.actions.setCardChannelItemTopicMarker(guid, cardId, channelId, marker);
setCardChannelTopicMarker(cardId, channelId, marker);
updateState({ cards: cards.current });
},
setChannelBlocked: async (cardId, channelId) => { setChannelBlocked: async (cardId, channelId) => {
const { guid } = session.current; const { guid } = session.current;
await store.actions.setCardChannelItemBlocked(guid, cardId, channelId); await store.actions.setCardChannelItemBlocked(guid, cardId, channelId);
@ -556,9 +573,9 @@ export function useCardContext() {
const { detail, profile } = getCardEntry(cardId); const { detail, profile } = getCardEntry(cardId);
return await getContactChannelTopic(profile.node, `${profile.guid}.${detail.token}`, channelId, topicId); return await getContactChannelTopic(profile.node, `${profile.guid}.${detail.token}`, channelId, topicId);
}, },
getChannelTopics: async (cardId, channelId, revision) => { getChannelTopics: async (cardId, channelId, revision, count, begin, end) => {
const { detail, profile } = getCardEntry(cardId); const { detail, profile } = getCardEntry(cardId);
return await getContactChannelTopics(profile.node, `${profile.guid}.${detail.token}`, channelId, revision); return await getContactChannelTopics(profile.node, `${profile.guid}.${detail.token}`, channelId, revision, count, begin, end);
}, },
getChannelTopicAssetUrl: (cardId, channelId, topicId, assetId) => { getChannelTopicAssetUrl: (cardId, channelId, topicId, assetId) => {
const { detail, profile } = getCardEntry(cardId); const { detail, profile } = getCardEntry(cardId);

View File

@ -108,6 +108,13 @@ export function useChannelContext() {
channels.current.set(channelId, channel); channels.current.set(channelId, channel);
} }
} }
const setChannelTopicMarker = (channelId, marker) => {
let channel = channels.current.get(channelId);
if (channel) {
channel.topicMarker = marker;
channels.current.set(channelId, channel);
}
}
const setChannelBlocked = (channelId, blocked) => { const setChannelBlocked = (channelId, blocked) => {
let channel = channels.current.get(channelId); let channel = channels.current.get(channelId);
if (channel) { if (channel) {
@ -213,6 +220,12 @@ export function useChannelContext() {
setChannelSyncRevision(channelId, revision); setChannelSyncRevision(channelId, revision);
updateState({ channels: channels.current }); updateState({ channels: channels.current });
}, },
setTopicMarker: async (channelId, marker) => {
const { guid } = session.current;
await store.actions.setChannelItemTopicMarker(guid, channelId, marker);
setChannelTopicMarker(channelId, marker);
updateState({ channels: channels.current });
},
setBlocked: async (channelId) => { setBlocked: async (channelId) => {
const { guid } = session.current; const { guid } = session.current;
await store.actions.setChannelItemBlocked(guid, channelId); await store.actions.setChannelItemBlocked(guid, channelId);
@ -257,9 +270,9 @@ export function useChannelContext() {
const { server, appToken } = session.current; const { server, appToken } = session.current;
return await getChannelTopic(server, appToken, channelId, topicId); return await getChannelTopic(server, appToken, channelId, topicId);
}, },
getTopics: async (channelId, revision) => { getTopics: async (channelId, revision, count, begin, end) => {
const { server, appToken } = session.current; const { server, appToken } = session.current;
return await getChannelTopics(server, appToken, channelId, revision); return await getChannelTopics(server, appToken, channelId, revision, count, begin, end);
}, },
getTopicAssetUrl: (channelId, topicId, assetId) => { getTopicAssetUrl: (channelId, topicId, assetId) => {
const { server, appToken } = session.current; const { server, appToken } = session.current;

View File

@ -32,8 +32,9 @@ export function useConversationContext() {
const channel = useContext(ChannelContext); const channel = useContext(ChannelContext);
const profile = useContext(ProfileContext); const profile = useContext(ProfileContext);
const topics = useRef(null); const topics = useRef(null);
const revision = useRef(0); const revision = useRef(null);
const force = useRef(false); const force = useRef(false);
const more = useRef(false);
const detailRevision = useRef(0); const detailRevision = useRef(0);
const syncing = useRef(false); const syncing = useRef(false);
const conversationId = useRef(null); const conversationId = useRef(null);
@ -112,11 +113,11 @@ export function useConversationContext() {
} }
return await channel.actions.getTopic(channelId, topicId); return await channel.actions.getTopic(channelId, topicId);
} }
const getTopics = async (cardId, channelId, revision) => { const getTopics = async (cardId, channelId, revision, begin, end) => {
if (cardId) { if (cardId) {
return await card.actions.getChannelTopics(cardId, channelId, revision); return await card.actions.getChannelTopics(cardId, channelId, revision, 16, begin, end);
} }
return await channel.actions.getTopics(channelId, revision) return await channel.actions.getTopics(channelId, revision, 16, begin, end)
} }
const getTopicAssetUrl = (cardId, channelId, assetId) => { const getTopicAssetUrl = (cardId, channelId, assetId) => {
if (cardId) { if (cardId) {
@ -166,6 +167,12 @@ export function useConversationContext() {
} }
return await channel.actions.setSyncRevision(channelId, revision); return await channel.actions.setSyncRevision(channelId, revision);
} }
const setTopicMarker = async (cardId, channelId, marker) => {
if (cardId) {
return await card.actions.setTopicMarker(cardId, channelId, marker);
}
return await channel.actions.setTopicMarker(channelId, marker);
}
useEffect(() => { useEffect(() => {
if (conversationId.current) { if (conversationId.current) {
@ -189,31 +196,46 @@ export function useConversationContext() {
if (conversationId.current) { if (conversationId.current) {
const { cardId, channelId } = conversationId.current; const { cardId, channelId } = conversationId.current;
const channelItem = getChannel(cardId, channelId); const channelItem = getChannel(cardId, channelId);
if (channelItem && (channelItem.revision !== revision.current || force.current)) {
if (channelItem && (channelItem.revision !== revision.current || force.current || more.current)) {
syncing.current = true; syncing.current = true;
try { try {
// set channel details
if (detailRevision.current != channelItem.detailRevision) {
if (curView === setView.current) {
await setChannel(channelItem);
detailRevision.current = channelItem.detailRevision;
}
}
// initial load from store // sync from server
let res;
if (!topics.current) { if (!topics.current) {
topics.current = new Map(); topics.current = new Map();
const items = await getTopicItems(cardId, channelId); const items = await getTopicItems(cardId, channelId);
items.forEach(item => { items.forEach(item => {
topics.current.set(item.topicId, item); topics.current.set(item.topicId, item);
}); });
await setChannel(channelItem);
detailRevision.current = channelItem.detailRevision;
}
else if (detailRevision.current != channelItem.detailRevision) {
await setChannel(channelItem);
detailRevision.current = channelItem.detailRevision;
}
else if (more.current) {
more.current = false;
res = await getTopics(cardId, channelId, null, null, channelItem.topicMarker)
}
else if (channelItem.topicRevision !== channelItem.syncRevision || force.current) {
force.current = false;
res = await getTopics(cardId, channelId, channelItem.syncRevision, channelItem.topicMarker)
}
else {
if (cardId) {
card.actions.setChannelReadRevision(cardId, channelId, revision.current);
}
else {
channel.actions.setReadRevision(channelId, channelItem.revision);
}
revision.current = channelItem.revision;
} }
// sync from server if (res?.topics) {
if (channelItem.topicRevision != channelItem.syncRevision || force.current) {
force.current = false;
const res = await getTopics(cardId, channelId, channelItem.syncRevision)
for (const topic of res.topics) { for (const topic of res.topics) {
if (!topic.data) { if (!topic.data) {
topics.current.delete(topic.id); topics.current.delete(topic.id);
@ -238,18 +260,16 @@ export function useConversationContext() {
} }
} }
} }
}
if (res?.marker) {
await setTopicMarker(cardId, channelId, res.marker);
}
if (res?.revision) {
await setSyncRevision(cardId, channelId, res.revision); await setSyncRevision(cardId, channelId, res.revision);
} }
// update revision
revision.current = channelItem.revision;
if (curView == setView.current) { if (curView == setView.current) {
if (cardId) {
card.actions.setChannelReadRevision(cardId, channelId, revision.current);
}
else {
channel.actions.setReadRevision(channelId, revision.current);
}
updateState({ topics: topics.current, init: true, error: false }); updateState({ topics: topics.current, init: true, error: false });
} }
@ -637,6 +657,12 @@ export function useConversationContext() {
} }
} }
}, },
loadMore: () => {
if (conversationId.current) {
more.current = true;
sync();
}
},
resync: () => { resync: () => {
if (conversationId.current) { if (conversationId.current) {
force.current = true; force.current = true;

View File

@ -1,7 +1,7 @@
import { useEffect, useState, useRef, useContext } from 'react'; import { useEffect, useState, useRef, useContext } from 'react';
import SQLite from "react-native-sqlite-storage"; import SQLite from "react-native-sqlite-storage";
const DATABAG_DB = 'databag_v081.db'; const DATABAG_DB = 'db_v090.db';
export function useStoreContext() { export function useStoreContext() {
const [state, setState] = useState({}); const [state, setState] = useState({});
@ -12,10 +12,10 @@ export function useStoreContext() {
} }
const initSession = async (guid) => { const initSession = async (guid) => {
await db.current.executeSql(`CREATE TABLE IF NOT EXISTS channel_${guid} (channel_id text, revision integer, detail_revision integer, topic_revision integer, blocked integer, sync_revision integer, detail text, unsealed_detail text, summary text, unsealed_summary text, offsync integer, read_revision integer, unique(channel_id))`); await db.current.executeSql(`CREATE TABLE IF NOT EXISTS channel_${guid} (channel_id text, revision integer, detail_revision integer, topic_revision integer, topic_marker integer, blocked integer, sync_revision integer, detail text, unsealed_detail text, summary text, unsealed_summary text, offsync integer, read_revision integer, unique(channel_id))`);
await db.current.executeSql(`CREATE TABLE IF NOT EXISTS channel_topic_${guid} (channel_id text, topic_id text, revision integer, detail_revision integer, blocked integer, detail text, unsealed_detail text, unique(channel_id, topic_id))`); await db.current.executeSql(`CREATE TABLE IF NOT EXISTS channel_topic_${guid} (channel_id text, topic_id text, revision integer, detail_revision integer, blocked integer, detail text, unsealed_detail text, unique(channel_id, topic_id))`);
await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_${guid} (card_id text, revision integer, detail_revision integer, profile_revision integer, detail text, profile text, notified_view integer, notified_article integer, notified_profile integer, notified_channel integer, offsync integer, blocked integer, unique(card_id))`); await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_${guid} (card_id text, revision integer, detail_revision integer, profile_revision integer, detail text, profile text, notified_view integer, notified_article integer, notified_profile integer, notified_channel integer, offsync integer, blocked integer, unique(card_id))`);
await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_channel_${guid} (card_id text, channel_id text, revision integer, detail_revision integer, topic_revision integer, sync_revision integer, detail text, unsealed_detail text, summary text, unsealed_summary text, offsync integer, blocked integer, read_revision integer, unique(card_id, channel_id))`); await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_channel_${guid} (card_id text, channel_id text, revision integer, detail_revision integer, topic_revision integer, topic_marker integer, sync_revision integer, detail text, unsealed_detail text, summary text, unsealed_summary text, offsync integer, blocked integer, read_revision integer, unique(card_id, channel_id))`);
await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_channel_topic_${guid} (card_id text, channel_id text, topic_id text, revision integer, detail_revision integer, blocked integer, detail text, unsealed_detail text, unique(card_id, channel_id, topic_id))`); await db.current.executeSql(`CREATE TABLE IF NOT EXISTS card_channel_topic_${guid} (card_id text, channel_id text, topic_id text, revision integer, detail_revision integer, blocked integer, detail text, unsealed_detail text, unique(card_id, channel_id, topic_id))`);
} }
@ -212,6 +212,9 @@ export function useStoreContext() {
setChannelItemSyncRevision: async (guid, channelId, revision) => { setChannelItemSyncRevision: async (guid, channelId, revision) => {
await db.current.executeSql(`UPDATE channel_${guid} set sync_revision=? where channel_id=?`, [revision, channelId]); await db.current.executeSql(`UPDATE channel_${guid} set sync_revision=? where channel_id=?`, [revision, channelId]);
}, },
setChannelItemTopicMarker: async (guid, channelId, marker) => {
await db.current.executeSql(`UPDATE channel_${guid} set topic_marker=? where channel_id=?`, [marker, channelId]);
},
setChannelItemBlocked: async (guid, channelId) => { setChannelItemBlocked: async (guid, channelId) => {
await db.current.executeSql(`UPDATE channel_${guid} set blocked=? where channel_id=?`, [1, channelId]); await db.current.executeSql(`UPDATE channel_${guid} set blocked=? where channel_id=?`, [1, channelId]);
}, },
@ -242,13 +245,14 @@ export function useStoreContext() {
}; };
}, },
getChannelItems: async (guid) => { getChannelItems: async (guid) => {
const values = await getAppValues(db.current, `SELECT channel_id, read_revision, revision, sync_revision, blocked, detail_revision, topic_revision, detail, unsealed_detail, summary, unsealed_summary FROM channel_${guid}`, []); const values = await getAppValues(db.current, `SELECT channel_id, read_revision, revision, sync_revision, blocked, detail_revision, topic_revision, topic_marker, detail, unsealed_detail, summary, unsealed_summary FROM channel_${guid}`, []);
return values.map(channel => ({ return values.map(channel => ({
channelId: channel.channel_id, channelId: channel.channel_id,
revision: channel.revision, revision: channel.revision,
readRevision: channel.read_revision, readRevision: channel.read_revision,
detailRevision: channel.detail_revision, detailRevision: channel.detail_revision,
topicRevision: channel.topic_revision, topicRevision: channel.topic_revision,
topicMarker: channel.topic_marker,
syncRevision: channel.sync_revision, syncRevision: channel.sync_revision,
blocked: channel.blocked, blocked: channel.blocked,
detail: decodeObject(channel.detail), detail: decodeObject(channel.detail),
@ -311,6 +315,9 @@ export function useStoreContext() {
setCardChannelItemSyncRevision: async (guid, cardId, channelId, revision) => { setCardChannelItemSyncRevision: async (guid, cardId, channelId, revision) => {
await db.current.executeSql(`UPDATE card_channel_${guid} set sync_revision=? where card_id=? and channel_id=?`, [revision, cardId, channelId]); await db.current.executeSql(`UPDATE card_channel_${guid} set sync_revision=? where card_id=? and channel_id=?`, [revision, cardId, channelId]);
}, },
setCardChannelItemTopicMarker: async (guid, cardId, channelId, marker) => {
await db.current.executeSql(`UPDATE card_channel_${guid} set topic_marker=? where card_id=? and channel_id=?`, [marker, cardId, channelId]);
},
setCardChannelItemDetail: async (guid, cardId, channelId, revision, detail) => { setCardChannelItemDetail: async (guid, cardId, channelId, revision, detail) => {
await db.current.executeSql(`UPDATE card_channel_${guid} set detail_revision=?, detail=?, unsealed_detail=null where card_id=? and channel_id=?`, [revision, encodeObject(detail), cardId, channelId]); await db.current.executeSql(`UPDATE card_channel_${guid} set detail_revision=?, detail=?, unsealed_detail=null where card_id=? and channel_id=?`, [revision, encodeObject(detail), cardId, channelId]);
}, },
@ -335,7 +342,7 @@ export function useStoreContext() {
}; };
}, },
getCardChannelItems: async (guid) => { getCardChannelItems: async (guid) => {
const values = await getAppValues(db.current, `SELECT card_id, channel_id, read_revision, sync_revision, revision, blocked, detail_revision, topic_revision, detail, unsealed_detail, summary, unsealed_summary FROM card_channel_${guid}`, []); const values = await getAppValues(db.current, `SELECT card_id, channel_id, read_revision, sync_revision, revision, blocked, detail_revision, topic_revision, topic_marker, detail, unsealed_detail, summary, unsealed_summary FROM card_channel_${guid}`, []);
return values.map(channel => ({ return values.map(channel => ({
cardId: channel.card_id, cardId: channel.card_id,
channelId: channel.channel_id, channelId: channel.channel_id,
@ -343,6 +350,7 @@ export function useStoreContext() {
readRevision: channel.read_revision, readRevision: channel.read_revision,
detailRevision: channel.detail_revision, detailRevision: channel.detail_revision,
topicRevision: channel.topic_revision, topicRevision: channel.topic_revision,
topicMarker: channel.topic_marker,
syncRevision: channel.sync_revision, syncRevision: channel.sync_revision,
detail: decodeObject(channel.detail), detail: decodeObject(channel.detail),
unsealedDetail: decodeObject(channel.unsealed_detail), unsealedDetail: decodeObject(channel.unsealed_detail),

View File

@ -24,7 +24,12 @@ export function ConversationHeader({ closeConversation, openDetails, state, acti
<View style={styles.title}> <View style={styles.title}>
<TouchableOpacity style={styles.subject} activeOpacity={1} onPress={actions.resync}> <TouchableOpacity style={styles.subject} activeOpacity={1} onPress={actions.resync}>
<View style={styles.icon} /> <View style={styles.icon} />
<Text style={styles.subjectText} numberOfLines={1} ellipsizeMode={'tail'}>{ state.subject }</Text> { state.more && !state.latched && (
<ActivityIndicator size="small" color={Colors.primary} />
)}
{ (!state.more || state.latched) && (
<Text style={styles.subjectText} numberOfLines={1} ellipsizeMode={'tail'}>{ state.subject }</Text>
)}
<View style={styles.icon}> <View style={styles.icon}>
{ state.error && ( { state.error && (
<Ionicons name="exclamationcircleo" size={16} color={Colors.alert} /> <Ionicons name="exclamationcircleo" size={16} color={Colors.alert} />
@ -94,10 +99,12 @@ export function ConversationBody({ state, actions }) {
contentContainerStyle={styles.topics} contentContainerStyle={styles.topics}
ref={ref} ref={ref}
data={state.topics} data={state.topics}
onEndReached={actions.loadMore}
onMomentumScrollEnd={ Platform.OS === 'ios' ? noop : actions.unlatch } onMomentumScrollEnd={ Platform.OS === 'ios' ? noop : actions.unlatch }
onScrollBeginDrag={ Platform.OS !== 'ios' ? noop : actions.unlatch } onScrollBeginDrag={ Platform.OS !== 'ios' ? noop : actions.unlatch }
maintainVisibleContentPosition={ state.latched ? null : { minIndexForVisibile: 2, } } maintainVisibleContentPosition={ state.latched ? null : { minIndexForVisibile: 2, } }
inverted={true} inverted={true}
initialNumToRender={16}
renderItem={({item}) => <TopicItem item={item} focused={item.topicId === state.focus} renderItem={({item}) => <TopicItem item={item} focused={item.topicId === state.focus}
focus={() => actions.setFocus(item.topicId)} hosting={state.host == null} focus={() => actions.setFocus(item.topicId)} hosting={state.host == null}
sealed={state.sealed} sealKey={state.sealKey} sealed={state.sealed} sealKey={state.sealKey}

View File

@ -25,6 +25,7 @@ export function useConversation() {
locked: false, locked: false,
sealKey: null, sealKey: null,
delayed: false, delayed: false,
more: false,
}); });
const init = useRef(true); const init = useRef(true);
@ -129,6 +130,15 @@ export function useConversation() {
blockTopic: async (topicId) => { blockTopic: async (topicId) => {
await conversation.actions.blockTopic(topicId); await conversation.actions.blockTopic(topicId);
}, },
loadMore: async () => {
if (!state.more) {
updateState({ more: true });
setTimeout(() => {
updateState({ more: false });
}, 1000);
await conversation.actions.loadMore();
}
},
reportTopic: async (topicId) => { reportTopic: async (topicId) => {
await conversation.actions.addTopicReport(topicId); await conversation.actions.addTopicReport(topicId);
}, },