-
Notifications
You must be signed in to change notification settings - Fork 63
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
fix: swift file names #713
Changes from 3 commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -7,7 +7,7 @@ const constants = require('../constants'); | |||
const { loadConfig } = require('../codegen-config'); | ||||
const { ensureIntrospectionSchema, getFrontEndHandler, getAppSyncAPIDetails, getAppSyncAPIInfoFromProject } = require('../utils'); | ||||
const { generateTypes: generateTypesHelper } = require('@aws-amplify/graphql-generator'); | ||||
const { extractDocumentFromJavascript } = require('@aws-amplify/graphql-types-generator'); | ||||
const { generate, extractDocumentFromJavascript } = require('@aws-amplify/graphql-types-generator'); | ||||
|
||||
async function generateTypes(context, forceDownloadSchema, withoutInit = false, decoupleFrontend = '') { | ||||
let frontend = decoupleFrontend; | ||||
|
@@ -57,25 +57,24 @@ async function generateTypes(context, forceDownloadSchema, withoutInit = false, | |||
const target = cfg.amplifyExtension.codeGenTarget; | ||||
|
||||
const excludes = cfg.excludes.map(pattern => `!${pattern}`); | ||||
const queryFiles = glob | ||||
.sync([...includeFiles, ...excludes], { | ||||
cwd: projectPath, | ||||
absolute: true, | ||||
}) | ||||
.map(queryFilePath => { | ||||
const fileContents = fs.readFileSync(queryFilePath, 'utf8'); | ||||
if ( | ||||
queryFilePath.endsWith('.jsx') || | ||||
queryFilePath.endsWith('.js') || | ||||
queryFilePath.endsWith('.tsx') || | ||||
queryFilePath.endsWith('.ts') | ||||
) { | ||||
return extractDocumentFromJavascript(fileContents, ''); | ||||
} | ||||
return fileContents; | ||||
}); | ||||
const queryFilePaths = glob.sync([...includeFiles, ...excludes], { | ||||
cwd: projectPath, | ||||
absolute: true, | ||||
}); | ||||
const queryFiles = queryFilePaths.map(queryFilePath => { | ||||
const fileContents = fs.readFileSync(queryFilePath, 'utf8'); | ||||
if ( | ||||
queryFilePath.endsWith('.jsx') || | ||||
queryFilePath.endsWith('.js') || | ||||
queryFilePath.endsWith('.tsx') || | ||||
queryFilePath.endsWith('.ts') | ||||
) { | ||||
return extractDocumentFromJavascript(fileContents, ''); | ||||
} | ||||
return fileContents; | ||||
}); | ||||
if (queryFiles.length === 0) { | ||||
throw new Error('No queries found to generate types for, you may need to run \'codegen statements\' first'); | ||||
throw new Error("No queries found to generate types for, you may need to run 'codegen statements' first"); | ||||
} | ||||
const queries = queryFiles.join('\n'); | ||||
|
||||
|
@@ -96,22 +95,30 @@ async function generateTypes(context, forceDownloadSchema, withoutInit = false, | |||
const introspection = path.extname(schemaPath) === '.json'; | ||||
|
||||
try { | ||||
const output = await generateTypesHelper({ | ||||
schema, | ||||
queries, | ||||
target, | ||||
introspection, | ||||
}); | ||||
const outputs = Object.entries(output); | ||||
|
||||
const outputPath = path.join(projectPath, generatedFileName); | ||||
if (outputs.length === 1) { | ||||
const [[, contents]] = outputs; | ||||
fs.outputFileSync(path.resolve(outputPath), contents); | ||||
if (target === 'swift' && fs.existsSync(outputPath) && fs.statSync(outputPath).isDirectory()) { | ||||
generate(queryFilePaths, schemaPath, path.join(projectPath, generatedFileName), '', target, '', { | ||||
addTypename: true, | ||||
complexObjectSupport: 'auto', | ||||
}); | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. doesn't the new There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It is bugged. The |
||||
} else { | ||||
outputs.forEach(([filepath, contents]) => { | ||||
fs.outputFileSync(path.resolve(path.join(outputPath, filepath)), contents); | ||||
const output = await generateTypesHelper({ | ||||
schema, | ||||
queries, | ||||
target, | ||||
introspection, | ||||
multipleSwiftFiles: false, | ||||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is this flag still needed for the current PR? Looks like the change of consuming this value is not included There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is necessary to ensure that multiple Swift files are not used in the graphql-generator package. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is currently defaulted to true.
|
||||
}); | ||||
const outputs = Object.entries(output); | ||||
|
||||
const outputPath = path.join(projectPath, generatedFileName); | ||||
if (outputs.length === 1) { | ||||
const [[, contents]] = outputs; | ||||
fs.outputFileSync(path.resolve(outputPath), contents); | ||||
} else { | ||||
outputs.forEach(([filepath, contents]) => { | ||||
fs.outputFileSync(path.resolve(path.join(outputPath, filepath)), contents); | ||||
}); | ||||
} | ||||
} | ||||
codeGenSpinner.succeed(`${constants.INFO_MESSAGE_CODEGEN_GENERATE_SUCCESS} ${path.relative(path.resolve('.'), outputPath)}`); | ||||
} catch (err) { | ||||
|
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.
This is the previous behavior for setting multiple files. https://github.com/aws-amplify/amplify-codegen/blob/9f11cfe396bacc603df84233a1b75feabcadaae6/packages/graphql-types-generator/src/generate.ts#L47C35-L47C102