Skip to content

Commit 3e87f23

Browse files
committed
Merge branch 'main' into cs-7852-add-skill-for-editing-code-of-modules-and-instances
2 parents 80496b5 + 02cb447 commit 3e87f23

File tree

5 files changed

+53
-1
lines changed

5 files changed

+53
-1
lines changed

packages/host/app/components/matrix/login.gts

+1
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ export default class Login extends Component<Signature> {
115115
}
116116
.forgot-password:hover {
117117
color: var(--boxel-highlight);
118+
background-color: transparent;
118119
}
119120
.button {
120121
--boxel-button-padding: var(--boxel-sp-sm);

packages/host/app/components/operator-mode/profile-info-popover.gts

+10
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,8 @@ export class ProfileInfo extends Component<ProfileInfoSignature> {
214214
margin: auto;
215215
display: flex;
216216
flex-direction: column;
217+
max-width: 100%;
218+
overflow: hidden;
217219
--profile-avatar-icon-size: 70px;
218220
--profile-avatar-icon-border: 0;
219221
}
@@ -226,11 +228,19 @@ export class ProfileInfo extends Component<ProfileInfoSignature> {
226228
margin-top: var(--boxel-sp-xxxs);
227229
font-size: var(--boxel-font-size);
228230
font-weight: 600;
231+
max-width: 100%;
232+
text-wrap: nowrap;
233+
overflow: hidden;
234+
text-overflow: ellipsis;
229235
}
230236
231237
.profile-handle {
232238
margin-top: var(--boxel-sp-xxxxs);
233239
color: var(--boxel-500);
240+
max-width: 100%;
241+
text-wrap: nowrap;
242+
overflow: hidden;
243+
text-overflow: ellipsis;
234244
}
235245
</style>
236246
</template>

packages/host/app/resources/module-contents.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,11 @@ export class ModuleContentsResource extends Resource<Args> {
9999
// it has to know this to distinguish the act of editing of a file and switching between definitions
100100
// when editing a file we don't want to introduce loading state, whereas when switching between definitions we do
101101
get isLoadingNewModule() {
102-
return this.executableFile?.url !== this.state?.url ?? false;
102+
if (!this.executableFile) {
103+
return false;
104+
}
105+
106+
return this.executableFile.url !== this.state?.url;
103107
}
104108

105109
get declarations() {

packages/host/app/services/card-service.ts

+4
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,10 @@ export default class CardService extends Service {
147147
return;
148148
}
149149

150+
// WARNING! please do not use this to create card instances. Use
151+
// `CardResource.getCard()` instead for creating card instances. When you
152+
// create card instances directly from here it bypasses the store's identity
153+
// map and instances created directly from here will behave very problematically.
150154
async createFromSerialized(
151155
resource: LooseCardResource,
152156
doc: LooseSingleCardDocument | CardDocument,

packages/host/tests/acceptance/code-submode/inspector-test.ts

+33
Original file line numberDiff line numberDiff line change
@@ -650,6 +650,39 @@ module('Acceptance | code submode | inspector tests', function (hooks) {
650650
assert.dom('[data-test-card-instance-definition]').doesNotExist();
651651
});
652652

653+
test('can switch between inspector showing module definition and inspector showing json instance definition in card inheritance panel', async function (assert) {
654+
await visitOperatorMode({
655+
stacks: [[]],
656+
submode: 'code',
657+
codePath: `${testRealmURL}person.gts`,
658+
});
659+
660+
await waitForCodeEditor();
661+
await waitFor('[data-test-card-inspector-panel]');
662+
await waitFor('[data-test-card-module-definition]');
663+
664+
assert.dom('[data-test-card-module-definition]').includesText('Card');
665+
assert.dom('[data-test-card-instance-definition]').doesNotExist();
666+
667+
await click('[data-test-file-browser-toggle]');
668+
await click('[data-test-directory="Person/"]');
669+
await waitFor('[data-test-file="Person/1.json"]');
670+
await click('[data-test-file="Person/1.json"]');
671+
672+
await click('[data-test-inspector-toggle]');
673+
await waitFor('[data-test-card-inspector-panel]');
674+
await waitFor('[data-test-card-module-definition]');
675+
676+
assert
677+
.dom('[data-test-card-instance-definition]')
678+
.includesText('Hassan Abdel-Rahman');
679+
assert
680+
.dom(
681+
'[data-test-card-instance-definition] [data-test-definition-file-extension]',
682+
)
683+
.includesText('.JSON');
684+
});
685+
653686
test('"in-this-file" panel displays all elements and re-highlights upon selection', async function (assert) {
654687
await visitOperatorMode({
655688
stacks: [[]],

0 commit comments

Comments
 (0)