All original content is created in Ukrainian. Not all content has been translated yet. Some posts may only be available in Ukrainian.Learn more

How to disable File Upload in Trix editor?

This content has been automatically translated from Ukrainian.
Trix - Rich Text Editor is created by the Basecamp team (developers of Ruby on Rails). Not a bad editor if you don't have to do any specific things. There is currently no good API for configuring options.
Many discussions on GitHub only say that Trix must be customized +/- independently using manipulations in JS and CSS code.
To disable the function of downloading files in the editor, they offer:
1. With JS, ignore trix-file-accept
document.addEventListener("trix-file-accept", function(event) {
  event.preventDefault();
});
2. Using CSS to hide the button:
.trix-button-group.trix-button-group--file-tools {
    display: none;
}
Or do everything in JS (ignore trix-file-accept and delete button)
(function() {
  addEventListener("trix-initialize", function(e) {
    const file_tools = document.querySelector(".trix-button-group--file-tools");
    file_tools.remove();
  })
  addEventListener("trix-file-accept", function(e) {
    e.preventDefault();
  })
})();
In general, the concept is clear. You have to do everything yourself. Don't forget to encapsulate the code. Because this code will work for all instances of the Trix editor on the page

This post doesn't have any additions from the author yet.

03 May 17:46

What if macOS doesn't have a webcam?

meme code
meme code@memecode
03 May 18:48

Як отримати випадкове логічне значення true чи false у Ruby?

meme code
meme code@memecode
10 May 17:40

Як використовувати кольори шістнадцяткового коду CSS з альфа значенням?

meme code
meme code@memecode
16 May 20:02

What is Origin in Git?

meme code
meme code@memecode
16 May 22:17

Як видалити проміжок між inline та inline-block елементами?

meme code
meme code@memecode
17 May 18:52

Що таке loop у Javascript? Як працють цикли for та while у Javascript?

meme code
meme code@memecode
22 May 16:26

В чому різниця <%, <%=, <%# та -%> у ERB шаблонах (Ruby on Rails)?

meme code
meme code@memecode
23 May 06:57

What is debugging?

meme code
meme code@memecode