Open AlexGach opened 5 years ago
Hi, thanks for your report, currently the filename only support fixed string. So what if we support the function in filename property, like this:
<image keyName="backimage" title="Upload your image"
uiParams={{
filename: (file) => {
// you also can get the origin file from argument
return `${file.name}${shortId.generate()}`
}
}}
/>
Hi @abz53378, that would be great 👍
Hi, If a user uploads a second image named as a previously uploaded image, first image disappear and generates 404 error. For example uploading "default.png" in several articles.
To solve this we are using shorId library to generate a random value (like ECOMMERCE>ORDERS).
The problem is that shortId.generate() returns always the same value. How can we use shortID for uiParams filename correctly? Thanks!