Skip to content

Commit 79e18e1

Browse files
committed
update to use more general mechanism for loading code
1 parent 619a7f1 commit 79e18e1

File tree

1 file changed

+3
-18
lines changed

1 file changed

+3
-18
lines changed

packages/base/code-ref.gts

+3-18
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import { consume } from 'ember-provide-consume-context';
2020
import {
2121
type ResolvedCodeRef,
2222
type Loader,
23-
loadCard,
2423
CardURLContextName,
2524
} from '@cardstack/runtime-common';
2625
import { not } from '@cardstack/boxel-ui/helpers';
@@ -94,28 +93,14 @@ class EditView extends Component<typeof CodeRefField> {
9493
let name = parts.pop()!;
9594
let module = parts.join('/');
9695
try {
97-
if (moduleIsUrlLike(module)) {
98-
await loadCard(
99-
{ module, name },
100-
{
101-
loader: myLoader(),
102-
relativeTo: this.cardURL ? new URL(this.cardURL) : undefined,
103-
},
104-
);
96+
let code = (await import(module))[name];
97+
if (code) {
10598
this.validationState = 'valid';
10699
if (!opts?.checkOnly) {
107100
this.args.set({ module, name });
108101
}
109102
} else {
110-
let code = (await import(module))[name];
111-
if (code) {
112-
this.validationState = 'valid';
113-
if (!opts?.checkOnly) {
114-
this.args.set({ module, name });
115-
}
116-
} else {
117-
this.validationState = 'invalid';
118-
}
103+
this.validationState = 'invalid';
119104
}
120105
} catch (err) {
121106
this.validationState = 'invalid';

0 commit comments

Comments
 (0)