@@ -15,7 +15,13 @@ import {
15
15
type EmittedEvents ,
16
16
type ISendEventResponse ,
17
17
} from 'matrix-js-sdk' ;
18
- import { SlidingSync , MSC3575List } from 'matrix-js-sdk/lib/sliding-sync' ;
18
+ import {
19
+ SlidingSync ,
20
+ MSC3575List ,
21
+ SlidingSyncEvent ,
22
+ SlidingSyncState ,
23
+ MSC3575SlidingSyncResponse ,
24
+ } from 'matrix-js-sdk/lib/sliding-sync' ;
19
25
import stringify from 'safe-stable-stringify' ;
20
26
import { md5 } from 'super-fast-md5' ;
21
27
import { TrackedMap } from 'tracked-built-ins' ;
@@ -114,7 +120,7 @@ import type ResetService from './reset';
114
120
115
121
import type * as MatrixSDK from 'matrix-js-sdk' ;
116
122
117
- const { matrixURL } = ENV ;
123
+ const { matrixURL, environment } = ENV ;
118
124
const MAX_CARD_SIZE_KB = 60 ;
119
125
const STATE_EVENTS_OF_INTEREST = [ 'm.room.create' , 'm.room.name' ] ;
120
126
const SLIDING_SYNC_AI_ROOM_LIST_NAME = 'ai-room' ;
@@ -173,7 +179,10 @@ export default class MatrixService extends Service {
173
179
new TrackedMap ( ) ;
174
180
private cardHashes : Map < string , string > = new Map ( ) ; // hashes <> event id
175
181
private skillCardHashes : Map < string , string > = new Map ( ) ; // hashes <> event id
182
+
176
183
private slidingSync : SlidingSync | undefined ;
184
+ private aiRoomIds : Set < string > = new Set ( ) ;
185
+ @tracked private isLoadingMoreAIRooms = false ;
177
186
178
187
constructor ( owner : Owner ) {
179
188
super ( owner ) ;
@@ -191,7 +200,7 @@ export default class MatrixService extends Service {
191
200
set currentRoomId ( value : string | undefined ) {
192
201
this . _currentRoomId = value ;
193
202
if ( value ) {
194
- this . loadAllTimelineEvents . perform ( value ) ;
203
+ this . loadAllTimelineEvents ( value ) ;
195
204
window . localStorage . setItem ( CurrentRoomIdPersistenceKey , value ) ;
196
205
} else {
197
206
window . localStorage . removeItem ( CurrentRoomIdPersistenceKey ) ;
@@ -243,6 +252,7 @@ export default class MatrixService extends Service {
243
252
e . event . content . realms ,
244
253
) ;
245
254
await this . loginToRealms ( ) ;
255
+ await this . maybeLoadMoreAuthRooms ( e . event . content . realms ) ;
246
256
}
247
257
} ,
248
258
] ,
@@ -486,7 +496,7 @@ export default class MatrixService extends Service {
486
496
this . bindEventListeners ( ) ;
487
497
488
498
try {
489
- this . initSlidingSync ( ) ;
499
+ await this . initSlidingSync ( ) ;
490
500
await this . client . startClient ( { slidingSync : this . slidingSync } ) ;
491
501
let accountDataContent = await this . client . getAccountDataFromServer < {
492
502
realms : string [ ] ;
@@ -510,7 +520,11 @@ export default class MatrixService extends Service {
510
520
}
511
521
}
512
522
513
- private initSlidingSync ( ) {
523
+ private async initSlidingSync ( ) {
524
+ let accountData = await this . client . getAccountDataFromServer < {
525
+ realms : string [ ] ;
526
+ } > ( APP_BOXEL_REALMS_EVENT_TYPE ) ;
527
+
514
528
let lists : Map < string , MSC3575List > = new Map ( ) ;
515
529
lists . set ( SLIDING_SYNC_AI_ROOM_LIST_NAME , {
516
530
ranges : [ [ 0 , SLIDING_SYNC_LIST_RANGE_END ] ] ,
@@ -521,7 +535,14 @@ export default class MatrixService extends Service {
521
535
required_state : [ [ '*' , '*' ] ] ,
522
536
} ) ;
523
537
lists . set ( SLIDING_SYNC_AUTH_ROOM_LIST_NAME , {
524
- ranges : [ [ 0 , SLIDING_SYNC_LIST_RANGE_END ] ] ,
538
+ ranges : [
539
+ [
540
+ 0 ,
541
+ accountData
542
+ ? accountData ?. realms . length
543
+ : SLIDING_SYNC_LIST_RANGE_END ,
544
+ ] ,
545
+ ] ,
525
546
filters : {
526
547
is_dm : true ,
527
548
} ,
@@ -535,7 +556,25 @@ export default class MatrixService extends Service {
535
556
timeline_limit : SLIDING_SYNC_LIST_TIMELINE_LIMIT ,
536
557
} ,
537
558
this . client as any ,
538
- 3000 ,
559
+ environment === 'test' ? 200 : 30000 ,
560
+ ) ;
561
+ this . slidingSync . on (
562
+ SlidingSyncEvent . Lifecycle ,
563
+ (
564
+ state : SlidingSyncState | null ,
565
+ resp : MSC3575SlidingSyncResponse | null ,
566
+ ) => {
567
+ if (
568
+ state === SlidingSyncState . Complete &&
569
+ resp &&
570
+ resp . lists [ SLIDING_SYNC_AI_ROOM_LIST_NAME ] . ops ?. [ 0 ] ?. op === 'SYNC'
571
+ ) {
572
+ for ( let roomId of resp . lists [ SLIDING_SYNC_AI_ROOM_LIST_NAME ] . ops [ 0 ]
573
+ . room_ids ) {
574
+ this . aiRoomIds . add ( roomId ) ;
575
+ }
576
+ }
577
+ } ,
539
578
) ;
540
579
541
580
return this . slidingSync ;
@@ -1174,7 +1213,7 @@ export default class MatrixService extends Service {
1174
1213
return await this . client . isUsernameAvailable ( username ) ;
1175
1214
}
1176
1215
1177
- private loadAllTimelineEvents = restartableTask ( async ( roomId : string ) => {
1216
+ private async loadAllTimelineEvents ( roomId : string ) {
1178
1217
let roomData = this . ensureRoomData ( roomId ) ;
1179
1218
let room = this . client . getRoom ( roomId ) ;
1180
1219
@@ -1214,7 +1253,7 @@ export default class MatrixService extends Service {
1214
1253
this . timelineLoadingState . set ( roomId , false ) ;
1215
1254
waiter . endAsync ( token ) ;
1216
1255
}
1217
- } ) ;
1256
+ }
1218
1257
1219
1258
get isLoadingTimeline ( ) {
1220
1259
if ( ! this . currentRoomId ) {
@@ -1597,6 +1636,61 @@ export default class MatrixService extends Service {
1597
1636
await roomResource . loading ;
1598
1637
roomResource . activateLLM ( model ) ;
1599
1638
}
1639
+
1640
+ loadMoreAIRooms ( ) {
1641
+ this . loadMoreAIRoomsTask . perform ( ) ;
1642
+ }
1643
+
1644
+ private loadMoreAIRoomsTask = restartableTask ( async ( ) => {
1645
+ if ( ! this . slidingSync ) return ;
1646
+
1647
+ let currentList = this . slidingSync . getListParams (
1648
+ SLIDING_SYNC_AI_ROOM_LIST_NAME ,
1649
+ ) ;
1650
+ if ( ! currentList ) return ;
1651
+
1652
+ let currentRange = currentList . ranges [ 0 ] ;
1653
+ if ( ! currentRange ) return ;
1654
+
1655
+ if ( this . aiRoomIds . size < currentRange [ 1 ] - 1 ) {
1656
+ return ;
1657
+ }
1658
+
1659
+ let newEndRange = currentRange [ 1 ] + 10 ;
1660
+
1661
+ this . isLoadingMoreAIRooms = true ;
1662
+ try {
1663
+ await this . slidingSync . setListRanges ( SLIDING_SYNC_AI_ROOM_LIST_NAME , [
1664
+ [ 0 , newEndRange ] ,
1665
+ ] ) ;
1666
+ } finally {
1667
+ this . isLoadingMoreAIRooms = false ;
1668
+ }
1669
+ } ) ;
1670
+
1671
+ get loadingMoreAIRooms ( ) {
1672
+ return this . isLoadingMoreAIRooms ;
1673
+ }
1674
+
1675
+ async maybeLoadMoreAuthRooms ( realms : string [ ] ) {
1676
+ if ( ! this . slidingSync ) return ;
1677
+
1678
+ let currentList = this . slidingSync . getListParams (
1679
+ SLIDING_SYNC_AUTH_ROOM_LIST_NAME ,
1680
+ ) ;
1681
+ if ( ! currentList ) return ;
1682
+
1683
+ let currentRange = currentList . ranges [ 0 ] ;
1684
+ if ( ! currentRange ) return ;
1685
+ if ( realms . length - 1 <= currentRange [ 1 ] ) {
1686
+ return ;
1687
+ }
1688
+
1689
+ let newEndRange = realms . length - 1 ;
1690
+ await this . slidingSync . setListRanges ( SLIDING_SYNC_AUTH_ROOM_LIST_NAME , [
1691
+ [ 0 , newEndRange ] ,
1692
+ ] ) ;
1693
+ }
1600
1694
}
1601
1695
1602
1696
function saveAuth ( auth : LoginResponse ) {
0 commit comments