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/button.js')
-rw-r--r--static/admin/shortcode/button.js45
1 files changed, 45 insertions, 0 deletions
diff --git a/static/admin/shortcode/button.js b/static/admin/shortcode/button.js
new file mode 100644
index 0000000..458df1b
--- /dev/null
+++ b/static/admin/shortcode/button.js
@@ -0,0 +1,45 @@
+CMS.registerEditorComponent({
+ // Internal id of the component
+ id: "button",
+ // Visible label
+ label: "Button",
+ // Fields the user need to fill out when adding an instance of the component
+ fields: [
+ {
+ label: 'Theme',
+ name: 'theme',
+ widget: 'select',
+ default:'info',
+ options: [
+ { label: "info", value: "info" },
+ { label: "success ", value: "success" },
+ { label: "warning", value: "warning" },
+ { label: "danger", value: "danger" }
+ ]
+ },
+ { label: 'Link', name: 'href', widget: 'string' },
+ { label: 'Text to display', name: 'label', widget: 'string' }
+ ],
+ // Pattern to identify a block as being an instance of this component
+ pattern: /^{{\< button href="(.*?)" theme="(\w+)" \>}}(.*?){{\< \/button \>}}/s,
+
+ // Function to extract data elements from the regexp match
+ fromBlock: function(match) {
+ return {
+ href: match[1],
+ theme: match[2],
+ label: match[3]
+ };
+ },
+ // Function to create a text block from an instance of this component
+ toBlock: function(obj) {
+ return '{{< button href="'+obj.href+'" theme="'+obj.theme+'" >}}'+obj.label+'{{< /button >}}'
+ },
+ // Preview output for this component. Can either be a string or a React component
+ // (component gives better render performance)
+ toPreview: function(obj) {
+ return (
+ '<strong> button['+obj.label+'] --> '+obj.href+'</strong><br/>'
+ );
+ }
+}); \ No newline at end of file