Difference between revisions of "Tutorial: Styling the TinyMCE editor"

From Lorekeeper Wiki
Jump to navigation Jump to search
Tag: 2017 source edit
(First version of the tutorial completed)
Tag: 2017 source edit
Line 1: Line 1:
'''Currently a WIP'''
+
This step-by-step tutorial will guide the reader in styling their TinyMCE editor (the rich text WYSIWYG editor used in Lorekeeper) by applying a skin made with [http://skin.tiny.cloud/t5/ Tiny's skin tool].
  
This tutorial will guide the reader in styling their TinyMCE editor (the rich text WYSIWYG editor used in Lorekeeper) by applying a skin made with [http://skin.tiny.cloud/t5/ Tiny's skin editor tool].
+
This is more focused on the technical aspects of creating and using a skin and will not be covering the details of the skin editor itself or offering any design advice.
This is more focused on the technical aspects of using a completed skin and will not be covering the details of the skin editor itself.
 
  
[[File:Default TinyMCE Skin.png|alt=Image of the default skin as seen on Tiny's skin editor tool|thumb|Default skin seen on [http://skin.tiny.cloud/t5/ Tiny's skin editor tool]]]
+
'''NOTE:''' If you are using the Theme Manager extension, the TinyMCE skin will always be the same for everyone. There is probably a way to make the Theme Manager work with styling the editors as well, but that is not covered in this tutorial.
[[File:Tutorial TinyMCE Skin.png|alt=Image of a custom skin that will be used in this tutorial as seen on Tiny's skin editor tool|thumb|A custom skin that will be used in this tutorial as seen on [http://skin.tiny.cloud/t5/ Tiny's skin editor tool]]]
+
 
 +
Tutorial done by Draginraptor. Feel free to find me on the Lorekeeper discord if you need help.
 +
 
 +
<gallery widths="300px" heights="150px">
 +
File:Default TinyMCE Skin.png|alt=Image of the default skin on the TinyMCE Skin Tool|Default skin on the [http://skin.tiny.cloud/t5/ TinyMCE Skin Tool]
 +
File:Tutorial TinyMCE Skin.png|alt=Image of a custom skin for this tutorial on the TinyMCE Skin Tool|Image of a custom skin for this tutorial on the [http://skin.tiny.cloud/t5/ TinyMCE Skin Tool]
 +
</gallery>
 +
 
 +
== Using the TinyMCE Skin Tool ==
 +
For details on using the tool, check out [https://www.tiny.cloud/blog/create-skins-using-tinymce-skin-tool/ this] post on Tiny's blog.
 +
Once you're satisfied with the skin, hit the 'Get Skin' button on the upper right to download a zip containing a 'skins' folder, and a 'skintool.json' file.
 +
You may download and unzip this file wherever you see fit.
 +
The json file is not needed when using the skin, but is useful if you wish to edit your skin later, by uploading it to the Skin Tool with the 'Upload skintool.json' button in the upper right.
 +
 
 +
[[File:TinyMCE Skin Root.png|Root folder of the zip file|alt=Image of the root folder of the zip downloaded from the TinyMCE Skin Tool|thumb]]
 +
 
 +
== Using a skin ==
 +
=== Adding the skin ===
 +
In the 'skins' folder, there will be two folders, 'content' and 'ui', and within each will be another folder with the name of the skin as set in the tool. Within those folders, will be the CSS and other files used in styling the editor.
 +
 
 +
On Windows, you can simply copy the 'content' and 'ui' folders and paste them in public/js/skins, and the folders will automatically sort themselves out. I'm unsure if this works on other platforms, but if not, you can always copy the inner folders (the ones with name of the skin) into their respective 'content' and 'ui' folders for the same effect.
 +
 
 +
The example skin used in this tutorial is called 'BLUE' and you should have a folder structure similar to the one below when you are done adding the skin.
 +
<gallery widths="100px" heights="180px">
 +
File:Lorekeeper TinyMCE Skins Folder.png|alt=Image of the skins folder before adding a custom skin|Skins folder before adding a custom skin
 +
File:Lorekeeper TinyMCE Skins Folder w Custom.png|alt=Image of the skins folder after adding a custom skin|Skins folder after adding a custom skin, note the two new 'BLUE' folders
 +
</gallery>
 +
=== Applying the skin ===
 +
At this point, the TinyMCE editor will still have its default look. It still needs to be configured in the tinymce.init() call to use the custom skin.
 +
You'll have to add <code>'{{ asset('js/skins/content/{skin_name}/content.min.css') }}'</code> to 'content_css' and add an additional parameter: <code>skin: '{skin_name}'</code> to the tinymce.init() call.
 +
 
 +
If you're interested in using the pre-existing skins in Lorekeeper's folders, in general, you have to add the corresponding content.min.css to 'content_css', and specify the name of the skin you want to use (e.g. oxide, oxide-dark), which should also be the name of its folder.
 +
 
 +
Refer to the image below for how one of the tinymce.init() calls has been configured to use the newly added BLUE skin.
 +
<gallery widths="1000px" heights="330px">
 +
File:TinyMCE Init Config.png|alt=Image of an example configuring TinyMCE to use a custom skin|thumb|Note the commas indicated by the arrows, these may have to added accordingly to avoid syntax errors
 +
</gallery>
 +
You will want to add these changes to every tinymce.init() call in the project. As of 27 Jul 2021, there are tinymce.init() instances in the following files:
 +
* resources/views/layouts/app.blade.php
 +
* resources/views/js/_modal_wysiwyg.blade.php
 +
* resources/views/character/_image_js.blade.php (2 instances)
 +
Alternatively, you can use something like Visual Studio Code to search all the files for 'tinymce.init'.
 +
== See Also ==
 +
* [http://skin.tiny.cloud/t5/ TinyMCE Skin Tool] - the tool referenced in this tutorial
 +
* [https://www.tiny.cloud/blog/ Tiny's Blog] - many posts on customising the Tiny editor if you're keen on doing so
 +
* [https://www.tiny.cloud/docs/ TinyMCE Documentation] - more technical documents on the Tiny editor

Revision as of 10:14, 26 July 2021

This step-by-step tutorial will guide the reader in styling their TinyMCE editor (the rich text WYSIWYG editor used in Lorekeeper) by applying a skin made with Tiny's skin tool.

This is more focused on the technical aspects of creating and using a skin and will not be covering the details of the skin editor itself or offering any design advice.

NOTE: If you are using the Theme Manager extension, the TinyMCE skin will always be the same for everyone. There is probably a way to make the Theme Manager work with styling the editors as well, but that is not covered in this tutorial.

Tutorial done by Draginraptor. Feel free to find me on the Lorekeeper discord if you need help.

Using the TinyMCE Skin Tool

For details on using the tool, check out this post on Tiny's blog. Once you're satisfied with the skin, hit the 'Get Skin' button on the upper right to download a zip containing a 'skins' folder, and a 'skintool.json' file. You may download and unzip this file wherever you see fit. The json file is not needed when using the skin, but is useful if you wish to edit your skin later, by uploading it to the Skin Tool with the 'Upload skintool.json' button in the upper right.

Image of the root folder of the zip downloaded from the TinyMCE Skin Tool
Root folder of the zip file

Using a skin

Adding the skin

In the 'skins' folder, there will be two folders, 'content' and 'ui', and within each will be another folder with the name of the skin as set in the tool. Within those folders, will be the CSS and other files used in styling the editor.

On Windows, you can simply copy the 'content' and 'ui' folders and paste them in public/js/skins, and the folders will automatically sort themselves out. I'm unsure if this works on other platforms, but if not, you can always copy the inner folders (the ones with name of the skin) into their respective 'content' and 'ui' folders for the same effect.

The example skin used in this tutorial is called 'BLUE' and you should have a folder structure similar to the one below when you are done adding the skin.

Applying the skin

At this point, the TinyMCE editor will still have its default look. It still needs to be configured in the tinymce.init() call to use the custom skin. You'll have to add '{{ asset('js/skins/content/{skin_name}/content.min.css') }}' to 'content_css' and add an additional parameter: skin: '{skin_name}' to the tinymce.init() call.

If you're interested in using the pre-existing skins in Lorekeeper's folders, in general, you have to add the corresponding content.min.css to 'content_css', and specify the name of the skin you want to use (e.g. oxide, oxide-dark), which should also be the name of its folder.

Refer to the image below for how one of the tinymce.init() calls has been configured to use the newly added BLUE skin.

You will want to add these changes to every tinymce.init() call in the project. As of 27 Jul 2021, there are tinymce.init() instances in the following files:

  • resources/views/layouts/app.blade.php
  • resources/views/js/_modal_wysiwyg.blade.php
  • resources/views/character/_image_js.blade.php (2 instances)

Alternatively, you can use something like Visual Studio Code to search all the files for 'tinymce.init'.

See Also