@@ -198,30 +198,28 @@ export default class InteractSubmode extends Component<Signature> {
198
198
doc .data .meta .realmURL = opts .realmURL .href ;
199
199
}
200
200
201
- let newCard = await here .cardService .createFromSerialized (
202
- doc .data ,
203
- doc ,
204
- relativeTo ,
205
- );
206
-
207
201
let newItem = new StackItem ({
208
202
owner: here ,
209
- card: newCard ,
203
+ newCard: { doc , relativeTo } ,
210
204
format: opts ?.cardModeAfterCreation ?? ' edit' ,
211
205
request: new Deferred (),
212
206
isLinkedCard: opts ?.isLinkedCard ,
213
207
stackIndex ,
214
208
});
215
209
216
- // TODO: it is important saveModel happens after newItem because it
217
- // looks like perhaps there is a race condition (or something else) when a
218
- // new linked card is created, and when it is added to the stack and closed
219
- // - the parent card is not updated with the new linked card
220
- await here .cardService .saveModel (newCard );
221
-
222
210
await newItem .ready ();
211
+ if (newItem .cardError ) {
212
+ console .error (
213
+ ` Encountered error creating card:\n ${JSON .stringify (
214
+ doc ,
215
+ null ,
216
+ 2 ,
217
+ )}\n Error: ${JSON .stringify (newItem .cardError , null , 2 )} ` ,
218
+ );
219
+ return undefined ;
220
+ }
223
221
here .addToStack (newItem );
224
- return newCard ;
222
+ return newItem . card ;
225
223
},
226
224
viewCard : async (
227
225
cardOrURL : CardDef | URL ,
@@ -233,9 +231,7 @@ export default class InteractSubmode extends Component<Signature> {
233
231
}
234
232
let newItem = new StackItem ({
235
233
owner: here ,
236
- ... (cardOrURL instanceof URL
237
- ? { url: cardOrURL }
238
- : { card: cardOrURL }),
234
+ url: cardOrURL instanceof URL ? cardOrURL : new URL (cardOrURL .id ),
239
235
format ,
240
236
stackIndex ,
241
237
});
@@ -561,19 +557,25 @@ export default class InteractSubmode extends Component<Signature> {
561
557
private openSelectedSearchResultInStack = restartableTask (
562
558
async (cardId : string ) => {
563
559
let waiterToken = waiter .beginAsync ();
560
+ let url = new URL (cardId );
564
561
try {
565
562
let searchSheetTrigger = this .searchSheetTrigger ; // Will be set by showSearchWithTrigger
566
- let card = await this .cardService .getCard (cardId );
567
- if (! card ) {
568
- return ;
569
- }
570
563
571
564
// In case the left button was clicked, whatever is currently in stack with index 0 will be moved to stack with index 1,
572
565
// and the card will be added to stack with index 0. shiftStack executes this logic.
573
566
if (
574
567
searchSheetTrigger ===
575
568
SearchSheetTriggers .DropCardToLeftNeighborStackButton
576
569
) {
570
+ let newItem = new StackItem ({
571
+ owner: this ,
572
+ url ,
573
+ format: ' isolated' ,
574
+ stackIndex: 0 ,
575
+ });
576
+ // it's important that we await the stack item readiness _before_
577
+ // we mutate the stack, otherwise there are very odd visual artifacts
578
+ await newItem .ready ();
577
579
for (
578
580
let stackIndex = this .stacks .length - 1 ;
579
581
stackIndex >= 0 ;
@@ -584,15 +586,14 @@ export default class InteractSubmode extends Component<Signature> {
584
586
stackIndex + 1 ,
585
587
);
586
588
}
587
- await this .publicAPI (this , 0 ).viewCard (card , ' isolated' );
588
-
589
+ this .addToStack (newItem );
589
590
// In case the right button was clicked, the card will be added to stack with index 1.
590
591
} else if (
591
592
searchSheetTrigger ===
592
593
SearchSheetTriggers .DropCardToRightNeighborStackButton
593
594
) {
594
595
await this .publicAPI (this , this .stacks .length ).viewCard (
595
- card ,
596
+ url ,
596
597
' isolated' ,
597
598
);
598
599
} else {
@@ -606,15 +607,15 @@ export default class InteractSubmode extends Component<Signature> {
606
607
numberOfStacks === 0 ||
607
608
this .operatorModeStateService .stackIsEmpty (stackIndex )
608
609
) {
609
- await this .publicAPI (this , 0 ).viewCard (card , ' isolated' );
610
+ await this .publicAPI (this , 0 ).viewCard (url , ' isolated' );
610
611
} else {
611
612
stack = this .operatorModeStateService .rightMostStack ();
612
613
if (stack ) {
613
614
let bottomMostItem = stack [0 ];
614
615
if (bottomMostItem ) {
615
616
let stackItem = new StackItem ({
616
617
owner: this ,
617
- card ,
618
+ url ,
618
619
format: ' isolated' ,
619
620
stackIndex ,
620
621
});
0 commit comments