Irked that the React Material Admin[1] project doesn't link to the github source.. but the flathub page that kind of hides it. Also, material-ui[2] in and of itself is probably the single best component library for any web platform.
[1] https://github.com/flatlogic/react-material-admin
[2] https://material-ui.com/
Don't use the className like this... use a ref, it's what they're there for. Or you can at least use the event's target attribute...
playAudio(e) {
e.target.parentNode.getElementsByTagName("audio")[0].play()
}
I'm not sure I agree in the least with using a GIF image for this in React. There are a *LOT* of spinner components in npm that will use SVG (smaller than animated GIF) with enough CSS for the animation itself. The overall effect will usually be smoother, and every remotely modern browser (even IE 10) supports this without issue.
https://caniuse.com/#feat=css-animation
Are you adding a URL or just Text? If you just add a URL, is that URL banned? Then it's probably not allowing it in the text either. Without more information it would be hard to tell.
A significant portion of news submissions are spammy in nature. Some is borderline, much is outright spam. I've cleared out as many as 10 posts in a day. I think Fabien catches just as much of it.
If you put the information you were trying to post in a comment on this thread, or reach out via twitter as much, it might be easier to give a better response.
Poor quality posts that are selling/promoting consulting services and/or unrelated to JS are deleted as soon as spotted. Also, there is no gain in terms of SEO as links have a nofollow set. Most people in this community don't like, appreciate or want such posts and actively vote them down.
Don't use the className like this... use a ref, it's what they're there for. Or you can at least use the event's target attribute... playAudio(e) { e.target.parentNode.getElementsByTagName("audio")[0].play() }