Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'static/admin/shortcode/expand.js')
-rw-r--r--static/admin/shortcode/expand.js33
1 files changed, 33 insertions, 0 deletions
diff --git a/static/admin/shortcode/expand.js b/static/admin/shortcode/expand.js
new file mode 100644
index 0000000..e665254
--- /dev/null
+++ b/static/admin/shortcode/expand.js
@@ -0,0 +1,33 @@
+CMS.registerEditorComponent({
+ // Internal id of the component
+ id: "expand",
+ // Visible label
+ label: "Expand",
+ // Fields the user need to fill out when adding an instance of the component
+ fields: [
+ { label: 'Label', name: 'label', default:'Expand me !', widget: 'string' },
+ { label: 'Text to expand', name: 'text', widget: 'markdown' }
+ ],
+ // Pattern to identify a block as being an instance of this component
+ pattern: /^{{% expand "(\w+)" %}}(.*?){{% \/expand %}}/s,
+
+
+ // Function to extract data elements from the regexp match
+ fromBlock: function(match) {
+ return {
+ label: match[1],
+ text: match[2]
+ };
+ },
+ // Function to create a text block from an instance of this component
+ toBlock: function(obj) {
+ return '{{% expand "'+obj.label+'" %}}'+obj.text+'{{% /expand %}}';
+ },
+ // Preview output for this component. Can either be a string or a React component
+ // (component gives better render performance)
+ toPreview: function(obj) {
+ return (
+ '<strong> expand : '+obj.label+' -- '+obj.text+'</strong>'
+ );
+ }
+}); \ No newline at end of file