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

alert.js « shortcode « admin « static - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2c3a471f4b5d3843ebdfb4bdaba0f7e914a03157 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
CMS.registerEditorComponent({
  // Internal id of the component
  id: "alert",
  // Visible label
  label: "Alert",
  hint:"",
  // Fields the user need to fill out when adding an instance of the component
  fields: [
  		{
  		name: 'theme', 
  		label: 'Theme', 
  		widget: 'select',
      default:'info', 
  		options: [
  			{ label: "info", value: "info" },
  			{ label: "success ", value: "success" }, 
  			{ label: "warning", value: "warning" }, 
  			{ label: "danger", value: "danger" }
  			]
  		},
  		{ label: 'Text', name: 'text', widget: 'markdown' }
  	],
  // Pattern to identify a block as being an instance of this component
  pattern: /{{% alert theme="(\w+)" %}}(.*?){{% \/alert %}}/s,

  // Function to extract data elements from the regexp match
  fromBlock: function(match) {
    return {
      theme: match[1],
      text: match[2]
    };
  },
  // Function to create a text block from an instance of this component
  toBlock: function(obj) {
    return '{{% alert theme="'+obj.theme+'" %}}'+obj.text+'{{% /alert %}}';
  },
  // Preview output for this component. Can either be a string or a React component
  // (component gives better render performance)
  toPreview: function(obj) {
    return (
      '<strong> alert '+obj.theme+' -- '+obj.text+'</strong>'
    );
  }
});