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

panel.js « shortcode « admin « static - github.com/vjeantet/hugo-theme-docport.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: cf63dbea34992e6f61a117036ba633c8bf560640 (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
45
46
47
48
49
CMS.registerEditorComponent({
  // Internal id of the component
  id: "panel",
  // Visible label
  label: "Panel",
  // 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: 'Header', name: 'header', default:'', widget: 'string' },
  		{ label: 'Footer', name: 'footer', default:'', 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,
  pattern: /^{{% panel theme="(\w+)" header="(\w+)" footer="(\w+)" %}}(.*?){{% \/panel %}}/s,


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