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

unreads: more polish for desktop #4546

Merged
merged 9 commits into from
Mar 25, 2025
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
1 change: 1 addition & 0 deletions packages/app/navigation/desktop/TopLevelDrawer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ const Drawer = createDrawerNavigator<RootDrawerParamList>();

const DrawerContent = (props: DrawerContentComponentProps) => {
const userId = useCurrentUserId();
// const { data: baseUnread } = store.useBaseUnread();
const haveUnreadUnseenActivity = store.useHaveUnreadUnseenActivity();
const { webAppNeedsUpdate, triggerWebAppUpdate } = useWebAppUpdate();
const lastHomeStateRef =
Expand Down
5 changes: 3 additions & 2 deletions packages/app/ui/components/Channel/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -180,11 +180,12 @@ export const Channel = forwardRef<ChannelMethods, ChannelProps>(

const inView = useIsFocused();
const hasLoaded = !!(posts && channel);
const hasUnreads = (channel?.unread?.count ?? 0) > 0;
useEffect(() => {
if (hasLoaded && inView) {
if (hasUnreads && hasLoaded && inView) {
markRead();
}
}, [hasLoaded, inView, markRead]);
}, [hasUnreads, hasLoaded, inView, markRead]);

const handleRefPress = useCallback(
(refChannel: db.Channel, post: db.Post) => {
Expand Down
39 changes: 37 additions & 2 deletions packages/shared/src/api/activityApi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { unixToDa } from '@urbit/aura';
import { backOff } from 'exponential-backoff';

import * as db from '../db';
import { BASE_UNREADS_SINGLETON_KEY } from '../db/schema';
import { createDevLogger, runIfDev } from '../debug';
import { normalizeUrbitColor } from '../logic';
import * as ub from '../urbit';
Expand All @@ -13,7 +14,7 @@ import {
parseGroupId,
udToDate,
} from './apiUtils';
import { poke, scry, subscribe } from './urbit';
import { getCurrentUserId, poke, scry, subscribe } from './urbit';

const logger = createDevLogger('activityApi', false);

Expand Down Expand Up @@ -378,6 +379,7 @@ function getInfoFromMessageKey(
}

export type ActivityEvent =
| { type: 'updateBaseUnread'; unread: db.BaseUnread }
| {
type: 'updateChannelUnread';
activity: db.ChannelUnread;
Expand Down Expand Up @@ -414,6 +416,18 @@ export function subscribeToActivity(handler: (event: ActivityEvent) => void) {
const source = sourceIdToSource(sourceId);

switch (source.type) {
// case 'base':
// handler({
// type: 'updateBaseUnread',
// unread: {
// id: BASE_UNREADS_SINGLETON_KEY,
// count: summary.count,
// notify: summary.notify,
// notifyCount: summary['notify-count'],
// updatedAt: summary.recency,
// },
// });
// break;
case 'group':
handler({
type: 'updateGroupUnread',
Expand Down Expand Up @@ -724,6 +738,10 @@ export function getMessageKey(
Sources can be represented as a string or an object (see urbit/activity.ts for details).
*/

interface ClientBaseSource {
type: 'base';
}

interface ClientGroupSource {
type: 'group';
groupId: string;
Expand Down Expand Up @@ -751,13 +769,18 @@ interface ClientContactSource {
}

export type ClientSource =
| ClientBaseSource
| ClientGroupSource
| ClientChannelSource
| ClientThreadSource
| ClientUnknownSource
| ClientContactSource;

export function sourceIdToSource(sourceId: string): ClientSource {
if (sourceId === 'base') {
return { type: 'base' };
}

const parts = sourceId.split('/');
const sourceType = parts[0];

Expand Down Expand Up @@ -934,6 +957,7 @@ export async function getPushNotificationsSetting(): Promise<ub.PushNotification
}

export type ActivityUpdateQueue = {
baseUnread?: db.BaseUnread;
groupUnreads: db.GroupUnread[];
channelUnreads: db.ChannelUnread[];
threadUnreads: db.ThreadUnreadState[];
Expand All @@ -942,6 +966,7 @@ export type ActivityUpdateQueue = {
};

export type ActivityInit = {
baseUnread?: db.BaseUnread;
groupUnreads: db.GroupUnread[];
channelUnreads: db.ChannelUnread[];
threadActivity: db.ThreadUnreadState[];
Expand All @@ -951,8 +976,18 @@ export const toClientUnreads = (activity: ub.Activity): ActivityInit => {
const groupUnreads: db.GroupUnread[] = [];
const channelUnreads: db.ChannelUnread[] = [];
const threadActivity: db.ThreadUnreadState[] = [];
let baseUnread: db.BaseUnread | undefined = undefined;

Object.entries(activity).forEach(([sourceId, summary]) => {
if (sourceId === 'base') {
baseUnread = {
id: BASE_UNREADS_SINGLETON_KEY,
count: summary.count,
notify: summary.notify,
notifyCount: summary['notify-count'],
updatedAt: summary.recency,
};
}
const [activityId, ...rest] = sourceId.split('/');
if (activityId === 'ship' || activityId === 'club') {
const channelId = rest.join('/');
Expand Down Expand Up @@ -984,7 +1019,7 @@ export const toClientUnreads = (activity: ub.Activity): ActivityInit => {
}
});

return { channelUnreads, threadActivity, groupUnreads };
return { baseUnread, channelUnreads, threadActivity, groupUnreads };
};

export const toGroupUnread = (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ CREATE TABLE `activity_event_contact_group_pins` (
`group_id` text NOT NULL,
PRIMARY KEY(`activity_event_id`, `group_id`),
FOREIGN KEY (`activity_event_id`) REFERENCES `activity_events`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`group_id`) REFERENCES `groups`(`id`) ON UPDATE no action ON DELETE no action
FOREIGN KEY (`group_id`) REFERENCES `groups`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `activity_events` (
Expand All @@ -28,6 +28,14 @@ CREATE TABLE `activity_events` (
PRIMARY KEY(`id`, `bucket_id`)
);
--> statement-breakpoint
CREATE TABLE `base_unreads` (
`id` text PRIMARY KEY DEFAULT 'base_unreads' NOT NULL,
`notify` integer,
`count` integer,
`notify_count` integer,
`updated_at` integer NOT NULL
);
--> statement-breakpoint
CREATE TABLE `channel_readers` (
`channel_id` text NOT NULL,
`role_id` text NOT NULL,
Expand Down Expand Up @@ -103,7 +111,7 @@ CREATE TABLE `contact_group_pins` (
`group_id` text NOT NULL,
PRIMARY KEY(`contact_id`, `group_id`),
FOREIGN KEY (`contact_id`) REFERENCES `contacts`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`group_id`) REFERENCES `groups`(`id`) ON UPDATE no action ON DELETE no action
FOREIGN KEY (`group_id`) REFERENCES `groups`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `contacts` (
Expand Down Expand Up @@ -165,8 +173,8 @@ CREATE TABLE `group_nav_section_channels` (
`channel_id` text,
`channel_index` integer,
PRIMARY KEY(`group_nav_section_id`, `channel_id`),
FOREIGN KEY (`group_nav_section_id`) REFERENCES `group_nav_sections`(`id`) ON UPDATE no action ON DELETE no action,
FOREIGN KEY (`channel_id`) REFERENCES `channels`(`id`) ON UPDATE no action ON DELETE no action
FOREIGN KEY (`group_nav_section_id`) REFERENCES `group_nav_sections`(`id`) ON UPDATE no action ON DELETE cascade,
FOREIGN KEY (`channel_id`) REFERENCES `channels`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `group_nav_sections` (
Expand Down Expand Up @@ -247,15 +255,15 @@ CREATE TABLE `post_images` (
`width` integer,
`height` integer,
PRIMARY KEY(`post_id`, `src`),
FOREIGN KEY (`post_id`) REFERENCES `posts`(`id`) ON UPDATE no action ON DELETE no action
FOREIGN KEY (`post_id`) REFERENCES `posts`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `post_reactions` (
`contact_id` text NOT NULL,
`post_id` text NOT NULL,
`value` text NOT NULL,
PRIMARY KEY(`contact_id`, `post_id`),
FOREIGN KEY (`post_id`) REFERENCES `posts`(`id`) ON UPDATE no action ON DELETE no action
FOREIGN KEY (`post_id`) REFERENCES `posts`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE TABLE `post_windows` (
Expand Down Expand Up @@ -299,15 +307,16 @@ CREATE TABLE `posts` (
`last_edit_title` text,
`last_edit_image` text,
`synced_at` integer,
`backend_time` text
`backend_time` text,
FOREIGN KEY (`channel_id`) REFERENCES `channels`(`id`) ON UPDATE no action ON DELETE cascade
);
--> statement-breakpoint
CREATE UNIQUE INDEX `posts_sent_at_unique` ON `posts` (`sent_at`);--> statement-breakpoint
CREATE UNIQUE INDEX `cache_id` ON `posts` (`author_id`,`sent_at`);--> statement-breakpoint
CREATE INDEX `posts_channel_id` ON `posts` (`channel_id`,`id`);--> statement-breakpoint
CREATE INDEX `posts_group_id` ON `posts` (`group_id`,`id`);--> statement-breakpoint
CREATE TABLE `settings` (
`user_id` text PRIMARY KEY NOT NULL,
`id` text PRIMARY KEY DEFAULT 'settings' NOT NULL,
`theme` text,
`disable_app_tile_unreads` integer,
`disable_avatars` integer,
Expand Down
83 changes: 58 additions & 25 deletions packages/shared/src/db/migrations/meta/0000_snapshot.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"version": "6",
"dialect": "sqlite",
"id": "fa25c16a-e15a-45be-9783-6405cc7a2e14",
"id": "05c115b9-7747-4c40-8ebf-c8e7baecb098",
"prevId": "00000000-0000-0000-0000-000000000000",
"tables": {
"activity_event_contact_group_pins": {
Expand Down Expand Up @@ -47,7 +47,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
}
},
Expand Down Expand Up @@ -207,6 +207,52 @@
"uniqueConstraints": {},
"checkConstraints": {}
},
"base_unreads": {
"name": "base_unreads",
"columns": {
"id": {
"name": "id",
"type": "text",
"primaryKey": true,
"notNull": true,
"autoincrement": false,
"default": "'base_unreads'"
},
"notify": {
"name": "notify",
"type": "integer",
"primaryKey": false,
"notNull": false,
"autoincrement": false
},
"count": {
"name": "count",
"type": "integer",
"primaryKey": false,
"notNull": false,
"autoincrement": false
},
"notify_count": {
"name": "notify_count",
"type": "integer",
"primaryKey": false,
"notNull": false,
"autoincrement": false
},
"updated_at": {
"name": "updated_at",
"type": "integer",
"primaryKey": false,
"notNull": true,
"autoincrement": false
}
},
"indexes": {},
"foreignKeys": {},
"compositePrimaryKeys": {},
"uniqueConstraints": {},
"checkConstraints": {}
},
"channel_readers": {
"name": "channel_readers",
"columns": {
Expand Down Expand Up @@ -639,21 +685,7 @@
}
},
"indexes": {},
"foreignKeys": {
"group_members_chat_id_channels_id_fk": {
"name": "group_members_chat_id_channels_id_fk",
"tableFrom": "group_members",
"tableTo": "channels",
"columnsFrom": [
"chat_id"
],
"columnsTo": [
"id"
],
"onDelete": "cascade",
"onUpdate": "no action"
}
},
"foreignKeys": {},
"compositePrimaryKeys": {
"group_members_chat_id_contact_id_pk": {
"columns": [
Expand Down Expand Up @@ -709,7 +741,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
}
},
Expand Down Expand Up @@ -1125,7 +1157,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
},
"group_nav_section_channels_channel_id_channels_id_fk": {
Expand All @@ -1138,7 +1170,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
}
},
Expand Down Expand Up @@ -1659,7 +1691,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
}
},
Expand Down Expand Up @@ -1712,7 +1744,7 @@
"columnsTo": [
"id"
],
"onDelete": "no action",
"onDelete": "cascade",
"onUpdate": "no action"
}
},
Expand Down Expand Up @@ -2069,12 +2101,13 @@
"settings": {
"name": "settings",
"columns": {
"user_id": {
"name": "user_id",
"id": {
"name": "id",
"type": "text",
"primaryKey": true,
"notNull": true,
"autoincrement": false
"autoincrement": false,
"default": "'settings'"
},
"theme": {
"name": "theme",
Expand Down
4 changes: 2 additions & 2 deletions packages/shared/src/db/migrations/meta/_journal.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@
{
"idx": 0,
"version": "6",
"when": 1742234785697,
"tag": "0000_sour_wonder_man",
"when": 1742590441336,
"tag": "0000_amused_leopardon",
"breakpoints": true
}
]
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/db/migrations/migrations.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// This file is required for Expo/React Native SQLite migrations - https://orm.drizzle.team/quick-sqlite/expo

import journal from './meta/_journal.json';
import m0000 from './0000_sour_wonder_man.sql';
import m0000 from './0000_amused_leopardon.sql';

export default {
journal,
Expand Down
Loading