Skip to content

Commit c770f32

Browse files
authored
Control JSDoc type names (#37)
1 parent d6b8fe8 commit c770f32

File tree

2 files changed

+47
-9
lines changed

2 files changed

+47
-9
lines changed

CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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.30] - 2021-04-08
8+
9+
### Added
10+
- Support for const/enum in JSDoc.
11+
- Control to prefix JSDoc types.
12+
713
## [0.2.29] - 2021-04-07
814

915
### Added
@@ -68,6 +74,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
6874
### Fixed
6975
- Description trimming bug.
7076

77+
[0.2.30]: https://github.com/swaggest/php-code-builder/compare/v0.2.29...v0.2.30
7178
[0.2.29]: https://github.com/swaggest/php-code-builder/compare/v0.2.28...v0.2.29
7279
[0.2.28]: https://github.com/swaggest/php-code-builder/compare/v0.2.27...v0.2.28
7380
[0.2.27]: https://github.com/swaggest/php-code-builder/compare/v0.2.26...v0.2.27

src/JSDoc/TypeBuilder.php

+40-9
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ class TypeBuilder
1515
'#/definitions'
1616
];
1717

18+
public $addNamePrefix = '';
19+
1820
public $file = '';
1921

2022
public function __construct()
@@ -38,37 +40,66 @@ public function getTypeString($schema, $path = '')
3840
$isString = false;
3941
$isNumber = false;
4042

43+
if ($schema->const !== null) {
44+
return '(' . var_export($schema->const, true) . ')';
45+
}
46+
47+
if (!empty($schema->enum)) {
48+
$res = '';
49+
foreach ($schema->enum as $value) {
50+
$res .= var_export($value, true) . '|';
51+
}
52+
return '(' . substr($res, 0, -1) . ')';
53+
}
54+
55+
if (!empty($schema->getFromRefs())) {
56+
$refs = $schema->getFromRefs();
57+
$path = $refs[0];
58+
}
59+
4160
$type = $schema->type;
61+
if ($type === null) {
62+
$type = [];
63+
64+
if (!empty($schema->properties) || !empty($schema->additionalProperties) || !empty($schema->patternProperties)) {
65+
$type[] = Schema::OBJECT;
66+
}
67+
68+
if (!empty($schema->items) || !empty($schema->additionalItems)) {
69+
$type[] = Schema::_ARRAY;
70+
}
71+
}
72+
4273
if (!is_array($type)) {
4374
$type = [$type];
4475
}
4576

4677
$or = [];
4778

4879
if ($schema->oneOf !== null) {
49-
foreach ($schema->oneOf as $item) {
50-
$or[] = $this->getTypeString($item);
80+
foreach ($schema->oneOf as $i => $item) {
81+
$or[] = $this->getTypeString($item, $path . '/oneOf/' . $i);
5182
}
5283
}
5384

5485
if ($schema->anyOf !== null) {
55-
foreach ($schema->anyOf as $item) {
56-
$or[] = $this->getTypeString($item);
86+
foreach ($schema->anyOf as $i => $item) {
87+
$or[] = $this->getTypeString($item, $path . '/anyOf/' . $i);
5788
}
5889
}
5990

6091
if ($schema->allOf !== null) {
61-
foreach ($schema->allOf as $item) {
62-
$or[] = $this->getTypeString($item);
92+
foreach ($schema->allOf as $i => $item) {
93+
$or[] = $this->getTypeString($item, $path . '/allOf/' . $i);
6394
}
6495
}
6596

6697
if ($schema->then !== null) {
67-
$or[] = $this->getTypeString($schema->then);
98+
$or[] = $this->getTypeString($schema->then, $path . '/then');
6899
}
69100

70101
if ($schema->else !== null) {
71-
$or[] = $this->getTypeString($schema->else);
102+
$or[] = $this->getTypeString($schema->else, $path . '/else');
72103
}
73104

74105
foreach ($type as $i => $t) {
@@ -201,7 +232,7 @@ private function typeName(Schema $schema, $path)
201232
}
202233
}
203234

204-
return PhpCode::makePhpName($path, false);
235+
return PhpCode::makePhpName($this->addNamePrefix . '_' . $path, false);
205236
}
206237

207238
private function makeObjectTypeDef(Schema $schema, $path)

0 commit comments

Comments
 (0)