Skip to content

Commit b34ac59

Browse files
wip
1 parent d363866 commit b34ac59

File tree

6 files changed

+77
-27
lines changed

6 files changed

+77
-27
lines changed

src/Actions/TransformTypesAction.php

+2-1
Original file line numberDiff line numberDiff line change
@@ -43,11 +43,12 @@ public function transformClassNode(
4343
if (count($node->getAttributes(Hidden::class)) > 0) {
4444
return null;
4545
}
46+
$transformationContext = TransformationContext::createFromPhpClass($node);
4647

4748
foreach ($transformers as $transformer) {
4849
$transformed = $transformer->transform(
4950
$node,
50-
TransformationContext::createFromPhpClass($node),
51+
$transformationContext,
5152
);
5253

5354
if ($transformed instanceof Transformed) {

src/Handlers/Watch/DirectoryDeletedWatchEventHandler.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,6 @@ class DirectoryDeletedWatchEventHandler implements WatchEventHandler
66
{
77
public function handle($event): void
88
{
9-
9+
// TODO: Implement handle() method.
1010
}
1111
}

src/PhpNodes/PhpAttributeNode.php

+62-1
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,13 @@
33
namespace Spatie\TypeScriptTransformer\PhpNodes;
44

55
use ReflectionAttribute;
6+
use ReflectionMethod;
67
use Roave\BetterReflection\Reflection\ReflectionAttribute as RoaveReflectionAttribute;
78

89
class PhpAttributeNode
910
{
11+
protected ?array $arguments = null;
12+
1013
public function __construct(
1114
public readonly ReflectionAttribute|RoaveReflectionAttribute $reflection
1215
) {
@@ -22,9 +25,27 @@ public function getArguments(): array
2225
return $this->reflection->getArguments();
2326
}
2427

28+
public function hasArgument(string $name): bool
29+
{
30+
if ($this->arguments === null) {
31+
$this->initializeArguments();
32+
}
33+
34+
return array_key_exists($name, $this->arguments);
35+
}
36+
37+
public function getArgument(string $name): mixed
38+
{
39+
if ($this->arguments === null) {
40+
$this->initializeArguments();
41+
}
42+
43+
return $this->arguments[$name] ?? null;
44+
}
45+
2546
public function newInstance(): object
2647
{
27-
if($this->reflection instanceof ReflectionAttribute) {
48+
if ($this->reflection instanceof ReflectionAttribute) {
2849
return $this->reflection->newInstance();
2950
}
3051

@@ -33,4 +54,44 @@ public function newInstance(): object
3354
// TODO: maybe we can do a little better here
3455
return (new $className())($this->reflection->getArguments());
3556
}
57+
58+
/** @return array<string, mixed> */
59+
protected function initializeArguments(): array
60+
{
61+
// TODO: this is a quickly written thing, test it to be sure it works
62+
if ($this->arguments !== null) {
63+
return $this->arguments;
64+
}
65+
66+
$this->arguments = [];
67+
68+
$values = $this->getArguments();
69+
70+
foreach ($values as $name => $value) {
71+
if (is_string($name)) {
72+
$this->arguments[$name] = $value;
73+
unset($values[$name]);
74+
}
75+
}
76+
77+
if (count($values) === 0) {
78+
return $this->arguments;
79+
}
80+
81+
$constructor = new ReflectionMethod($this->reflection->getName(), '__construct');
82+
83+
foreach ($constructor->getParameters() as $index => $param) {
84+
if(array_key_exists($param->getName(), $this->arguments)) {
85+
continue;
86+
}
87+
88+
if(! array_key_exists($index, $values)) {
89+
continue;
90+
}
91+
92+
$this->arguments[$param->getName()] = $values[$index];
93+
}
94+
95+
return $this->arguments;
96+
}
3697
}

src/Support/TransformationContext.php

+7-3
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,15 @@ public function __construct(
1818
public static function createFromPhpClass(
1919
PhpClassNode $node
2020
): TransformationContext {
21-
$attributeArguments = ($node->getAttributes(TypeScript::class)[0] ?? null)?->getArguments() ?? [];
21+
$attribute = $node->getAttributes(TypeScript::class)[0] ?? null;
2222

23-
$name = $attributeArguments['name'] ?? $node->getShortName();
23+
$name = $attribute && $attribute->hasArgument('name')
24+
? $attribute->getArgument('name')
25+
: $node->getShortName();
2426

25-
$nameSpaceSegments = $attributeArguments['location'] ?? explode('\\', $node->getNamespaceName());
27+
$nameSpaceSegments = $attribute && $attribute->hasArgument('location')
28+
? $attribute->getArgument('location')
29+
: explode('\\', $node->getNamespaceName());
2630

2731
return new TransformationContext(
2832
$name,

src/Writers/ModuleWriter.php

+5-4
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,15 @@ public function output(TransformedCollection $collection): array
2727

2828
$writtenFiles = [];
2929

30-
foreach ($locations as $location) {
31-
if ($location->hasChanges() === false) {
32-
continue;
33-
}
30+
// TODO: remove files which still exists due to previous run
3431

32+
foreach ($locations as $location) {
3533
$writtenFiles[] = $this->writeLocation($location, $collection);
3634
}
3735

36+
// TODO: we probably can be a bit smarter about this
37+
// -> only write files which have changed
38+
3839
return $writtenFiles;
3940
}
4041

tests/Actions/TransformTypesActionTest.php

-17
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
use Spatie\TypeScriptTransformer\Actions\TransformTypesAction;
44
use Spatie\TypeScriptTransformer\PhpNodes\PhpClassNode;
5-
use Spatie\TypeScriptTransformer\Support\TypeScriptTransformerLog;
65
use Spatie\TypeScriptTransformer\Tests\Fakes\TypesToProvide\HiddenAttributedClass;
76
use Spatie\TypeScriptTransformer\Tests\Fakes\TypesToProvide\SimpleClass;
87
use Spatie\TypeScriptTransformer\Tests\Fakes\TypesToProvide\StringBackedEnum;
@@ -52,19 +51,3 @@
5251

5352
expect($types)->toBeEmpty();
5453
});
55-
56-
it('will log errors when a type cannot be reflected', function () {
57-
$types = (new TransformTypesAction())->execute(
58-
[
59-
new AllClassTransformer(),
60-
],
61-
[
62-
PhpClassNode::fromClassString('NonExistentClass'),
63-
]
64-
);
65-
66-
expect($types)->toBeEmpty();
67-
68-
expect(TypeScriptTransformerLog::resolve()->errorMessages)
69-
->toHaveCount(1);
70-
});

0 commit comments

Comments
 (0)