@@ -21,7 +21,6 @@ import {
21
21
RealmIcon ,
22
22
LoadingIndicator ,
23
23
} from ' @cardstack/boxel-ui/components' ;
24
- import { not } from ' @cardstack/boxel-ui/helpers' ;
25
24
import { cn } from ' @cardstack/boxel-ui/helpers' ;
26
25
27
26
import {
@@ -192,50 +191,71 @@ class SpecPreviewContent extends GlimmerComponent<ContentSignature> {
192
191
};
193
192
};
194
193
194
+ get displayIsolated() {
195
+ return ! this .args .canWrite && this .args .ids .length > 0 ;
196
+ }
197
+
198
+ get displayCannotWrite() {
199
+ return ! this .args .canWrite && this .args .ids .length === 0 ;
200
+ }
201
+
195
202
<template >
196
- <div class ={{cn ' container' spec-intent-message =@ showCreateSpecIntent}} >
203
+ <div
204
+ class ={{cn
205
+ ' container'
206
+ spec-intent-message =@ showCreateSpecIntent
207
+ cannot-write =this . displayCannotWrite
208
+ }}
209
+ >
197
210
{{#if @ showCreateSpecIntent }}
198
211
<div data-test-create-spec-intent-message >
199
212
Create a Boxel Specification to be able to create new instances
200
213
</div >
201
- {{else if ( not @ canWrite ) }}
214
+ {{else if this . displayCannotWrite }}
202
215
<div data-test-cannot-write-intent-message >
203
- Cannot create Boxel Specification inside this realm
216
+ Cannot create new Boxel Specification inside this realm
204
217
</div >
218
+
205
219
{{else }}
206
- <div class =' spec-preview' >
207
- <div class =' spec-selector' data-test-spec-selector >
208
- <BoxelSelect
209
- @ options ={{@ ids }}
210
- @ selected ={{@ selectedId }}
211
- @ onChange ={{@ selectId }}
212
- @ matchTriggerWidth ={{ true }}
213
- @ disabled ={{this .onlyOneInstance }}
214
- as | id |
215
- >
216
- {{#if id }}
217
- {{#let ( this.getDropdownData id ) as | data | }}
218
- {{#if data }}
219
- <div class =' spec-selector-item' >
220
- <RealmIcon
221
- @ canAnimate ={{ true }}
222
- class =' url-realm-icon'
223
- @ realmInfo ={{data.realmInfo }}
224
- />
225
- {{data.localPath }}
226
- </div >
227
- {{/if }}
228
- {{/let }}
229
- {{/if }}
230
- </BoxelSelect >
231
- </div >
232
220
233
- {{#if @ spec }}
221
+ {{#if @ spec }}
222
+ <div class =' spec-preview' >
223
+ <div class =' spec-selector' data-test-spec-selector >
224
+ <BoxelSelect
225
+ @ options ={{@ ids }}
226
+ @ selected ={{@ selectedId }}
227
+ @ onChange ={{@ selectId }}
228
+ @ matchTriggerWidth ={{ true }}
229
+ @ disabled ={{this .onlyOneInstance }}
230
+ as | id |
231
+ >
232
+ {{#if id }}
233
+ {{#let ( this.getDropdownData id ) as | data | }}
234
+ {{#if data }}
235
+ <div class =' spec-selector-item' >
236
+ <RealmIcon
237
+ @ canAnimate ={{ true }}
238
+ class =' url-realm-icon'
239
+ @ realmInfo ={{data.realmInfo }}
240
+ />
241
+ {{data.localPath }}
242
+ </div >
243
+ {{/if }}
244
+ {{/let }}
245
+ {{/if }}
246
+ </BoxelSelect >
247
+ </div >
248
+
234
249
{{#let ( getComponent @ spec) as | CardComponent | }}
235
- <CardComponent @ format =' edit' />
250
+ {{#if this . displayIsolated }}
251
+
252
+ <CardComponent @ format =' isolated' />
253
+ {{else }}
254
+ <CardComponent @ format =' edit' />
255
+ {{/if }}
236
256
{{/let }}
237
- {{/ if }}
238
- </ div >
257
+ </ div >
258
+ {{/ if }}
239
259
{{/if }}
240
260
</div >
241
261
@@ -255,7 +275,8 @@ class SpecPreviewContent extends GlimmerComponent<ContentSignature> {
255
275
width : 100% ;
256
276
padding : var (--boxel-sp-sm );
257
277
}
258
- .spec-intent-message {
278
+ .spec-intent-message ,
279
+ .cannot-write {
259
280
background-color : var (--boxel-200 );
260
281
color : var (--boxel-450 );
261
282
font-weight : 500 ;
@@ -357,6 +378,7 @@ export default class SpecPreview extends GlimmerComponent<Signature> {
357
378
attributes: {
358
379
specType ,
359
380
ref ,
381
+ title: ref .name ,
360
382
},
361
383
meta: {
362
384
adoptsFrom: specRef ,
0 commit comments