How Should I Handle Uploaded Images in My Document Editor?

0
8
Asked By CuriousCoder92 On

I'm developing a document editor that allows users to upload images, and I'm at a crossroads regarding how to manage these uploads. Should I create a browsable media library where users can freely manage, reuse, and reference their images, or should I keep the images hidden behind the documents they're used in and possibly auto-delete them if they're no longer linked? I'd appreciate any insights!

6 Answers

Answered By UserExperienceHero On

If you want your users to enjoy your platform, definitely go for a media library. Otherwise, you might frustrate them if they can’t find that one image they uploaded weeks ago!

Answered By TechSavvyGal On

If you're running a standalone editor, I wouldn't want to deal with leftover images cluttering a media library. It's super frustrating to find random images lying around, especially if your content doesn't often reuse images. It feels more appropriate for a full CMS that supports galleries. Personally, I think I'll opt for a more hidden approach with a feature to clean up orphaned images after a certain time.

Answered By AlertDeveloper On

Just a friendly tip: ensure your upload permissions are secure. One of my old jobs had major issues with uploads, and it resulted in credit card details being leaked. So double-check those settings!

Answered By SimplicitySeeker On

Keeping it simple is key. I vote for the hidden option at first. If you decide to add a media library later, you can always implement that. It's just less complicated this way.

Answered By DocumentDynamo On

For a document editor, I'd suggest allowing users to select from previously uploaded images, kind of like how WordPress does it. There are valid reasons to reuse images in various documents, but if your app is more of a news feed (like Facebook or Twitter), then keeping images hidden might work better.

Answered By LibraryLover On

I definitely support having a browsable media library. It makes things easier for users and aligns with what most editors are doing these days. Consider how tools like Notion and CMS handle images—they really enhance productivity.

Related Questions

LEAVE A REPLY

Please enter your comment!
Please enter your name here

This site uses Akismet to reduce spam. Learn how your comment data is processed.