It might not help because it's in svelte and it doesn't look like you're using lemmy-js-client
, but this is an example of how I do it in Alexandrite using lemmy-js-client
. The onPaste
function handles the paste
event on the markdown editor textarea when someone pastes with an image in their clipboard, and the onFileInputChange
is the change
event for an <input type="file" />
element so when someone selects a file it uploads and the input's label can be styled like a button. Here is the client's fetch function which handles the authorization header and whatnot. You can upload client-side without a proxy server for any instance running a newer version of Lemmy than like.... 0.19.0? I didn't want to be responsible for proxying image uploads so I waited to add image uploading in Alexandrite until I could do the uploads directly client side.
This was the most glaring missing basic feature for so long, glad it's finally in, I don't have to go back to the default ui just to write my announcement posts anymore. It wasn't possible to upload images from third party websites last time I was actively working on Alexandrite, and I think it's been possible for quite a long time by now and I'm finally getting to it.
I was feeling pretty bad about leaving it untouched for so long, but working on (any of) my side projects wasn't interesting me for a while. However with all the general social media turmoil out there (Meta trying to be more evil, US banning TikTok, and billionaires in general being just the worst) I figured I should do my part to improve the appeal of the fediverse. Seeing lots of things I want to improve, and I'm remembering how much I like making things look nice.
It was pretty easy to be honest nothing really that fancy because it's just sorting things I've already loaded into buckets and summing it up. Heard from a moderator that they disliked the removal of 'karma' from the API a while ago for identifying trolls (which Alexandrite used to show even though the default ui didn't) and I thought something like this would be a good middle ground.