@alloy-js/csharp 0.23.0-dev.0 → 0.23.0-dev.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/components/source-file/source-file.d.ts +2 -0
- package/dist/src/components/source-file/source-file.d.ts.map +1 -1
- package/dist/src/components/source-file/source-file.js +36 -1
- package/dist/src/components/source-file/source-file.js.map +1 -1
- package/dist/src/components/source-file/source-file.test.js +40 -1
- package/dist/src/components/source-file/source-file.test.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/package.json +4 -4
- package/src/components/source-file/source-file.test.tsx +35 -1
- package/src/components/source-file/source-file.tsx +33 -0
- package/temp/api.json +55 -0
|
@@ -13,6 +13,8 @@ export interface SourceFileProps extends CSharpFormatOptions {
|
|
|
13
13
|
* explicit usings is not necessary when referencing symbols via refkeys.
|
|
14
14
|
*/
|
|
15
15
|
using?: string[];
|
|
16
|
+
header?: Children;
|
|
17
|
+
headerComment?: string;
|
|
16
18
|
}
|
|
17
19
|
/** A C# source file exists within the context of a namespace contains using statements and declarations */
|
|
18
20
|
export declare function SourceFile(props: SourceFileProps): Children;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"source-file.d.ts","sourceRoot":"","sources":["../../../../src/components/source-file/source-file.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"source-file.d.ts","sourceRoot":"","sources":["../../../../src/components/source-file/source-file.tsx"],"names":[],"mappings":"AAKA,OAAO,EAEL,QAAQ,EAOT,MAAM,gBAAgB,CAAC;AACxB,OAAO,EACL,mBAAmB,EAEpB,MAAM,kCAAkC,CAAC;AAM1C;;GAEG;AACH,MAAM,WAAW,eAAgB,SAAQ,mBAAmB;IAC1D,8BAA8B;IAC9B,IAAI,EAAE,MAAM,CAAC;IAEb,0BAA0B;IAC1B,QAAQ,CAAC,EAAE,QAAQ,CAAC;IAEpB;;;OAGG;IACH,KAAK,CAAC,EAAE,MAAM,EAAE,CAAC;IAEjB,MAAM,CAAC,EAAE,QAAQ,CAAC;IAElB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAED,2GAA2G;AAC3G,wBAAgB,UAAU,CAAC,KAAK,EAAE,eAAe,YAmEhD"}
|
|
@@ -1,9 +1,10 @@
|
|
|
1
1
|
import { createComponent as _$createComponent, memo as _$memo, mergeProps as _$mergeProps, createIntrinsic as _$createIntrinsic } from "@alloy-js/core/jsx-runtime";
|
|
2
|
+
import { DocComment } from "#components/doc/comment.js";
|
|
2
3
|
import { NamespaceScopes } from "#components/namespace-scopes.js";
|
|
3
4
|
import { NamespaceName } from "#components/namespace/namespace-name.js";
|
|
4
5
|
import { Reference } from "#components/Reference.js";
|
|
5
6
|
import { Usings } from "#components/using/using.js";
|
|
6
|
-
import { Block, computed, SourceFile as CoreSourceFile, Scope, useBinder } from "@alloy-js/core";
|
|
7
|
+
import { Block, computed, SourceFile as CoreSourceFile, List, Scope, Show, useBinder } from "@alloy-js/core";
|
|
7
8
|
import { useCsharpFormatOptions } from "../../contexts/format-options.js";
|
|
8
9
|
import { getGlobalNamespace } from "../../contexts/global-namespace.js";
|
|
9
10
|
import { useNamespaceContext } from "../../contexts/namespace.js";
|
|
@@ -33,6 +34,14 @@ export function SourceFile(props) {
|
|
|
33
34
|
tabWidth: props.tabWidth,
|
|
34
35
|
useTabs: props.useTabs
|
|
35
36
|
});
|
|
37
|
+
const header = props.header || props.headerComment ? _$createComponent(SourceFileHeader, {
|
|
38
|
+
get header() {
|
|
39
|
+
return props.header;
|
|
40
|
+
},
|
|
41
|
+
get headerComment() {
|
|
42
|
+
return props.headerComment;
|
|
43
|
+
}
|
|
44
|
+
}) : undefined;
|
|
36
45
|
return _$createComponent(CoreSourceFile, _$mergeProps({
|
|
37
46
|
get path() {
|
|
38
47
|
return props.path;
|
|
@@ -40,6 +49,7 @@ export function SourceFile(props) {
|
|
|
40
49
|
filetype: "cs",
|
|
41
50
|
reference: Reference
|
|
42
51
|
}, opts, {
|
|
52
|
+
header: header,
|
|
43
53
|
get children() {
|
|
44
54
|
return _$createComponent(Scope, {
|
|
45
55
|
value: sourceFileScope,
|
|
@@ -58,4 +68,29 @@ export function SourceFile(props) {
|
|
|
58
68
|
}
|
|
59
69
|
}));
|
|
60
70
|
}
|
|
71
|
+
function SourceFileHeader(props) {
|
|
72
|
+
return _$createComponent(List, {
|
|
73
|
+
get children() {
|
|
74
|
+
return [_$createComponent(Show, {
|
|
75
|
+
get when() {
|
|
76
|
+
return props.headerComment !== undefined;
|
|
77
|
+
},
|
|
78
|
+
get children() {
|
|
79
|
+
return _$createComponent(DocComment, {
|
|
80
|
+
get children() {
|
|
81
|
+
return props.headerComment;
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
}
|
|
85
|
+
}), _$createComponent(Show, {
|
|
86
|
+
get when() {
|
|
87
|
+
return props.header !== undefined;
|
|
88
|
+
},
|
|
89
|
+
get children() {
|
|
90
|
+
return props.header;
|
|
91
|
+
}
|
|
92
|
+
}), _$createIntrinsic("hbr", {})];
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
}
|
|
61
96
|
//# sourceMappingURL=source-file.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["NamespaceScopes","NamespaceName","Reference","Usings","Block","computed","SourceFile","CoreSourceFile","Scope","useBinder","useCsharpFormatOptions","getGlobalNamespace","useNamespaceContext","CSharpSourceFileScope","props","sourceFileScope","path","nsContext","globalNs","nsSymbol","symbol","usings","Array","from","concat","using","content","_$createComponent","children","opts","printWidth","tabWidth","useTabs","_$mergeProps","filetype","reference","value","_$memo","size","length","namespaces","_$createIntrinsic","hasBlockNamespace"],"sources":["../../../../src/components/source-file/source-file.tsx"],"sourcesContent":[null],"mappings":";AAAA,SAASA,eAAe;AACxB,SAASC,aAAa;AACtB,SAASC,SAAS;AAClB,SAASC,MAAM;AACf,SACEC,KAAK,EAELC,QAAQ,EACRC,UAAU,IAAIC,cAAc,EAC5BC,KAAK,EACLC,SAAS,QACJ,gBAAgB;AACvB,SAEEC,sBAAsB,QACjB,kCAAkC;AACzC,SAASC,kBAAkB,QAAQ,oCAAoC;AACvE,SAASC,mBAAmB,QAAQ,6BAA6B;AACjE,SAASC,qBAAqB,QAAQ,6BAA6B;;AAGnE;AACA;AACA;;
|
|
1
|
+
{"version":3,"names":["DocComment","NamespaceScopes","NamespaceName","Reference","Usings","Block","computed","SourceFile","CoreSourceFile","List","Scope","Show","useBinder","useCsharpFormatOptions","getGlobalNamespace","useNamespaceContext","CSharpSourceFileScope","props","sourceFileScope","path","nsContext","globalNs","nsSymbol","symbol","usings","Array","from","concat","using","content","_$createComponent","children","opts","printWidth","tabWidth","useTabs","header","headerComment","SourceFileHeader","undefined","_$mergeProps","filetype","reference","value","_$memo","size","length","namespaces","_$createIntrinsic","hasBlockNamespace","when"],"sources":["../../../../src/components/source-file/source-file.tsx"],"sourcesContent":[null],"mappings":"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","ignoreList":[]}
|
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
import { createComponent as _$createComponent } from "@alloy-js/core/jsx-runtime";
|
|
2
|
+
import { Attribute } from "#components/attributes/attributes.js";
|
|
2
3
|
import { ClassDeclaration } from "#components/class/declaration.js";
|
|
3
4
|
import { Namespace } from "#components/namespace/namespace.js";
|
|
4
|
-
import { FormatOptions, Indent, Output, Prose } from "@alloy-js/core";
|
|
5
|
+
import { FormatOptions, Indent, List, Output, Prose } from "@alloy-js/core";
|
|
6
|
+
import { Serialization } from "@alloy-js/csharp/global/System/Text/Json";
|
|
5
7
|
import { describe, expect, it } from "vitest";
|
|
6
8
|
import { CSharpFormatOptions } from "../../contexts/format-options.js";
|
|
7
9
|
import { SourceFile } from "./source-file.js";
|
|
@@ -132,5 +134,42 @@ describe("format options", () => {
|
|
|
132
134
|
indented 3 spaces
|
|
133
135
|
`);
|
|
134
136
|
});
|
|
137
|
+
it("respect docComment and using (and docComment before using)", () => {
|
|
138
|
+
expect(_$createComponent(Output, {
|
|
139
|
+
get children() {
|
|
140
|
+
return _$createComponent(SourceFile, {
|
|
141
|
+
path: "Test1.cs",
|
|
142
|
+
headerComment: "This is a file comment",
|
|
143
|
+
get header() {
|
|
144
|
+
return _$createComponent(Prose, {
|
|
145
|
+
children: "// ---------Some Fake Heder-----------"
|
|
146
|
+
});
|
|
147
|
+
},
|
|
148
|
+
get children() {
|
|
149
|
+
return _$createComponent(List, {
|
|
150
|
+
get children() {
|
|
151
|
+
return [_$createComponent(Attribute, {
|
|
152
|
+
get name() {
|
|
153
|
+
return Serialization.JsonConverterAttribute;
|
|
154
|
+
}
|
|
155
|
+
}), _$createComponent(ClassDeclaration, {
|
|
156
|
+
"public": true,
|
|
157
|
+
name: "TestClass1"
|
|
158
|
+
})];
|
|
159
|
+
}
|
|
160
|
+
});
|
|
161
|
+
}
|
|
162
|
+
});
|
|
163
|
+
}
|
|
164
|
+
})).toRenderTo(`
|
|
165
|
+
/// This is a file comment
|
|
166
|
+
// ---------Some Fake Heder-----------
|
|
167
|
+
|
|
168
|
+
using System.Text.Json.Serialization;
|
|
169
|
+
|
|
170
|
+
[JsonConverter]
|
|
171
|
+
public class TestClass1;
|
|
172
|
+
`);
|
|
173
|
+
});
|
|
135
174
|
});
|
|
136
175
|
//# sourceMappingURL=source-file.test.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"names":["ClassDeclaration","Namespace","FormatOptions","Indent","Output","Prose","describe","expect","it","CSharpFormatOptions","SourceFile","_$createComponent","children","name","path","toRenderTo","FileWithFormatOptions","props","value","options","tabWidth","useTabs","printWidth"],"sources":["../../../../src/components/source-file/source-file.test.tsx"],"sourcesContent":[null],"mappings":";AAAA,SAASA,gBAAgB;AACzB,SAASC,SAAS;AAClB,
|
|
1
|
+
{"version":3,"names":["Attribute","ClassDeclaration","Namespace","FormatOptions","Indent","List","Output","Prose","Serialization","describe","expect","it","CSharpFormatOptions","SourceFile","_$createComponent","children","name","path","toRenderTo","FileWithFormatOptions","props","value","options","tabWidth","useTabs","printWidth","headerComment","header","JsonConverterAttribute"],"sources":["../../../../src/components/source-file/source-file.test.tsx"],"sourcesContent":[null],"mappings":";AAAA,SAASA,SAAS;AAClB,SAASC,gBAAgB;AACzB,SAASC,SAAS;AAClB,SAEEC,aAAa,EACbC,MAAM,EACNC,IAAI,EACJC,MAAM,EACNC,KAAK,QACA,gBAAgB;AACvB,SAASC,aAAa,QAAQ,0CAA0C;AACxE,SAASC,QAAQ,EAAEC,MAAM,EAAEC,EAAE,QAAQ,QAAQ;AAC7C,SAASC,mBAAmB,QAAQ,kCAAkC;AACtE,SAASC,UAAU;AAEnBF,EAAE,CAAC,mDAAmD,EAAE,MAAM;EAC5DD,MAAM,CAAAI,iBAAA,CACHR,MAAM;IAAA,IAAAS,SAAA;MAAA,OAAAD,iBAAA,CACJZ,SAAS;QAACc,IAAI;QAAA,IAAAD,SAAA;UAAA,QAAAD,iBAAA,CACZD,UAAU;YAACI,IAAI;YAAA,IAAAF,SAAA;cAAA,OAAAD,iBAAA,CACbb,gBAAgB;gBAAA;gBAAQe,IAAI;cAAA;YAAA;UAAA,IAAAF,iBAAA,CAE9BD,UAAU;YAACI,IAAI;YAAA,IAAAF,SAAA;cAAA,OAAAD,iBAAA,CACbb,gBAAgB;gBAAA;gBAAQe,IAAI;cAAA;YAAA;UAAA;QAAA;MAAA;IAAA;EAAA,EAIrC,CAAC,CAACE,UAAU,CAAC;IACX,UAAU,EAAE;AAChB;AACA;AACA;AACA,KAAK;IACD,UAAU,EAAE;AAChB;AACA;AACA;AACA;EACE,CAAC,CAAC;AACJ,CAAC,CAAC;AAEFT,QAAQ,CAAC,gBAAgB,EAAE,MAAM;EAC/B,SAASU,qBAAqBA,CAACC,KAG9B,EAAE;IACD,OAAAN,iBAAA,CACGF,mBAAmB;MAAA,IAACS,KAAKA,CAAA;QAAA,OAAED,KAAK,CAACE,OAAO;MAAA;MAAA,IAAAP,SAAA;QAAA,OAAAD,iBAAA,CACtCD,UAAU;UAACI,IAAI;UAAA,IAAAF,SAAA;YAAA,OAAUK,KAAK,CAACL,QAAQ;UAAA;QAAA;MAAA;IAAA;EAG9C;EAEAJ,EAAE,CAAC,kBAAkB,EAAE,MAAM;IAC3BD,MAAM,CAAAI,iBAAA,CACHK,qBAAqB;MAACG,OAAO,EAAE;QAAEC,QAAQ,EAAE;MAAE,CAAC;MAAA,IAAAR,SAAA;QAAA,iBAAAD,iBAAA,CAE5CV,MAAM;UAAAW,QAAA;QAAA;MAAA;IAAA,EAEX,CAAC,CAACG,UAAU,CAAC;AACjB;AACA;AACA,KAAK,CAAC;EACJ,CAAC,CAAC;EAEFP,EAAE,CAAC,iBAAiB,EAAE,MAAM;IAC1BD,MAAM,CAAAI,iBAAA,CACHK,qBAAqB;MAACG,OAAO,EAAE;QAAEE,OAAO,EAAE;MAAK,CAAC;MAAA,IAAAT,SAAA;QAAA,iBAAAD,iBAAA,CAE9CV,MAAM;UAAAW,QAAA;QAAA;MAAA;IAAA,EAEX,CAAC,CAACG,UAAU,CAAC;AACjB;AACA;AACA,KAAK,CAAC;EACJ,CAAC,CAAC;EAEFP,EAAE,CAAC,oBAAoB,EAAE,MAAM;IAC7BD,MAAM,CAAAI,iBAAA,CACHK,qBAAqB;MAACG,OAAO,EAAE;QAAEG,UAAU,EAAE;MAAG,CAAC;MAAA,IAAAV,SAAA;QAAA,OAAAD,iBAAA,CAC/CP,KAAK;UAAAQ,QAAA;QAAA;MAAA;IAAA,EAEV,CAAC,CAACG,UAAU,CAAC;AACjB;AACA;AACA,KAAK,CAAC;EACJ,CAAC,CAAC;EAEFP,EAAE,CAAC,yDAAyD,EAAE,MAAM;IAClED,MAAM,CAAAI,iBAAA,CACHX,aAAa;MAACkB,KAAK,EAAE;QAAEE,QAAQ,EAAE;MAAE,CAAC;MAAA,IAAAR,SAAA;QAAA,OAAAD,iBAAA,CAClCF,mBAAmB;UAACS,KAAK,EAAE;YAAEE,QAAQ,EAAE;UAAE,CAAC;UAAA,IAAAR,SAAA;YAAA,OAAAD,iBAAA,CACxCD,UAAU;cAACI,IAAI;cAAA,IAAAF,SAAA;gBAAA,iBAAAD,iBAAA,CAEbV,MAAM;kBAAAW,QAAA;gBAAA;cAAA;YAAA;UAAA;QAAA;MAAA;IAAA,EAIf,CAAC,CAACG,UAAU,CAAC;AACjB;AACA;AACA,KAAK,CAAC;EACJ,CAAC,CAAC;EAEFP,EAAE,CAAC,4DAA4D,EAAE,MAAM;IACrED,MAAM,CAAAI,iBAAA,CACHR,MAAM;MAAA,IAAAS,SAAA;QAAA,OAAAD,iBAAA,CACJD,UAAU;UACTI,IAAI;UACJS,aAAa,EAAE,wBAAwB;UAAA,IACvCC,MAAMA,CAAA;YAAA,OAAAb,iBAAA,CAAGP,KAAK;cAAAQ,QAAA;YAAA;UAAA;UAAA,IAAAA,SAAA;YAAA,OAAAD,iBAAA,CAEbT,IAAI;cAAA,IAAAU,SAAA;gBAAA,QAAAD,iBAAA,CACFd,SAAS;kBAAA,IAACgB,IAAIA,CAAA;oBAAA,OAAER,aAAa,CAACoB,sBAAsB;kBAAA;gBAAA,IAAAd,iBAAA,CACpDb,gBAAgB;kBAAA;kBAAQe,IAAI;gBAAA;cAAA;YAAA;UAAA;QAAA;MAAA;IAAA,EAIrC,CAAC,CAACE,UAAU,CAAC;AACjB;AACA;AACA;AACA;AACA;AACA;AACA;AACA,KAAK,CAAC;EACJ,CAAC,CAAC;AACJ,CAAC,CAAC","ignoreList":[]}
|