Skip to content

Commit

Permalink
feat(enums): generate enum Record keys when target is enum (#1037)
Browse files Browse the repository at this point in the history
  • Loading branch information
kuhe authored Oct 13, 2023
1 parent 6ae9527 commit 85c3faf
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .changeset/rich-turtles-relate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,10 @@ private void writeConstraintValidatorType(TypeScriptWriter writer, Shape shape)
Shape collectionMemberTargetShape = model.expectShape(collectionMemberShape.getTarget());
writer.writeInline("Iterable<$T>", getSymbolForValidatedType(collectionMemberTargetShape));
} else if (shape.isMapShape()) {
writer.writeInline("Record<string, $T>", getSymbolForValidatedType(((MapShape) shape).getValue()));
writer.writeInline("Record<$T, $T>",
getSymbolForValidatedType(((MapShape) shape).getKey()),
getSymbolForValidatedType(((MapShape) shape).getValue())
);
} else if (shape instanceof SimpleShape) {
writer.writeInline("$T", getSymbolForValidatedType(shape));
} else {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -193,9 +193,10 @@ public Symbol setShape(SetShape shape) {
*/
@Override
public Symbol mapShape(MapShape shape) {
Symbol reference = toSymbol(shape.getValue());
return createSymbolBuilder(shape, format("Record<string, %s>", reference.getName()), null)
.addReference(reference)
Symbol key = toSymbol(shape.getKey());
Symbol value = toSymbol(shape.getValue());
return createSymbolBuilder(shape, format("Record<%s, %s>", key.getName(), value.getName()), null)
.addReference(value)
.build();
}

Expand Down

0 comments on commit 85c3faf

Please sign in to comment.