R
Reactiflux

⛄ Snowberb ⛄ – 13-30 Jul 22

⛄ Snowberb ⛄ – 13-30 Jul 22

S⛄Snowberb⛄7/22/2022
How can I get the file names from a folder inside my project?
SScriptyChris7/22/2022
You mean programatically or how?
S⛄Snowberb⛄7/22/2022
yeah
S⛄Snowberb⛄7/22/2022
S⛄Snowberb⛄7/22/2022
I have this huge logos folder I want to get each file name to create an object dynamically containing those logos So I can later get the src with a function Something like getBookieImageSrc(bookie) you know? @ScriptyChris I dont want to repeat this process every time I put any new image
const images: Bookies = {
'1xbet': '/images/logos/williamhill.webp',
'777es': '/images/logos/williamhill.webp',
'888sport': '/images/logos/williamhill.webp',
aupabet: '/images/logos/williamhill.webp',
bet365: '/images/logos/williamhill.webp',
betfair: '/images/logos/betfair.webp',
bethard: '/images/logos/williamhill.webp',
betsson: '/images/logos/williamhill.webp'
}
const images: Bookies = {
'1xbet': '/images/logos/williamhill.webp',
'777es': '/images/logos/williamhill.webp',
'888sport': '/images/logos/williamhill.webp',
aupabet: '/images/logos/williamhill.webp',
bet365: '/images/logos/williamhill.webp',
betfair: '/images/logos/betfair.webp',
bethard: '/images/logos/williamhill.webp',
betsson: '/images/logos/williamhill.webp'
}
SScriptyChris7/22/2022
Ok, so you are going to need Node (or any backend language, which has access to a file system) In case of Node you can use fs module https://nodejs.org/api/fs.html You can use fs.readdir to list all files inside the logos folder And then to the mapping so file names become images object keys and - this i am not certain due to "williamhill.webp" suffix in your example - like file path be values You might a file watcher for that too https://nodejs.org/api/fs.html#fswatchfilename-options-listener or via some library https://www.npmjs.com/package/node-watch
S⛄Snowberb⛄7/22/2022
oj okay thank you sm!
UUUnknown User7/23/2022
Message Not Public
Sign In & Join Server To View

Looking for more? Join the community!

R
Reactiflux

⛄ Snowberb ⛄ – 13-30 Jul 22

Join Server