Skip to content

Commit 9a4fc85

Browse files
committed
feat: add Element properties in typescript
1 parent 966cc2b commit 9a4fc85

File tree

2 files changed

+15
-4
lines changed

2 files changed

+15
-4
lines changed

src/aidbox_sdk/generator/typescript.clj

+8-3
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@
8181
(defn ->backbone-type [element]
8282
(str/replace (str (:base element) (uppercase-first-letter (:name element))) #"[_-]" ""))
8383

84-
(defn generate-property [{:keys [name array required type choices profile] :as element}]
84+
(defn generate-property [{:keys [name array required type choices profile fhir-version] :as element}]
8585
(let [optional (if required "" "?")]
8686
(cond choices
8787
(generate-polymorphic-property element)
@@ -94,8 +94,11 @@
9494
:else
9595
(let [type' (if (= "BackboneElement" type)
9696
(->backbone-type element)
97-
(->lang-type (:type element)))]
98-
(str (->camel-case name) optional ": " type' (when array "[]") ";")))))
97+
(->lang-type (:type element)))
98+
primitive-type? (fhir/primitive-element? fhir-version element)]
99+
(str (str (->camel-case name) optional ": " type' (when array "[]") ";")
100+
(when primitive-type?
101+
(str "\n" u/indent "_" (->camel-case name) ": Element;")))))))
99102

100103
(defn generate-class
101104
"Generates TypeScript type from IR (intermediate representation) schema."
@@ -110,7 +113,9 @@
110113
""))
111114
properties (->> (:elements ir-schema)
112115
(remove #(:choice-option %))
116+
(map #(assoc % :fhir-version (:fhir-version ir-schema)))
113117
(map generate-property)
118+
(flatten)
114119
(remove nil?)
115120
(map u/add-indent)
116121
(str/join "\n"))]

test/aidbox_sdk/generator/typescript_test.clj

+7-1
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,19 @@
111111
" managingOrganization?: Reference;"
112112
" name?: HumanName[];"
113113
" birthDate?: string;"
114+
" _birthDate: Element;"
114115
" multipleBirth?: boolean | number;"
115116
" deceased?: string | boolean;"
116117
" photo?: Attachment[];"
117118
" link?: PatientLink[];"
118119
" active?: boolean;"
120+
" _active: Element;"
119121
" communication?: PatientCommunication[];"
120122
" identifier?: Identifier[];"
121123
" telecom?: ContactPoint[];"
122124
" generalPractitioner?: Reference[];"
123125
" gender?: string;"
126+
" _gender: Element;"
124127
" maritalStatus?: CodeableConcept;"
125128
" contact?: PatientContact[];"
126129
"};"])
@@ -165,16 +168,19 @@
165168
" managingOrganization?: Reference;"
166169
" name?: HumanName[];"
167170
" birthDate?: string;"
171+
" _birthDate: Element;"
168172
" multipleBirth?: boolean | number;"
169173
" deceased?: string | boolean;"
170174
" photo?: Attachment[];"
171175
" link?: PatientLink[];"
172176
" active?: boolean;"
177+
" _active: Element;"
173178
" communication?: PatientCommunication[];"
174179
" identifier?: Identifier[];"
175180
" telecom?: ContactPoint[];"
176181
" generalPractitioner?: Reference[];"
177182
" gender?: string;"
183+
" _gender: Element;"
178184
" maritalStatus?: CodeableConcept;"
179185
" contact?: PatientContact[];"
180186
"};"])
@@ -192,7 +198,7 @@
192198
(is
193199
(= {:path (io/file "hl7-fhir-r4-core/Patient.ts"),
194200
:content
195-
"import { Address } from \"./Address\";\nimport { Attachment } from \"./Attachment\";\nimport { Period } from \"./Period\";\nimport { CodeableConcept } from \"./CodeableConcept\";\nimport { ContactPoint } from \"./ContactPoint\";\nimport { HumanName } from \"./HumanName\";\nimport { DomainResource } from \"./DomainResource\";\nimport { Reference } from \"./Reference\";\nimport { Identifier } from \"./Identifier\";\nimport { BackboneElement } from \"./BackboneElement\";\n\nexport type PatientLink = BackboneElement & {\n type: string;\n other: Reference;\n};\n\nexport type PatientCommunication = BackboneElement & {\n language: CodeableConcept;\n preferred?: boolean;\n};\n\nexport type PatientContact = BackboneElement & {\n name?: HumanName;\n gender?: string;\n period?: Period;\n address?: Address;\n telecom?: ContactPoint[];\n organization?: Reference;\n relationship?: CodeableConcept[];\n};\n\nexport type Patient = DomainResource & {\n address?: Address[];\n managingOrganization?: Reference;\n name?: HumanName[];\n birthDate?: string;\n multipleBirth?: boolean | number;\n deceased?: string | boolean;\n photo?: Attachment[];\n link?: PatientLink[];\n active?: boolean;\n communication?: PatientCommunication[];\n identifier?: Identifier[];\n telecom?: ContactPoint[];\n generalPractitioner?: Reference[];\n gender?: string;\n maritalStatus?: CodeableConcept;\n contact?: PatientContact[];\n};"}
201+
"import { Address } from \"./Address\";\nimport { Attachment } from \"./Attachment\";\nimport { Period } from \"./Period\";\nimport { CodeableConcept } from \"./CodeableConcept\";\nimport { ContactPoint } from \"./ContactPoint\";\nimport { HumanName } from \"./HumanName\";\nimport { DomainResource } from \"./DomainResource\";\nimport { Reference } from \"./Reference\";\nimport { Identifier } from \"./Identifier\";\nimport { BackboneElement } from \"./BackboneElement\";\n\nexport type PatientLink = BackboneElement & {\n type: string;\n other: Reference;\n};\n\nexport type PatientCommunication = BackboneElement & {\n language: CodeableConcept;\n preferred?: boolean;\n};\n\nexport type PatientContact = BackboneElement & {\n name?: HumanName;\n gender?: string;\n period?: Period;\n address?: Address;\n telecom?: ContactPoint[];\n organization?: Reference;\n relationship?: CodeableConcept[];\n};\n\nexport type Patient = DomainResource & {\n address?: Address[];\n managingOrganization?: Reference;\n name?: HumanName[];\n birthDate?: string;\n _birthDate: Element;\n multipleBirth?: boolean | number;\n deceased?: string | boolean;\n photo?: Attachment[];\n link?: PatientLink[];\n active?: boolean;\n _active: Element;\n communication?: PatientCommunication[];\n identifier?: Identifier[];\n telecom?: ContactPoint[];\n generalPractitioner?: Reference[];\n gender?: string;\n _gender: Element;\n maritalStatus?: CodeableConcept;\n contact?: PatientContact[];\n};"}
196202
(sut/generate-resource-module generator (fixt/get-data :patient-ir-schema)))))
197203

198204
#_(deftest test-generate-search-params

0 commit comments

Comments
 (0)