fix(jsonschema): restore type factory usage - #5897
Merged
Merged
Conversation
Contributor
|
thanks @soyuka |
Member
Author
|
In that case you'd have to overwrite the property metadata factory: class LocalDatePropertyMetadataFactory implements PropertyMetadataFactoryInterface
{
public function __construct(private readonly ?PropertyMetadataFactoryInterface $decorated = null)
{
}
public function create(string $resourceClass, string $property, array $options = []): ApiProperty
{
$propertyMetadata = $this->decorated->create($resourceClass, $property, $options);
// check propertyMetadata->getBuiltinTypes();
return $propertyMetadata->withSchema(['type' => 'string', 'format' => 'date']);
}
} |
soyuka
force-pushed
the
fix/json-schema-type-factory
branch
2 times, most recently
from
October 19, 2023 09:47
acc2150 to
519ec0f
Compare
soyuka
force-pushed
the
fix/json-schema-type-factory
branch
from
October 19, 2023 09:53
519ec0f to
5e6ebb4
Compare
Member
Author
|
I hope that works for you |
Contributor
|
@soyuka i tried 3.4 and my decorating of |
Contributor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
We wrongly assumed in #5470 that the TypeFactory would be
@internalwhich it is not. We moved the logic related to type computation to our Schema PropertyMetadataFactory so that the schema could get cached.This patch restores the TypeFactory behavior.
I think that we should postpone the deprecation of the TypeFactory to 3.3 and provide a way to configure this on non-resources (see #5896) for example:
Overriding the property metadata factory is also an option but requires more code user land.