-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(flow): add flow types #108
base: master
Are you sure you want to change the base?
Conversation
@@ -12,6 +12,7 @@ | |||
"@types/node": "^8.0.32", | |||
"coveralls": "^3.0.0", | |||
"jest": "^21.2.1", | |||
"jest-cli": "^21.2.1", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tests were failing for me because jest couldn't find jest-cli
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I missed this PR somehow, sorry! I've got a few requests, but otherwise looks awesome and thanks for opening it
@@ -31,7 +31,9 @@ | |||
"homepage": "https://github.com/avantcredit/gql2ts#readme", | |||
"dependencies": { | |||
"@gql2ts/language-typescript": "^1.3.0", | |||
"@gql2ts/util": "^1.3.0" | |||
"@gql2ts/util": "^1.3.0", | |||
"@types/humps": "^1.1.2", |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we move @types/humps
to devDependencies?
export const FLOW_INTERFACE_NAMER: WrapType = name => `${pascalize(name)}`; | ||
export const FLOW_INTERFACE_BUILDER: InterfaceAndTypeBuilder = (name, body) => | ||
`export type ${name} = ${body}`; | ||
export const FLOW_ENUM_NAME_GENERATOR: WrapType = name => `${pascalize(name)}`; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add Enum
or something to avoid conflicts with the interfaces?
export const FLOW_INTERFACE_BUILDER: InterfaceAndTypeBuilder = (name, body) => | ||
`export type ${name} = ${body}`; | ||
export const FLOW_ENUM_NAME_GENERATOR: WrapType = name => `${pascalize(name)}`; | ||
export const FLOW_TYPE_PRINTER: TypePrinter = (type, isNonNull) => |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
should we add Type
or something to avoid conflicts with the interfaces/enums? Or just assume that there shouldn't be duplicates. Not sure what the best move is here
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I vote no to adding a suffix to avoid conflicts. GraphQL doesn't allow duplicate type names. Enums should always be in SCREMING_CASE. As for conflicts with the IGraphQL*
types, they could be separated by moving them to a different file.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upon further consideration, you seem to be right about having type name conflicts. arahansen/gql2ts#1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@arahansen i think suffixing this with Type
or something similar might be the best way forward.
It's not the best solution, but it works for the typescript version
Also closes #78. |
@0xcaff @arahansen any update here? would love to get this merged in |
Blocked on resolving the failure discovered in arahansen/gql2ts#1 . |
adds flow types that match the nomenclature of flow more closely. fix #103