What's your biggest current challenge? Have your say in Community Polls along the right column.
Our Partner & Developer boards on the community are moving to a brand new home: the .dev community forums! While you can still access past discussions here, for all your future app and storefront building questions, head over to the new forums.

Re: createFiles bug

Solved

createFiles bug

EvilGranny
Shopify Partner
15 2 4

When I've created files I want to save links. But if I request files immediately, I don't have urls in the response. But if I use setTimeut, I get them!!!!!

There's the code:

const createFiles = async (files, stagedTargets, graphql) => {
const response = await graphql(`
mutation fileCreate($files: [FileCreateInput!]!) {
fileCreate(files: $files) {
files {
fileErrors {
code
details
message
}
... on MediaImage {
id
}
... on GenericFile {
id
}
... on Video {
id
}
}
userErrors {
field
message
}
}
}
`, {
variables: {
files: prepareFilesToCreate(stagedTargets, files),
}
});

const result = await response.json();

return {
response: result,
errors: result.data.fileCreate.userErrors,
}
}



const getFilesByIds = async (files, graphql) => {
try {
const response = await graphql(`
query ($ids: [ID!]!) {
nodes(ids: $ids) {
__typename
... on GenericFile {
id
url
fileErrors {
code
details
message
}
}
... on MediaImage {
id
fileErrors {
code
details
message
}
image {
url
}
}
}
}
`, {
variables: {
ids: files.map((file) => file.id),
}
});

const result = await response.json();

return {
response: result.data.nodes,
errors: result.errors,
}
} catch (e) {
return {
errors: [e?.message || 'Files getting error']
}
}
}



it doesn't work:

  const newFiles = await getFilesByIds(createFilesResponse.data.fileCreate.files, graphql);

console.log('newFiles', newFiles.response);
console.log('newFiles2', newFiles.response.map((file) => file.image));
console.log('errors', newFiles.errors);

But it works:

setTimeout(async () => {
const newFiles = await getFilesByIds(createFilesResponse.data.fileCreate.files, graphql);

console.log('newFiles', newFiles.response);
console.log('newFiles2', newFiles.response.map((file) => file.image));
console.log('errors', newFiles.errors);
}, 5000)
Screenshot 2023-11-30 at 20.04.04.png

Screenshot 2023-11-30 at 20.04.58.png

 I guess createdFiles shoud set links before request, not after....

Accepted Solution (1)

Liam
Community Manager
3108 344 895

This is an accepted solution.

HI EvilGranny,

 

Your observation is correct. The file creation process is asynchronous, meaning that the file might not be immediately available after the createFiles function is called. This is why when you immediately call getFilesByIds, the URLs are not available yet. However, when you delay the execution of getFilesByIds by using setTimeout, the files have enough time to be processed and their URLs become available.

 

A common way to handle this is to use some kind of polling mechanism:

  1. Create the files.
  2. Periodically fetch the file details until the URLs are available.
  3. Proceed with the rest of your code.

Hope this helps,

Liam | Developer Advocate @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit Shopify.dev or the Shopify Web Design and Development Blog

View solution in original post

Replies 3 (3)

EvilGranny
Shopify Partner
15 2 4

And i'm using second request because fileCreate returns nothing

Liam
Community Manager
3108 344 895

This is an accepted solution.

HI EvilGranny,

 

Your observation is correct. The file creation process is asynchronous, meaning that the file might not be immediately available after the createFiles function is called. This is why when you immediately call getFilesByIds, the URLs are not available yet. However, when you delay the execution of getFilesByIds by using setTimeout, the files have enough time to be processed and their URLs become available.

 

A common way to handle this is to use some kind of polling mechanism:

  1. Create the files.
  2. Periodically fetch the file details until the URLs are available.
  3. Proceed with the rest of your code.

Hope this helps,

Liam | Developer Advocate @ Shopify 
 - Was my reply helpful? Click Like to let me know! 
 - Was your question answered? Mark it as an Accepted Solution
 - To learn more visit Shopify.dev or the Shopify Web Design and Development Blog

EvilGranny
Shopify Partner
15 2 4

Yeah... It helps, thank you, but that's looks like very big issue. First of all it shouldn't work this way and it wasn't described in the docs...

I believe, waiting process should be on your side