Skip to content

Commit d7d978d

Browse files
committed
docs: Use additionalProperties for map properties
1 parent f85593c commit d7d978d

File tree

3 files changed

+29
-19
lines changed

3 files changed

+29
-19
lines changed

src/empire/empire.schema.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,8 @@ export class Empire extends GlobalSchema {
9292
@Prop({type: Object})
9393
@IsObject()
9494
@ApiProperty({
95-
type: 'object',
96-
properties: RESOURCES_SCHEMA_PROPERTIES,
95+
description: 'Resources that this empire starts with. Defaults to 0 for all resources.',
96+
...RESOURCES_SCHEMA_PROPERTIES,
9797
})
9898
resources: Record<ResourceName, number>;
9999

src/game-logic/types.ts

+21-15
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
1-
import {ResourceName, RESOURCES} from './resources';
1+
import {ResourceName} from './resources';
22
import {ApiProperty, ApiPropertyOptional} from '@nestjs/swagger';
33
import {VARIABLES} from './variables';
44
import {SYSTEM_TYPES, SystemTypeName} from './system-types';
55
import {SchemaObject} from '@nestjs/swagger/dist/interfaces/open-api-spec.interface';
6-
import {ArrayMaxSize, ArrayMinSize, IsInt} from 'class-validator';
76

87
export type DeepNumberKeys<T> = T extends Record<string, any> ? {
98
[K in keyof T]-?: T[K] extends object ? `${K & string}.${DeepNumberKeys<T[K]>}` : T[K] extends number ? K & string : never;
@@ -126,11 +125,18 @@ export class Resource {
126125
credit_value?: number;
127126
}
128127

129-
export const RESOURCES_SCHEMA_PROPERTIES = Object.fromEntries(Object.keys(RESOURCES).map(id => [id, {
130-
type: 'integer',
131-
default: 0,
132-
minimum: 0,
133-
} satisfies SchemaObject]));
128+
export const RESOURCES_SCHEMA_PROPERTIES = {
129+
example: {
130+
energy: 10,
131+
minerals: 20,
132+
},
133+
type: 'object',
134+
additionalProperties: {
135+
type: 'integer',
136+
default: 0,
137+
minimum: 0,
138+
},
139+
};
134140

135141
export class SystemType {
136142
@ApiProperty()
@@ -175,13 +181,13 @@ export class SystemUpgrade {
175181

176182
@ApiProperty({
177183
description: 'The cost to upgrade the system, specified in various resources.',
178-
properties: RESOURCES_SCHEMA_PROPERTIES,
184+
...RESOURCES_SCHEMA_PROPERTIES,
179185
})
180186
cost: Partial<Record<ResourceName, number>>;
181187

182188
@ApiProperty({
183189
description: 'The ongoing upkeep of the system, specified in various resources, required to maintain its benefits.',
184-
properties: RESOURCES_SCHEMA_PROPERTIES,
190+
...RESOURCES_SCHEMA_PROPERTIES,
185191
})
186192
upkeep: Partial<Record<ResourceName, number>>;
187193

@@ -197,19 +203,19 @@ export class Building {
197203

198204
@ApiProperty({
199205
description: 'The cost to construct the building, specified in various resources.',
200-
properties: RESOURCES_SCHEMA_PROPERTIES,
206+
...RESOURCES_SCHEMA_PROPERTIES,
201207
})
202208
cost: Partial<Record<ResourceName, number>>;
203209

204210
@ApiProperty({
205211
description: 'The ongoing upkeep of the building, specified in various resources, required to maintain operation.',
206-
properties: RESOURCES_SCHEMA_PROPERTIES,
212+
...RESOURCES_SCHEMA_PROPERTIES,
207213
})
208214
upkeep: Partial<Record<ResourceName, number>>;
209215

210216
@ApiProperty({
211217
description: 'The production output of the building, specified in various resources, that it contributes to the empire\'s economy.',
212-
properties: RESOURCES_SCHEMA_PROPERTIES,
218+
...RESOURCES_SCHEMA_PROPERTIES,
213219
})
214220
production: Partial<Record<ResourceName, number>>;
215221
}
@@ -230,19 +236,19 @@ export class District {
230236

231237
@ApiProperty({
232238
description: 'The cost to establish the district, specified in various resources.',
233-
properties: RESOURCES_SCHEMA_PROPERTIES,
239+
...RESOURCES_SCHEMA_PROPERTIES,
234240
})
235241
cost: Partial<Record<ResourceName, number>>;
236242

237243
@ApiProperty({
238244
description: 'The ongoing upkeep of the district, specified in various resources, required to maintain its benefits.',
239-
properties: RESOURCES_SCHEMA_PROPERTIES,
245+
...RESOURCES_SCHEMA_PROPERTIES,
240246
})
241247
upkeep: Partial<Record<ResourceName, number>>;
242248

243249
@ApiProperty({
244250
description: 'The production output of the district, specified in various resources, contributing to the empire\'s economy.',
245-
properties: RESOURCES_SCHEMA_PROPERTIES,
251+
...RESOURCES_SCHEMA_PROPERTIES,
246252
})
247253
production: Partial<Record<ResourceName, number>>;
248254
}

src/presets/presets.controller.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,9 @@ export class PresetsController {
2424
@Get('resources')
2525
@ApiOkResponse({
2626
schema: {
27-
properties: Object.fromEntries(Object.keys(RESOURCES).map(k => [k, {$ref: getSchemaPath(Resource)}])),
27+
description: 'A map of resource ID to resource',
28+
type: 'object',
29+
additionalProperties: {$ref: getSchemaPath(Resource)},
2830
},
2931
})
3032
getResources(): typeof RESOURCES {
@@ -44,7 +46,9 @@ export class PresetsController {
4446
@Get('system-types')
4547
@ApiOkResponse({
4648
schema: {
47-
properties: Object.fromEntries(Object.keys(SYSTEM_TYPES).map(k => [k, {$ref: getSchemaPath(SystemType)}])),
49+
description: 'A map of system type ID to system type',
50+
type: 'object',
51+
additionalProperties: {$ref: getSchemaPath(SystemType)},
4852
},
4953
})
5054
getSystemTypes(): typeof SYSTEM_TYPES {

0 commit comments

Comments
 (0)