Skip to content

Commit 0ffa9f1

Browse files
committed
Merge branch 'code-ref-modules' into return-of-the-skill-commands
2 parents a88f906 + 6e1ea0e commit 0ffa9f1

File tree

3 files changed

+108
-19
lines changed

3 files changed

+108
-19
lines changed

packages/base/code-ref.gts

+15-7
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,11 @@ export default class CodeRefField extends FieldDef {
3737
_visited?: Set<string>,
3838
opts?: SerializeOpts,
3939
) {
40+
const moduleIsUrlLike =
41+
codeRef.module.startsWith('http') || codeRef.module.startsWith('.');
4042
return {
4143
...codeRef,
42-
...(opts?.maybeRelativeURL && !opts?.useAbsoluteURL
44+
...(opts?.maybeRelativeURL && !opts?.useAbsoluteURL && moduleIsUrlLike
4345
? { module: opts.maybeRelativeURL(codeRef.module) }
4446
: {}),
4547
};
@@ -70,12 +72,18 @@ function maybeSerializeCodeRef(
7072
stack: CardDef[] = [],
7173
) {
7274
if (codeRef) {
73-
// if a stack is passed in, use the containing card to resolve relative references
74-
let moduleHref =
75-
stack.length > 0
76-
? new URL(codeRef.module, stack[0][relativeTo]).href
77-
: codeRef.module;
78-
return `${moduleHref}/${codeRef.name}`;
75+
const moduleIsUrlLike =
76+
codeRef.module.startsWith('http') || codeRef.module.startsWith('.');
77+
if (moduleIsUrlLike) {
78+
// if a stack is passed in, use the containing card to resolve relative references
79+
let moduleHref =
80+
stack.length > 0
81+
? new URL(codeRef.module, stack[0][relativeTo]).href
82+
: codeRef.module;
83+
return `${moduleHref}/${codeRef.name}`;
84+
} else {
85+
return `${codeRef.module}/${codeRef.name}`;
86+
}
7987
}
8088
return undefined;
8189
}

packages/base/skill-card.gts

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
1-
import BooleanField from './boolean';
2-
import CodeRefField from './code-ref';
3-
import MarkdownField from './markdown';
4-
import StringField from './string';
51
import {
62
CardDef,
73
Component,
8-
field,
94
FieldDef,
5+
field,
106
contains,
117
containsMany,
128
} from './card-api';
9+
import BooleanField from './boolean';
10+
import CodeRefField from './code-ref';
11+
import MarkdownField from './markdown';
12+
import StringField from './string';
1313
import RobotIcon from '@cardstack/boxel-icons/robot';
1414

1515
function djb2_xor(str: string) {
@@ -22,6 +22,13 @@ function djb2_xor(str: string) {
2222
return (h >>> 0).toString(16);
2323
}
2424

25+
function friendlyModuleName(fullModuleUrl: string) {
26+
return fullModuleUrl
27+
.split('/')
28+
.slice(-1)[0]
29+
.replace(/\.gts$/, ' ');
30+
}
31+
2532
export class CommandField extends FieldDef {
2633
static displayName = 'CommandField';
2734
@field codeRef = contains(CodeRefField, {
@@ -49,13 +56,6 @@ export class CommandField extends FieldDef {
4956
});
5057
}
5158

52-
function friendlyModuleName(fullModuleUrl: string) {
53-
return fullModuleUrl
54-
.split('/')
55-
.slice(-1)[0]
56-
.replace(/\.gts$/, ' ');
57-
}
58-
5959
export class SkillCard extends CardDef {
6060
static displayName = 'Skill';
6161
static icon = RobotIcon;

packages/host/tests/integration/realm-indexing-and-querying-test.gts

+81
Original file line numberDiff line numberDiff line change
@@ -734,6 +734,27 @@ module(`Integration | realm indexing and querying`, function (hooks) {
734734
},
735735
},
736736
},
737+
'people-skill.json': {
738+
data: {
739+
attributes: {
740+
instructions: 'How to win friends and influence people',
741+
commands: [
742+
{
743+
codeRef: {
744+
module: `@cardstack/boxel-host/commands/switch-submode`,
745+
name: 'default',
746+
},
747+
},
748+
],
749+
},
750+
meta: {
751+
adoptsFrom: {
752+
module: 'https://cardstack.com/base/skill-card',
753+
name: 'SkillCard',
754+
},
755+
},
756+
},
757+
},
737758
},
738759
});
739760
let indexer = realm.realmIndexQueryEngine;
@@ -807,6 +828,66 @@ module(`Integration | realm indexing and querying`, function (hooks) {
807828
`search entry was an error: ${entry?.error.errorDetail.message}`,
808829
);
809830
}
831+
entry = await indexer.cardDocument(new URL(`${testRealmURL}people-skill`));
832+
if (entry?.type === 'doc') {
833+
assert.deepEqual(entry.doc.data, {
834+
id: `${testRealmURL}people-skill`,
835+
type: 'card',
836+
links: {
837+
self: `${testRealmURL}people-skill`,
838+
},
839+
attributes: {
840+
commands: [
841+
{
842+
codeRef: {
843+
module: '@cardstack/boxel-host/commands/switch-submode',
844+
name: 'default',
845+
},
846+
functionName: 'switch-submode_dd88',
847+
requiresApproval: null,
848+
},
849+
],
850+
description: null,
851+
instructions: 'How to win friends and influence people',
852+
thumbnailURL: null,
853+
title: null,
854+
},
855+
meta: {
856+
adoptsFrom: {
857+
module: 'https://cardstack.com/base/skill-card',
858+
name: 'SkillCard',
859+
},
860+
lastModified: adapter.lastModifiedMap.get(
861+
`${testRealmURL}people-skill.json`,
862+
),
863+
resourceCreatedAt: adapter.resourceCreatedAtMap.get(
864+
`${testRealmURL}people-skill.json`,
865+
),
866+
realmInfo: testRealmInfo,
867+
realmURL: testRealmURL,
868+
},
869+
});
870+
let instance = await indexer.instance(
871+
new URL(`${testRealmURL}people-skill`),
872+
);
873+
assert.deepEqual(instance?.searchDoc, {
874+
_cardType: 'Skill',
875+
id: `${testRealmURL}people-skill`,
876+
instructions: 'How to win friends and influence people',
877+
commands: [
878+
{
879+
codeRef: `@cardstack/boxel-host/commands/switch-submode/default`,
880+
functionName: 'switch-submode_dd88',
881+
requiresApproval: false,
882+
},
883+
],
884+
});
885+
} else {
886+
assert.ok(
887+
false,
888+
`search entry was an error: ${entry?.error.errorDetail.message}`,
889+
);
890+
}
810891
});
811892

812893
test('can recover from rendering a card that has a template error', async function (assert) {

0 commit comments

Comments
 (0)