14-day Cloud trial
Start today. For free.

One editor. 50+ features. Zero constraints. After your trial, retain the advanced features.

Try Professional Plan for FREE
PricingContact Us
Log InGet Started Free

How to implement a custom file browser with TinyMCE

June 23rd, 2022

3 min read

An abstract representation of custom file browsing with a file in a dialog, search bar, and button

Written by

Joe Robinson

Category

How-to Use TinyMCE

Imagine you’re seated at a desk. There are objects on the desk. But the one thing you need, isn’t there. What do you do to find it?

You look for it.. 

There’s a purpose to this overly simplistic explanation..

When a computer engineer writes a program, he breaks down tasks into simple actions. And while it feels laborious and tiresome, it’s what computers need.

So, taking the above example and thinking like a computer, if the file you need isn’t on the top of the desk (ie. the “desktop”), what do you do to find it?

You look in storage, or to use the accepted wording, you “browse”.

File browsers are easy to overlook.

Nevertheless, using a file browser, and configuring them for any software project that goes looking for items that aren’t obviously available, shouldn’t be laborious and tiresome. Especially if the intent is for users to browse files from a text editor.

Enter the TinyMCE rich text editor.

TinyMCE comes with this functionality built in, and this article explains how to set up a custom file browsing experience.

What is a file browser?

A file browser is an additional bit of software code that’s added to the upload file or upload image dialog window.

When you click on a button marked “browse”, the file browser functionality starts, and then opens a new dialog window where you can browse through the file directories, and select a specific file.

MS Windows has included a custom file browser for their operating system since the 1990s.

Custom file browser with TinyMCE prerequisites

For this guide, there are a few things you need to get started:

  1. An API key (which you can get for free)
  2. A demo index.html file to test out the custom file browser

It’s optional, but running the demon through localhost using a command with Python, or PHP mimics some of the production environment experience.

TinyMCE API key and a demo

  1. Head to the Get-TinyMCE page
  2. Sign up for an account
  3. Once logged in, scroll down to the heading named “TinyMCE Installation”.
  4. Copy the html content in the code snippet window
  5. Create an index.html file in your workstation in a new directory, and paste the code snippet into it
  6. Open the index.html file in your browser to see TinyMCE running

If you’re using Python or PHP, you can run the localhost command in the terminal, and then navigate to the localhost:port address to see TinyMCE running in your browser.

One reason to use an API key
Adding your API key to your app or project, removes these warning messages: This domain is not registered with Tiny Cloud.  Please see the quick start guide or create an account

Signing up for a FREE API key grants you free access to TinyMCE’s premium plugins for 14 days after you start using your API key.

Custom file browser configuration steps

TinyMCE has custom file browser functionality through one specific configuration option called file_picker_callback.

Note: This option replaced the older option called file_browser_callback.

Once you’ve configured the file picker, a custom file browser option becomes available when choosing and uploading an Image, Media, or a Link in TinyMCE.

Here’s how to set it up.

With TinyMCE running, make some modifications to it for a custom file browser:

  1. Add file_picker_callback to the tinymce.init script, along with some plugins:

  <script>
    tinymce.init({
      selector: 'textarea',
      plugins: 'advlist autolink lists link image mediaembed editimage charmap preview anchor pagebreak',
      toolbar_mode: 'floating',
      file_picker_callback: function (cb, value, meta) {
      
      },
    });
  </script>
  1. Configure the Document.createElement() web API to handle inputs (in this case, the files browsed, and files uploaded are the input):

file_picker_callback: function (cb, value, meta) {
        const input = document.createElement('input');
        input.setAttribute('type', 'file');
  1. Add event listeners to detect changes and loads to the input (the process of picking out and loading up files):

file_picker_callback: function (cb, value, meta) {
        const input = document.createElement('input');
        input.setAttribute('type', 'file');
        //event listeners
        input.addEventListener('change', (e) => {
         const file = e.target.files[0];

         const reader = new FileReader();
         reader.addEventListener('load', () => {
  1. Set up functionality to handle a blob of data within TinyMCE. This processes the data blog – an important step to help the browser figure out what to do with the file:

file_picker_callback: function (cb, value, meta) {
        const input = document.createElement('input');
        input.setAttribute('type', 'file');
        //event listeners
        input.addEventListener('change', (e) => {
         const file = e.target.files[0];

         const reader = new FileReader();
         reader.addEventListener('load', () => {
         //handle data processing with a blob
          const id = 'blobid' + (new Date()).getTime();
          const blobCache =  tinymce.activeEditor.editorUpload.blobCache;
          const base64 = reader.result.split(',')[1];
          const blobInfo = blobCache.create(id, file, base64);
          blobCache.add(blobInfo);
  1. Put in a callback to complete the file upload processing:

 //Add a callback and get the file name
          cb(blobInfo.blobUri(), { title: file.name });
             });
          reader.readAsDataURL(file);
           });
          input.click();
          },
  1. Save the changes, and then load the demo app in your browser. Test out the custom file browser by selecting and uploading an image file:

custom file browser working in TinyMCE

Next steps for custom file browsers

There are other details you can adjust to suit your custom file browser:

  • Include credentials
  • Activate or deactivate automatic image uploads
  • Reuse upload file names

Discover more about these further customizations in the TinyMCE documentation on image and file handling options.

These customizations can have an effect on the Enhanced Image Editing plugin, which is one of TinyMCE’s premium plugins.

If you need some direct support for these configuration steps, contact us for more information.

JavascriptAPITinyMCEEngineering
byJoe Robinson

Technical and creative writer, editor, and a TinyMCE advocate. An enthusiast for teamwork, open source software projects, and baking. Can often be found puzzling over obscure history, cryptic words, and lucid writing.

Related Articles

  • How-to Use TinyMCEMar 28th, 2024

    How to view and restore document version history in TinyMCE

Join 100,000+ developers who get regular tips & updates from the Tiny team.

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Tiny logo

Stay Connected

SOC2 compliance badge

Products

TinyMCEDriveMoxieManager
© Copyright 2024 Tiny Technologies Inc.

TinyMCE® and Tiny® are registered trademarks of Tiny Technologies, Inc.