@@ -21,6 +21,10 @@ import { mimeMatch } from "./utilities.js";
21
21
// TODO: Support fetch options in get
22
22
// TODO: Support filters
23
23
24
+ /**
25
+ * @template {JrefNode} [T=JrefNode]
26
+ * @implements API.Hyperjump<T>
27
+ */
24
28
export class Hyperjump {
25
29
// TODO: Add config to enable schemes and media types
26
30
#config;
@@ -59,7 +63,7 @@ export class Hyperjump {
59
63
this . addMediaTypePlugin ( new JsonMediaTypePlugin ( ) ) ;
60
64
}
61
65
62
- /** @type API.Hyperjump["get"] */
66
+ /** @type API.Hyperjump<T> ["get"] */
63
67
async get ( uri , options = this . #defaultGetOptions) {
64
68
uri = resolveIri ( uri , contextUri ( ) ) ;
65
69
const id = toAbsoluteIri ( uri ) ;
@@ -89,32 +93,32 @@ export class Hyperjump {
89
93
const cursor = document . fragmentKind === "json-pointer" ? fragment : "" ;
90
94
91
95
// eslint-disable-next-line @typescript-eslint/no-unsafe-argument
92
- const node = pointerGet ( cursor ?? "" , document . children [ 0 ] , document . uri ) ;
96
+ const node = /** @type T */ ( pointerGet ( cursor ?? "" , document . children [ 0 ] , document . uri ) ) ;
93
97
return await this . #followReferences( node ) ;
94
98
}
95
99
96
- /** @type (node: JrefNode ) => Promise<JsonCompatible<JrefNode >> */
100
+ /** @type (node: T ) => Promise<JsonCompatible<T >> */
97
101
async #followReferences( node ) {
98
102
if ( node ?. type === "jref-reference" ) {
99
103
return this . get ( node . value , { referencedFrom : node . documentUri } ) ;
100
104
} else {
101
- return node ;
105
+ return /** @type JsonCompatible<T> */ ( node ) ;
102
106
}
103
107
}
104
108
105
- /** @type API.Hyperjump["addUriSchemePlugin"] */
109
+ /** @type API.Hyperjump<T> ["addUriSchemePlugin"] */
106
110
addUriSchemePlugin ( plugin ) {
107
111
for ( const scheme of plugin . schemes ) {
108
112
this . #uriSchemePlugins[ scheme ] = plugin ;
109
113
}
110
114
}
111
115
112
- /** @type API.Hyperjump["removeUriSchemePlugin"] */
116
+ /** @type API.Hyperjump<T> ["removeUriSchemePlugin"] */
113
117
removeUriSchemePlugin ( scheme ) {
114
118
delete this . #uriSchemePlugins[ scheme ] ;
115
119
}
116
120
117
- /** @type API.Hyperjump["retrieve"] */
121
+ /** @type API.Hyperjump<T> ["retrieve"] */
118
122
async retrieve ( uri , options ) {
119
123
const { scheme } = parseIri ( uri ) ;
120
124
@@ -125,7 +129,7 @@ export class Hyperjump {
125
129
return this . #uriSchemePlugins[ scheme ] . retrieve ( uri , options ) ;
126
130
}
127
131
128
- /** @type API.Hyperjump["acceptableMediaTypes"] */
132
+ /** @type API.Hyperjump<T> ["acceptableMediaTypes"] */
129
133
acceptableMediaTypes ( ) {
130
134
let accept = "" ;
131
135
@@ -149,7 +153,7 @@ export class Hyperjump {
149
153
return accept ;
150
154
}
151
155
152
- /** @type API.Hyperjump["getMediaType"] */
156
+ /** @type API.Hyperjump<T> ["getMediaType"] */
153
157
getMediaType ( uri ) {
154
158
for ( const contentType in this . #mediaTypePlugins) {
155
159
for ( const extension of this . #mediaTypePlugins[ contentType ] . extensions ) {
@@ -164,17 +168,17 @@ export class Hyperjump {
164
168
throw new UnknownMediaTypeError ( `The media type of the file at '${ uri } ' could not be determined. Use the 'addMediaTypePlugin' function to add support for this media type.` ) ;
165
169
}
166
170
167
- /** @type API.Hyperjump["addMediaTypePlugin"] */
171
+ /** @type API.Hyperjump<T> ["addMediaTypePlugin"] */
168
172
addMediaTypePlugin ( plugin ) {
169
173
this . #mediaTypePlugins[ plugin . mediaType ] = plugin ;
170
174
}
171
175
172
- /** @type API.Hyperjump["removeMediaTypePlugin"] */
176
+ /** @type API.Hyperjump<T> ["removeMediaTypePlugin"] */
173
177
removeMediaTypePlugin ( contentType ) {
174
178
delete this . #mediaTypePlugins[ contentType ] ;
175
179
}
176
180
177
- /** @type API.Hyperjump["setMediaTypeQuality"] */
181
+ /** @type API.Hyperjump<T> ["setMediaTypeQuality"] */
178
182
setMediaTypeQuality ( contentType , quality ) {
179
183
this . #mediaTypePlugins[ contentType ] . quality = quality ;
180
184
}
@@ -200,12 +204,12 @@ export class Hyperjump {
200
204
typeOf = jsonTypeOf ;
201
205
has = jsonObjectHas ;
202
206
203
- /** @type API.Hyperjump["step"] */
207
+ /** @type API.Hyperjump<T> ["step"] */
204
208
async step ( key , node ) {
205
- return await this . #followReferences( pointerStep ( key , node ) ) ;
209
+ return await this . #followReferences( /** @type T */ ( pointerStep ( key , node ) ) ) ;
206
210
}
207
211
208
- /** @type API.Hyperjump["iter"] */
212
+ /** @type API.Hyperjump<T> ["iter"] */
209
213
async * iter ( node ) {
210
214
if ( node . jsonType === "array" ) {
211
215
for ( const itemNode of node . children ) {
@@ -216,7 +220,7 @@ export class Hyperjump {
216
220
217
221
keys = jsonObjectKeys ;
218
222
219
- /** @type API.Hyperjump["values"] */
223
+ /** @type API.Hyperjump<T> ["values"] */
220
224
async * values ( node ) {
221
225
if ( node . jsonType === "object" ) {
222
226
for ( const propertyNode of node . children ) {
@@ -225,11 +229,14 @@ export class Hyperjump {
225
229
}
226
230
}
227
231
228
- /** @type API.Hyperjump["entries"] */
232
+ /** @type API.Hyperjump<T> ["entries"] */
229
233
async * entries ( node ) {
230
234
if ( node . jsonType === "object" ) {
231
235
for ( const propertyNode of node . children ) {
232
- yield [ propertyNode . children [ 0 ] . value , await this . #followReferences( propertyNode . children [ 1 ] ) ] ;
236
+ yield [
237
+ propertyNode . children [ 0 ] . value ,
238
+ await this . #followReferences( propertyNode . children [ 1 ] )
239
+ ] ;
233
240
}
234
241
}
235
242
}
0 commit comments