Skip to content

Commit 8ccd339

Browse files
authored
Improve JSDoc generation (#38)
* Improve maps in JSDoc * Support optional values in JSDoc
1 parent c770f32 commit 8ccd339

File tree

3 files changed

+27
-18
lines changed

3 files changed

+27
-18
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,14 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [0.2.31] - 2021-04-12
8+
9+
### Added
10+
- Support for optional values in JSDoc.
11+
12+
### Fixed
13+
- Map types in JSDoc.
14+
715
## [0.2.30] - 2021-04-08
816

917
### Added
@@ -74,6 +82,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7482
### Fixed
7583
- Description trimming bug.
7684

85+
[0.2.31]: https://github.com/swaggest/php-code-builder/compare/v0.2.30...v0.2.31
7786
[0.2.30]: https://github.com/swaggest/php-code-builder/compare/v0.2.29...v0.2.30
7887
[0.2.29]: https://github.com/swaggest/php-code-builder/compare/v0.2.28...v0.2.29
7988
[0.2.28]: https://github.com/swaggest/php-code-builder/compare/v0.2.27...v0.2.28

src/JSDoc/TypeBuilder.php

+12-12
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public function getTypeString($schema, $path = '')
153153

154154
if ($schema->additionalProperties instanceof Schema) {
155155
$typeName = $this->getTypeString($schema->additionalProperties, $path . '/additionalProperties');
156-
$or [] = "object<string, $typeName>";
156+
$or [] = "Object.<String,$typeName>";
157157
$typeAdded = true;
158158
}
159159

@@ -168,7 +168,7 @@ public function getTypeString($schema, $path = '')
168168
}
169169

170170
if (!$typeAdded) {
171-
$or [] = 'object';
171+
$or [] = 'Object';
172172
}
173173
}
174174

@@ -177,37 +177,37 @@ public function getTypeString($schema, $path = '')
177177

178178
if ($schema->items instanceof Schema) {
179179
$typeName = $this->getTypeString($schema->items, $path . '/items');
180-
$or [] = "array<$typeName>";
180+
$or [] = "Array<$typeName>";
181181
$typeAdded = true;
182182
}
183183

184184
if ($schema->additionalItems instanceof Schema) {
185185
$typeName = $this->getTypeString($schema->additionalItems, $path . '/additionalItems');
186-
$or [] = "array<$typeName>";
186+
$or [] = "Array<$typeName>";
187187
$typeAdded = true;
188188
}
189189

190190
if (!$typeAdded) {
191-
$or [] = 'array';
191+
$or [] = 'Array';
192192
}
193193
}
194194

195195
if ($isString) {
196-
$or [] = 'string';
196+
$or [] = 'String';
197197
}
198198

199199
if ($isNumber) {
200-
$or [] = 'number';
200+
$or [] = 'Number';
201201
}
202202

203203
if ($isBoolean) {
204-
$or [] = 'boolean';
204+
$or [] = 'Boolean';
205205
}
206206

207207
$res = '';
208208
foreach ($or as $item) {
209209
if (!empty($item) && $item !== '*') {
210-
$res .= '|' . $item;
210+
$res .= '|' . ($isOptional ? '?' : '') . $item;
211211
}
212212
}
213213

@@ -256,14 +256,14 @@ private function makeObjectTypeDef(Schema $schema, $path)
256256
$res = <<<JSDOC
257257
/**$head
258258
* @typedef {$typeName}
259-
* @type {object}
259+
* @type {Object}
260260
261261
JSDOC;
262262
if (!empty($schema->properties)) {
263263
foreach ($schema->properties as $propertyName => $propertySchema) {
264264
$typeString = $this->getTypeString($propertySchema, $path . '/' . $propertyName);
265265
$res .= <<<JSDOC
266-
* @property {{$typeString}} {$propertyName}{$this->description($propertySchema)}.
266+
* @property {{$typeString}} {$propertyName}{$this->description($propertySchema)}
267267
268268
JSDOC;
269269

@@ -285,7 +285,7 @@ private function description(Schema $schema)
285285
{
286286
$res = str_replace("\n", " ", $schema->title . $schema->description);
287287
if ($res) {
288-
return ' - ' . rtrim($res, '.');
288+
return ' - ' . rtrim($res, '.') . '.';
289289
}
290290

291291
return '';

tests/src/PHPUnit/JSDoc/JSDocTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ public function testJsonSchema()
3636
$this->assertSame(<<<'JS'
3737
/**
3838
* @typedef Person
39-
* @type {object}
40-
* @property {string} name - Person name.
41-
* @property {number} age.
42-
* @property {boolean} isMale.
43-
* @property {Person} partner.
44-
* @property {array<Person>} children.
39+
* @type {Object}
40+
* @property {String} name - Person name.
41+
* @property {Number} age
42+
* @property {Boolean} isMale
43+
* @property {Person} partner
44+
* @property {Array<Person>} children
4545
*/
4646

4747

0 commit comments

Comments
 (0)