amis-editor 4.1.0-beta.1 → 4.1.0-beta.19
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/component/Breadcrumb.d.ts +23 -2
 - package/dist/component/Editor.d.ts +19 -0
 - package/dist/component/Panel/RenderersPanel.d.ts +1 -2
 - package/dist/component/RegionWrapper.d.ts +14 -7
 - package/dist/component/RendererThumb.d.ts +5 -5
 - package/dist/component/VRenderer.d.ts +4 -0
 - package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
 - package/dist/component/base/SearchPanel.d.ts +83 -0
 - package/dist/component/base/SearchRendererPanel.d.ts +2 -42
 - package/dist/exports.min.js +1 -1
 - package/dist/index.d.ts +4 -1
 - package/dist/index.min.js +1 -1
 - package/dist/manager.d.ts +14 -3
 - package/dist/plugin/Card.d.ts +1 -0
 - package/dist/plugin/Cards.d.ts +1 -0
 - package/dist/plugin/Carousel.d.ts +1 -0
 - package/dist/plugin/Chart.d.ts +1 -0
 - package/dist/plugin/Collapse.d.ts +1 -0
 - package/dist/plugin/Custom.d.ts +3 -0
 - package/dist/plugin/CustomRegion.d.ts +43 -0
 - package/dist/plugin/Flex.d.ts +1 -0
 - package/dist/plugin/Form/Control.d.ts +1 -0
 - package/dist/plugin/Form/InputURL.d.ts +1 -0
 - package/dist/plugin/Grid.d.ts +1 -0
 - package/dist/plugin/HBox.d.ts +1 -0
 - package/dist/plugin/Json.d.ts +1 -0
 - package/dist/plugin/List.d.ts +1 -0
 - package/dist/plugin/Mapping.d.ts +1 -0
 - package/dist/plugin/Markdown.d.ts +1 -0
 - package/dist/plugin/Nav.d.ts +1 -0
 - package/dist/plugin/Panel/Outline.d.ts +8 -0
 - package/dist/plugin/Progress.d.ts +1 -0
 - package/dist/plugin/QRCode.d.ts +1 -0
 - package/dist/plugin/Reset.d.ts +0 -1
 - package/dist/plugin/Service.d.ts +1 -0
 - package/dist/plugin/Sparkline.d.ts +1 -0
 - package/dist/plugin/Status.d.ts +1 -0
 - package/dist/plugin/Steps.d.ts +1 -0
 - package/dist/plugin/Submit.d.ts +0 -1
 - package/dist/plugin/TableView.d.ts +1 -0
 - package/dist/plugin/Tasks.d.ts +1 -0
 - package/dist/plugin/TooltipWrapper.d.ts +1 -0
 - package/dist/plugin/Video.d.ts +1 -0
 - package/dist/plugin/WebComponent.d.ts +1 -0
 - package/dist/plugin/Wrapper.d.ts +1 -0
 - package/dist/plugin.d.ts +2 -2
 - package/dist/store/editor.d.ts +20 -2
 - package/dist/store/node.d.ts +6 -0
 - package/dist/style.css +1 -1
 - package/dist/util.d.ts +7 -2
 - package/package.json +6 -3
 - package/src/component/schemaTpl.tsx +2155 -0
 - package/src/plugin/.DS_Store +0 -0
 - package/src/plugin/Alert.tsx +87 -0
 - package/src/plugin/AnchorNav.tsx +233 -0
 - package/src/plugin/Audio.tsx +161 -0
 - package/src/plugin/Avatar.tsx +77 -0
 - package/src/plugin/Breadcrumb.tsx +107 -0
 - package/src/plugin/Button.tsx +283 -0
 - package/src/plugin/ButtonGroup.tsx +88 -0
 - package/src/plugin/ButtonToolbar.tsx +89 -0
 - package/src/plugin/CRUD.tsx +1832 -0
 - package/src/plugin/Card.tsx +290 -0
 - package/src/plugin/Cards.tsx +315 -0
 - package/src/plugin/Carousel.tsx +386 -0
 - package/src/plugin/Chart.tsx +218 -0
 - package/src/plugin/CodeView.tsx +60 -0
 - package/src/plugin/Collapse.tsx +143 -0
 - package/src/plugin/CollapseGroup.tsx +167 -0
 - package/src/plugin/Container.tsx +44 -0
 - package/src/plugin/Custom.tsx +128 -0
 - package/src/plugin/CustomRegion.tsx +150 -0
 - package/src/plugin/Date.tsx +81 -0
 - package/src/plugin/Datetime.tsx +75 -0
 - package/src/plugin/Dialog.tsx +178 -0
 - package/src/plugin/Divider.tsx +36 -0
 - package/src/plugin/Drawer.tsx +217 -0
 - package/src/plugin/DropDownButton.tsx +234 -0
 - package/src/plugin/Each.tsx +152 -0
 - package/src/plugin/ErrorRenderer.tsx +15 -0
 - package/src/plugin/Flex.tsx +156 -0
 - package/src/plugin/Form/ButtonGroupSelect.tsx +86 -0
 - package/src/plugin/Form/ButtonToolbar.tsx +121 -0
 - package/src/plugin/Form/ChainedSelect.tsx +70 -0
 - package/src/plugin/Form/Checkbox.tsx +87 -0
 - package/src/plugin/Form/Checkboxes.tsx +167 -0
 - package/src/plugin/Form/CodeEditor.tsx +91 -0
 - package/src/plugin/Form/Combo.tsx +582 -0
 - package/src/plugin/Form/ConditionBuilder.tsx +324 -0
 - package/src/plugin/Form/Control.tsx +139 -0
 - package/src/plugin/Form/DiffEditor.tsx +117 -0
 - package/src/plugin/Form/FieldSet.tsx +175 -0
 - package/src/plugin/Form/Form.tsx +692 -0
 - package/src/plugin/Form/Formula.tsx +91 -0
 - package/src/plugin/Form/Group.tsx +300 -0
 - package/src/plugin/Form/Hidden.tsx +56 -0
 - package/src/plugin/Form/InputArray.tsx +228 -0
 - package/src/plugin/Form/InputCity.tsx +93 -0
 - package/src/plugin/Form/InputColor.tsx +123 -0
 - package/src/plugin/Form/InputDate.tsx +175 -0
 - package/src/plugin/Form/InputDateRange.tsx +225 -0
 - package/src/plugin/Form/InputDateTime.tsx +183 -0
 - package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
 - package/src/plugin/Form/InputEmail.tsx +33 -0
 - package/src/plugin/Form/InputExcel.tsx +85 -0
 - package/src/plugin/Form/InputFile.tsx +228 -0
 - package/src/plugin/Form/InputGroup.tsx +105 -0
 - package/src/plugin/Form/InputImage.tsx +277 -0
 - package/src/plugin/Form/InputKV.tsx +72 -0
 - package/src/plugin/Form/InputMonth.tsx +35 -0
 - package/src/plugin/Form/InputMonthRange.tsx +195 -0
 - package/src/plugin/Form/InputNumber.tsx +97 -0
 - package/src/plugin/Form/InputPassword.tsx +33 -0
 - package/src/plugin/Form/InputQuarter.tsx +35 -0
 - package/src/plugin/Form/InputQuarterRange.tsx +195 -0
 - package/src/plugin/Form/InputRange.tsx +121 -0
 - package/src/plugin/Form/InputRating.tsx +78 -0
 - package/src/plugin/Form/InputRepeat.tsx +69 -0
 - package/src/plugin/Form/InputRichText.tsx +197 -0
 - package/src/plugin/Form/InputSubForm.tsx +198 -0
 - package/src/plugin/Form/InputTable.tsx +434 -0
 - package/src/plugin/Form/InputTag.tsx +81 -0
 - package/src/plugin/Form/InputText.tsx +186 -0
 - package/src/plugin/Form/InputTime.tsx +95 -0
 - package/src/plugin/Form/InputTree.tsx +240 -0
 - package/src/plugin/Form/InputURL.tsx +34 -0
 - package/src/plugin/Form/InputYear.tsx +35 -0
 - package/src/plugin/Form/Item.tsx +325 -0
 - package/src/plugin/Form/ListSelect.tsx +84 -0
 - package/src/plugin/Form/LocationPicker.tsx +75 -0
 - package/src/plugin/Form/MatrixCheckboxes.tsx +147 -0
 - package/src/plugin/Form/NestedSelect.tsx +222 -0
 - package/src/plugin/Form/Picker.tsx +217 -0
 - package/src/plugin/Form/Radios.tsx +130 -0
 - package/src/plugin/Form/Select.tsx +216 -0
 - package/src/plugin/Form/Static.tsx +335 -0
 - package/src/plugin/Form/Switch.tsx +116 -0
 - package/src/plugin/Form/TabsTransfer.tsx +270 -0
 - package/src/plugin/Form/Textarea.tsx +94 -0
 - package/src/plugin/Form/Transfer.tsx +379 -0
 - package/src/plugin/Form/TreeSelect.tsx +263 -0
 - package/src/plugin/Form/UUID.tsx +48 -0
 - package/src/plugin/Grid.tsx +799 -0
 - package/src/plugin/HBox.tsx +727 -0
 - package/src/plugin/IFrame.tsx +72 -0
 - package/src/plugin/Image.tsx +318 -0
 - package/src/plugin/Images.tsx +238 -0
 - package/src/plugin/Json.tsx +76 -0
 - package/src/plugin/Link.tsx +95 -0
 - package/src/plugin/List.tsx +278 -0
 - package/src/plugin/ListItem.tsx +233 -0
 - package/src/plugin/Log.tsx +52 -0
 - package/src/plugin/Mapping.tsx +156 -0
 - package/src/plugin/Markdown.tsx +47 -0
 - package/src/plugin/Nav.tsx +186 -0
 - package/src/plugin/Operation.tsx +97 -0
 - package/src/plugin/Others/Action.tsx +428 -0
 - package/src/plugin/Others/BasicToolbar.tsx +591 -0
 - package/src/plugin/Others/DataDebug.tsx +134 -0
 - package/src/plugin/Others/TableCell.tsx +480 -0
 - package/src/plugin/Others/Unknown.tsx +37 -0
 - package/src/plugin/Page.tsx +308 -0
 - package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
 - package/src/plugin/Panel/Code.tsx +44 -0
 - package/src/plugin/Panel/Name.tsx +26 -0
 - package/src/plugin/Panel/Outline.tsx +40 -0
 - package/src/plugin/Panel.tsx +243 -0
 - package/src/plugin/Plain.tsx +91 -0
 - package/src/plugin/Progress.tsx +132 -0
 - package/src/plugin/Property.tsx +139 -0
 - package/src/plugin/QRCode.tsx +98 -0
 - package/src/plugin/Reset.tsx +23 -0
 - package/src/plugin/Service.tsx +167 -0
 - package/src/plugin/Sparkline.tsx +40 -0
 - package/src/plugin/Status.tsx +78 -0
 - package/src/plugin/Steps.tsx +140 -0
 - package/src/plugin/Submit.tsx +23 -0
 - package/src/plugin/Table.tsx +440 -0
 - package/src/plugin/TableView.tsx +711 -0
 - package/src/plugin/Tabs.tsx +364 -0
 - package/src/plugin/Tasks.tsx +276 -0
 - package/src/plugin/Time.tsx +75 -0
 - package/src/plugin/TooltipWrapper.tsx +193 -0
 - package/src/plugin/Tpl.tsx +162 -0
 - package/src/plugin/Video.tsx +160 -0
 - package/src/plugin/WebComponent.tsx +56 -0
 - package/src/plugin/Wizard.tsx +743 -0
 - package/src/plugin/Wrapper.tsx +107 -0
 - package/src/plugin.ts +1046 -0
 - package/dist/150a58f3318ca7541ed9.png +0 -0
 - package/dist/471adb97c322b226e589.png +0 -0
 - package/dist/4de5f42360bc5946c3c2.png +0 -0
 - package/dist/4e9968bba3855f088fed.png +0 -0
 - package/dist/7f09c38ebc687fea847a.png +0 -0
 - package/dist/c94073576487510314ea.png +0 -0
 
| 
         @@ -0,0 +1,308 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {Button, SchemaObject} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {RendererConfig} from 'amis/lib/factory';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {ContainerWrapper} from '../component/ContainerWrapper';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {registerEditorPlugin} from '../manager';
         
     | 
| 
      
 6 
     | 
    
         
            +
            import {BasePlugin} from '../plugin';
         
     | 
| 
      
 7 
     | 
    
         
            +
            import {getSchemaTpl} from '../component/schemaTpl';
         
     | 
| 
      
 8 
     | 
    
         
            +
             
     | 
| 
      
 9 
     | 
    
         
            +
            export class PagePlugin extends BasePlugin {
         
     | 
| 
      
 10 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 11 
     | 
    
         
            +
              rendererName = 'page';
         
     | 
| 
      
 12 
     | 
    
         
            +
              $schema = '/schemas/PageSchema.json';
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 15 
     | 
    
         
            +
              name = '页面';
         
     | 
| 
      
 16 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 注释掉是为了不让它在出现在组件列表中,因为只有顶级才会用到这个。
         
     | 
| 
      
 18 
     | 
    
         
            +
              // description =
         
     | 
| 
      
 19 
     | 
    
         
            +
              //   '页面渲染器,页面的顶级入口。包含多个区域,您可以选择在不同的区域里面放置不同的渲染器。';
         
     | 
| 
      
 20 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/page';
         
     | 
| 
      
 21 
     | 
    
         
            +
              tags = '容器';
         
     | 
| 
      
 22 
     | 
    
         
            +
              icon = 'fa fa-desktop';
         
     | 
| 
      
 23 
     | 
    
         
            +
              scaffold: SchemaObject = {
         
     | 
| 
      
 24 
     | 
    
         
            +
                type: 'page',
         
     | 
| 
      
 25 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 26 
     | 
    
         
            +
                  {
         
     | 
| 
      
 27 
     | 
    
         
            +
                    type: 'tpl',
         
     | 
| 
      
 28 
     | 
    
         
            +
                    tpl: '内容'
         
     | 
| 
      
 29 
     | 
    
         
            +
                  }
         
     | 
| 
      
 30 
     | 
    
         
            +
                ]
         
     | 
| 
      
 31 
     | 
    
         
            +
              };
         
     | 
| 
      
 32 
     | 
    
         
            +
              previewSchema: SchemaObject = {
         
     | 
| 
      
 33 
     | 
    
         
            +
                type: 'page',
         
     | 
| 
      
 34 
     | 
    
         
            +
                className: 'text-left b-a',
         
     | 
| 
      
 35 
     | 
    
         
            +
                asideClassName: 'w-xs',
         
     | 
| 
      
 36 
     | 
    
         
            +
                title: '标题',
         
     | 
| 
      
 37 
     | 
    
         
            +
                subTitle: '副标题',
         
     | 
| 
      
 38 
     | 
    
         
            +
                aside: '边栏',
         
     | 
| 
      
 39 
     | 
    
         
            +
                body: '内容'
         
     | 
| 
      
 40 
     | 
    
         
            +
              };
         
     | 
| 
      
 41 
     | 
    
         
            +
             
     | 
| 
      
 42 
     | 
    
         
            +
              // 普通容器类渲染器配置
         
     | 
| 
      
 43 
     | 
    
         
            +
              regions = [
         
     | 
| 
      
 44 
     | 
    
         
            +
                {key: 'toolbar', label: '工具栏', preferTag: '工具栏内容'},
         
     | 
| 
      
 45 
     | 
    
         
            +
                {key: 'aside', label: '边栏', placeholder: '边栏内容'},
         
     | 
| 
      
 46 
     | 
    
         
            +
                {key: 'body', label: '内容区', placeholder: '页面内容'}
         
     | 
| 
      
 47 
     | 
    
         
            +
              ];
         
     | 
| 
      
 48 
     | 
    
         
            +
              wrapper = ContainerWrapper;
         
     | 
| 
      
 49 
     | 
    
         
            +
             
     | 
| 
      
 50 
     | 
    
         
            +
              panelTitle = '页面';
         
     | 
| 
      
 51 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 52 
     | 
    
         
            +
                getSchemaTpl('tabs', [
         
     | 
| 
      
 53 
     | 
    
         
            +
                  {
         
     | 
| 
      
 54 
     | 
    
         
            +
                    title: '常规',
         
     | 
| 
      
 55 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 56 
     | 
    
         
            +
                      {
         
     | 
| 
      
 57 
     | 
    
         
            +
                        type: 'checkboxes',
         
     | 
| 
      
 58 
     | 
    
         
            +
                        name: 'regions',
         
     | 
| 
      
 59 
     | 
    
         
            +
                        label: '区域展示',
         
     | 
| 
      
 60 
     | 
    
         
            +
                        pipeIn: (value: any) =>
         
     | 
| 
      
 61 
     | 
    
         
            +
                          Array.isArray(value)
         
     | 
| 
      
 62 
     | 
    
         
            +
                            ? value
         
     | 
| 
      
 63 
     | 
    
         
            +
                            : ['auto', 'body', 'toolbar', 'aside', 'header'],
         
     | 
| 
      
 64 
     | 
    
         
            +
                        pipeOut: (value: any) => {
         
     | 
| 
      
 65 
     | 
    
         
            +
                          return Array.isArray(value) && ~value.indexOf('auto')
         
     | 
| 
      
 66 
     | 
    
         
            +
                            ? undefined
         
     | 
| 
      
 67 
     | 
    
         
            +
                            : value.length
         
     | 
| 
      
 68 
     | 
    
         
            +
                            ? value
         
     | 
| 
      
 69 
     | 
    
         
            +
                            : ['auto', 'body', 'toolbar', 'aside', 'header'];
         
     | 
| 
      
 70 
     | 
    
         
            +
                        },
         
     | 
| 
      
 71 
     | 
    
         
            +
                        joinValues: false,
         
     | 
| 
      
 72 
     | 
    
         
            +
                        extractValue: true,
         
     | 
| 
      
 73 
     | 
    
         
            +
                        inline: false,
         
     | 
| 
      
 74 
     | 
    
         
            +
                        options: [
         
     | 
| 
      
 75 
     | 
    
         
            +
                          {
         
     | 
| 
      
 76 
     | 
    
         
            +
                            label: '自动',
         
     | 
| 
      
 77 
     | 
    
         
            +
                            value: 'auto'
         
     | 
| 
      
 78 
     | 
    
         
            +
                          },
         
     | 
| 
      
 79 
     | 
    
         
            +
                          {
         
     | 
| 
      
 80 
     | 
    
         
            +
                            label: '内容区',
         
     | 
| 
      
 81 
     | 
    
         
            +
                            value: 'body',
         
     | 
| 
      
 82 
     | 
    
         
            +
                            disabledOn:
         
     | 
| 
      
 83 
     | 
    
         
            +
                              '!Array.isArray(this.regions) || ~this.regions.indexOf("auto")'
         
     | 
| 
      
 84 
     | 
    
         
            +
                          },
         
     | 
| 
      
 85 
     | 
    
         
            +
                          {
         
     | 
| 
      
 86 
     | 
    
         
            +
                            label: '边栏',
         
     | 
| 
      
 87 
     | 
    
         
            +
                            value: 'aside',
         
     | 
| 
      
 88 
     | 
    
         
            +
                            disabledOn:
         
     | 
| 
      
 89 
     | 
    
         
            +
                              '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
         
     | 
| 
      
 90 
     | 
    
         
            +
                          },
         
     | 
| 
      
 91 
     | 
    
         
            +
                          {
         
     | 
| 
      
 92 
     | 
    
         
            +
                            label: '工具栏',
         
     | 
| 
      
 93 
     | 
    
         
            +
                            value: 'toolbar',
         
     | 
| 
      
 94 
     | 
    
         
            +
                            disabledOn:
         
     | 
| 
      
 95 
     | 
    
         
            +
                              '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
         
     | 
| 
      
 96 
     | 
    
         
            +
                          },
         
     | 
| 
      
 97 
     | 
    
         
            +
                          {
         
     | 
| 
      
 98 
     | 
    
         
            +
                            label: '顶部',
         
     | 
| 
      
 99 
     | 
    
         
            +
                            value: 'header',
         
     | 
| 
      
 100 
     | 
    
         
            +
                            disabledOn:
         
     | 
| 
      
 101 
     | 
    
         
            +
                              '!Array.isArray(this.regions) ||~this.regions.indexOf("auto")'
         
     | 
| 
      
 102 
     | 
    
         
            +
                          }
         
     | 
| 
      
 103 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 104 
     | 
    
         
            +
                      },
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
                      {
         
     | 
| 
      
 107 
     | 
    
         
            +
                        label: '标题',
         
     | 
| 
      
 108 
     | 
    
         
            +
                        name: 'title',
         
     | 
| 
      
 109 
     | 
    
         
            +
                        type: 'input-text'
         
     | 
| 
      
 110 
     | 
    
         
            +
                      },
         
     | 
| 
      
 111 
     | 
    
         
            +
             
     | 
| 
      
 112 
     | 
    
         
            +
                      {
         
     | 
| 
      
 113 
     | 
    
         
            +
                        label: '副标题',
         
     | 
| 
      
 114 
     | 
    
         
            +
                        name: 'subTitle',
         
     | 
| 
      
 115 
     | 
    
         
            +
                        type: 'input-text'
         
     | 
| 
      
 116 
     | 
    
         
            +
                      },
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
      
 118 
     | 
    
         
            +
                      {
         
     | 
| 
      
 119 
     | 
    
         
            +
                        label: '提示',
         
     | 
| 
      
 120 
     | 
    
         
            +
                        name: 'remark',
         
     | 
| 
      
 121 
     | 
    
         
            +
                        type: 'textarea',
         
     | 
| 
      
 122 
     | 
    
         
            +
                        visibleOn: 'this.title',
         
     | 
| 
      
 123 
     | 
    
         
            +
                        description: '标题附近会出现一个提示图标,鼠标放上去会提示该内容。'
         
     | 
| 
      
 124 
     | 
    
         
            +
                      },
         
     | 
| 
      
 125 
     | 
    
         
            +
                      getSchemaTpl('data')
         
     | 
| 
      
 126 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 127 
     | 
    
         
            +
                  },
         
     | 
| 
      
 128 
     | 
    
         
            +
             
     | 
| 
      
 129 
     | 
    
         
            +
                  {
         
     | 
| 
      
 130 
     | 
    
         
            +
                    title: '接口',
         
     | 
| 
      
 131 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 132 
     | 
    
         
            +
                      getSchemaTpl('api', {
         
     | 
| 
      
 133 
     | 
    
         
            +
                        label: '数据初始化接口',
         
     | 
| 
      
 134 
     | 
    
         
            +
                        name: 'initApi',
         
     | 
| 
      
 135 
     | 
    
         
            +
                        sampleBuilder: (schema: any) => `{
         
     | 
| 
      
 136 
     | 
    
         
            +
              "status": 0,
         
     | 
| 
      
 137 
     | 
    
         
            +
              "msg": "",
         
     | 
| 
      
 138 
     | 
    
         
            +
             
     | 
| 
      
 139 
     | 
    
         
            +
              data: {
         
     | 
| 
      
 140 
     | 
    
         
            +
                // 示例数据
         
     | 
| 
      
 141 
     | 
    
         
            +
                "id": 1,
         
     | 
| 
      
 142 
     | 
    
         
            +
                "a": "sample"
         
     | 
| 
      
 143 
     | 
    
         
            +
              }
         
     | 
| 
      
 144 
     | 
    
         
            +
            }`
         
     | 
| 
      
 145 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 146 
     | 
    
         
            +
             
     | 
| 
      
 147 
     | 
    
         
            +
                      getSchemaTpl('initFetch'),
         
     | 
| 
      
 148 
     | 
    
         
            +
             
     | 
| 
      
 149 
     | 
    
         
            +
                      {
         
     | 
| 
      
 150 
     | 
    
         
            +
                        label: '开启定时刷新',
         
     | 
| 
      
 151 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 152 
     | 
    
         
            +
                        name: 'interval',
         
     | 
| 
      
 153 
     | 
    
         
            +
                        visibleOn: 'data.initApi',
         
     | 
| 
      
 154 
     | 
    
         
            +
                        pipeIn: (value: any) => !!value,
         
     | 
| 
      
 155 
     | 
    
         
            +
                        pipeOut: (value: any) => (value ? 3000 : undefined),
         
     | 
| 
      
 156 
     | 
    
         
            +
                        mode: 'inline'
         
     | 
| 
      
 157 
     | 
    
         
            +
                      },
         
     | 
| 
      
 158 
     | 
    
         
            +
             
     | 
| 
      
 159 
     | 
    
         
            +
                      {
         
     | 
| 
      
 160 
     | 
    
         
            +
                        name: 'interval',
         
     | 
| 
      
 161 
     | 
    
         
            +
                        type: 'input-number',
         
     | 
| 
      
 162 
     | 
    
         
            +
                        visibleOn: 'typeof this.interval === "number"',
         
     | 
| 
      
 163 
     | 
    
         
            +
                        step: 500
         
     | 
| 
      
 164 
     | 
    
         
            +
                      },
         
     | 
| 
      
 165 
     | 
    
         
            +
             
     | 
| 
      
 166 
     | 
    
         
            +
                      {
         
     | 
| 
      
 167 
     | 
    
         
            +
                        name: 'silentPolling',
         
     | 
| 
      
 168 
     | 
    
         
            +
                        label: '静默刷新',
         
     | 
| 
      
 169 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 170 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 171 
     | 
    
         
            +
                        visibleOn: '!!data.interval',
         
     | 
| 
      
 172 
     | 
    
         
            +
                        description: '设置自动定时刷新时是否显示loading'
         
     | 
| 
      
 173 
     | 
    
         
            +
                      },
         
     | 
| 
      
 174 
     | 
    
         
            +
             
     | 
| 
      
 175 
     | 
    
         
            +
                      {
         
     | 
| 
      
 176 
     | 
    
         
            +
                        name: 'stopAutoRefreshWhen',
         
     | 
| 
      
 177 
     | 
    
         
            +
                        label: '停止定时刷新检测表达式',
         
     | 
| 
      
 178 
     | 
    
         
            +
                        type: 'input-text',
         
     | 
| 
      
 179 
     | 
    
         
            +
                        visibleOn: '!!data.interval',
         
     | 
| 
      
 180 
     | 
    
         
            +
                        description:
         
     | 
| 
      
 181 
     | 
    
         
            +
                          '定时刷新一旦设置会一直刷新,除非给出表达式,条件满足后则不刷新了。'
         
     | 
| 
      
 182 
     | 
    
         
            +
                      },
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
                      {
         
     | 
| 
      
 185 
     | 
    
         
            +
                        label: '默认消息提示',
         
     | 
| 
      
 186 
     | 
    
         
            +
                        type: 'combo',
         
     | 
| 
      
 187 
     | 
    
         
            +
                        name: 'messages',
         
     | 
| 
      
 188 
     | 
    
         
            +
                        multiLine: true,
         
     | 
| 
      
 189 
     | 
    
         
            +
                        description:
         
     | 
| 
      
 190 
     | 
    
         
            +
                          '设置 ajax 默认提示信息,当 ajax 没有返回 msg 信息时有用,如果 ajax 返回携带了 msg 值,则还是以 ajax 返回为主',
         
     | 
| 
      
 191 
     | 
    
         
            +
                        items: [
         
     | 
| 
      
 192 
     | 
    
         
            +
                          {
         
     | 
| 
      
 193 
     | 
    
         
            +
                            label: '获取成功提示',
         
     | 
| 
      
 194 
     | 
    
         
            +
                            type: 'input-text',
         
     | 
| 
      
 195 
     | 
    
         
            +
                            name: 'fetchSuccess'
         
     | 
| 
      
 196 
     | 
    
         
            +
                          },
         
     | 
| 
      
 197 
     | 
    
         
            +
             
     | 
| 
      
 198 
     | 
    
         
            +
                          {
         
     | 
| 
      
 199 
     | 
    
         
            +
                            label: '获取失败提示',
         
     | 
| 
      
 200 
     | 
    
         
            +
                            type: 'input-text',
         
     | 
| 
      
 201 
     | 
    
         
            +
                            name: 'fetchFailed'
         
     | 
| 
      
 202 
     | 
    
         
            +
                          },
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
                          {
         
     | 
| 
      
 205 
     | 
    
         
            +
                            label: '保存成功提示',
         
     | 
| 
      
 206 
     | 
    
         
            +
                            type: 'input-text',
         
     | 
| 
      
 207 
     | 
    
         
            +
                            name: 'saveSuccess'
         
     | 
| 
      
 208 
     | 
    
         
            +
                          },
         
     | 
| 
      
 209 
     | 
    
         
            +
             
     | 
| 
      
 210 
     | 
    
         
            +
                          {
         
     | 
| 
      
 211 
     | 
    
         
            +
                            label: '保存失败提示',
         
     | 
| 
      
 212 
     | 
    
         
            +
                            type: 'input-text',
         
     | 
| 
      
 213 
     | 
    
         
            +
                            name: 'saveFailed'
         
     | 
| 
      
 214 
     | 
    
         
            +
                          }
         
     | 
| 
      
 215 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 216 
     | 
    
         
            +
                      }
         
     | 
| 
      
 217 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 218 
     | 
    
         
            +
                  },
         
     | 
| 
      
 219 
     | 
    
         
            +
             
     | 
| 
      
 220 
     | 
    
         
            +
                  {
         
     | 
| 
      
 221 
     | 
    
         
            +
                    title: '外观',
         
     | 
| 
      
 222 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 223 
     | 
    
         
            +
                      getSchemaTpl('className'),
         
     | 
| 
      
 224 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 225 
     | 
    
         
            +
                        name: 'headerClassName',
         
     | 
| 
      
 226 
     | 
    
         
            +
                        label: '头部CSS类名'
         
     | 
| 
      
 227 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 228 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 229 
     | 
    
         
            +
                        name: 'bodyClassName',
         
     | 
| 
      
 230 
     | 
    
         
            +
                        label: '内容CSS类名'
         
     | 
| 
      
 231 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 232 
     | 
    
         
            +
             
     | 
| 
      
 233 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 234 
     | 
    
         
            +
                        name: 'asideClassName',
         
     | 
| 
      
 235 
     | 
    
         
            +
                        label: '边栏CSS类名'
         
     | 
| 
      
 236 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 237 
     | 
    
         
            +
             
     | 
| 
      
 238 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 239 
     | 
    
         
            +
                        name: 'toolbarClassName',
         
     | 
| 
      
 240 
     | 
    
         
            +
                        label: '工具栏CSS类名'
         
     | 
| 
      
 241 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 242 
     | 
    
         
            +
                      getSchemaTpl('style')
         
     | 
| 
      
 243 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 244 
     | 
    
         
            +
                  },
         
     | 
| 
      
 245 
     | 
    
         
            +
             
     | 
| 
      
 246 
     | 
    
         
            +
                  {
         
     | 
| 
      
 247 
     | 
    
         
            +
                    title: '其他',
         
     | 
| 
      
 248 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 249 
     | 
    
         
            +
                      getSchemaTpl('name')
         
     | 
| 
      
 250 
     | 
    
         
            +
             
     | 
| 
      
 251 
     | 
    
         
            +
                      // {
         
     | 
| 
      
 252 
     | 
    
         
            +
                      //   type: 'combo',
         
     | 
| 
      
 253 
     | 
    
         
            +
                      //   name: 'definitions',
         
     | 
| 
      
 254 
     | 
    
         
            +
                      //   multiple: true,
         
     | 
| 
      
 255 
     | 
    
         
            +
                      //   multiLine: true,
         
     | 
| 
      
 256 
     | 
    
         
            +
                      //   label: '定义',
         
     | 
| 
      
 257 
     | 
    
         
            +
                      //   description: '定义类型,定义完成后可被子节点引用。',
         
     | 
| 
      
 258 
     | 
    
         
            +
                      //   pipeIn: (value: any) =>
         
     | 
| 
      
 259 
     | 
    
         
            +
                      //     value
         
     | 
| 
      
 260 
     | 
    
         
            +
                      //       ? Object.keys(value).map(key => ({
         
     | 
| 
      
 261 
     | 
    
         
            +
                      //           key,
         
     | 
| 
      
 262 
     | 
    
         
            +
                      //           value: value[key]
         
     | 
| 
      
 263 
     | 
    
         
            +
                      //         }))
         
     | 
| 
      
 264 
     | 
    
         
            +
                      //       : [],
         
     | 
| 
      
 265 
     | 
    
         
            +
                      //   pipeOut: (value: any) =>
         
     | 
| 
      
 266 
     | 
    
         
            +
                      //     Array.isArray(value)
         
     | 
| 
      
 267 
     | 
    
         
            +
                      //       ? value.reduce(
         
     | 
| 
      
 268 
     | 
    
         
            +
                      //           (obj, current) => ({
         
     | 
| 
      
 269 
     | 
    
         
            +
                      //             ...obj,
         
     | 
| 
      
 270 
     | 
    
         
            +
                      //             [current.key || '']: current.value
         
     | 
| 
      
 271 
     | 
    
         
            +
                      //               ? current.value
         
     | 
| 
      
 272 
     | 
    
         
            +
                      //               : {type: 'tpl', tpl: '内容'}
         
     | 
| 
      
 273 
     | 
    
         
            +
                      //           }),
         
     | 
| 
      
 274 
     | 
    
         
            +
                      //           {}
         
     | 
| 
      
 275 
     | 
    
         
            +
                      //         )
         
     | 
| 
      
 276 
     | 
    
         
            +
                      //       : undefined,
         
     | 
| 
      
 277 
     | 
    
         
            +
                      //   items: [
         
     | 
| 
      
 278 
     | 
    
         
            +
                      //     {
         
     | 
| 
      
 279 
     | 
    
         
            +
                      //       type: 'input-text',
         
     | 
| 
      
 280 
     | 
    
         
            +
                      //       name: 'key',
         
     | 
| 
      
 281 
     | 
    
         
            +
                      //       label: 'Key',
         
     | 
| 
      
 282 
     | 
    
         
            +
                      //       required: true
         
     | 
| 
      
 283 
     | 
    
         
            +
                      //     },
         
     | 
| 
      
 284 
     | 
    
         
            +
             
     | 
| 
      
 285 
     | 
    
         
            +
                      //     {
         
     | 
| 
      
 286 
     | 
    
         
            +
                      //       children: ({index}: any) => (
         
     | 
| 
      
 287 
     | 
    
         
            +
                      //         <Button
         
     | 
| 
      
 288 
     | 
    
         
            +
                      //           size="sm"
         
     | 
| 
      
 289 
     | 
    
         
            +
                      //           level="danger"
         
     | 
| 
      
 290 
     | 
    
         
            +
                      //           // onClick={this.handleEditDefinitionDetail.bind(
         
     | 
| 
      
 291 
     | 
    
         
            +
                      //           //   this,
         
     | 
| 
      
 292 
     | 
    
         
            +
                      //           //   index
         
     | 
| 
      
 293 
     | 
    
         
            +
                      //           // )}
         
     | 
| 
      
 294 
     | 
    
         
            +
                      //           block
         
     | 
| 
      
 295 
     | 
    
         
            +
                      //         >
         
     | 
| 
      
 296 
     | 
    
         
            +
                      //           配置详情
         
     | 
| 
      
 297 
     | 
    
         
            +
                      //         </Button>
         
     | 
| 
      
 298 
     | 
    
         
            +
                      //       )
         
     | 
| 
      
 299 
     | 
    
         
            +
                      //     }
         
     | 
| 
      
 300 
     | 
    
         
            +
                      //   ]
         
     | 
| 
      
 301 
     | 
    
         
            +
                      // }
         
     | 
| 
      
 302 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 303 
     | 
    
         
            +
                  }
         
     | 
| 
      
 304 
     | 
    
         
            +
                ])
         
     | 
| 
      
 305 
     | 
    
         
            +
              ];
         
     | 
| 
      
 306 
     | 
    
         
            +
            }
         
     | 
| 
      
 307 
     | 
    
         
            +
             
     | 
| 
      
 308 
     | 
    
         
            +
            registerEditorPlugin(PagePlugin);
         
     | 
| 
         @@ -0,0 +1,41 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {Icon} from 'amis';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {AvailableRenderersPanel} from '../../component/Panel/AvailableRenderersPanel';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
         
     | 
| 
      
 6 
     | 
    
         
            +
             
     | 
| 
      
 7 
     | 
    
         
            +
            /**
         
     | 
| 
      
 8 
     | 
    
         
            +
             * 添加源码编辑功能
         
     | 
| 
      
 9 
     | 
    
         
            +
             */
         
     | 
| 
      
 10 
     | 
    
         
            +
            export class AvailableRenderersPlugin extends BasePlugin {
         
     | 
| 
      
 11 
     | 
    
         
            +
              order = -9999;
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              buildEditorPanel(
         
     | 
| 
      
 14 
     | 
    
         
            +
                context: BuildPanelEventContext,
         
     | 
| 
      
 15 
     | 
    
         
            +
                panels: Array<BasicPanelItem>
         
     | 
| 
      
 16 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 17 
     | 
    
         
            +
                const store = this.manager.store;
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                // 多选时不显示
         
     | 
| 
      
 20 
     | 
    
         
            +
                if (context.selections.length) {
         
     | 
| 
      
 21 
     | 
    
         
            +
                  return;
         
     | 
| 
      
 22 
     | 
    
         
            +
                }
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
                if (store.activeContainerId && store.subRenderers.length) {
         
     | 
| 
      
 25 
     | 
    
         
            +
                  panels.push({
         
     | 
| 
      
 26 
     | 
    
         
            +
                    key: 'renderers',
         
     | 
| 
      
 27 
     | 
    
         
            +
                    icon: 'png-icon renderers-png', // 'fa fa-cube',
         
     | 
| 
      
 28 
     | 
    
         
            +
                    title: (
         
     | 
| 
      
 29 
     | 
    
         
            +
                      <span className="editor-tab-icon" editor-tooltip="组件">
         
     | 
| 
      
 30 
     | 
    
         
            +
                        <Icon icon="editor-renderer" />
         
     | 
| 
      
 31 
     | 
    
         
            +
                      </span>
         
     | 
| 
      
 32 
     | 
    
         
            +
                    ),
         
     | 
| 
      
 33 
     | 
    
         
            +
                    component: AvailableRenderersPanel,
         
     | 
| 
      
 34 
     | 
    
         
            +
                    position: 'left',
         
     | 
| 
      
 35 
     | 
    
         
            +
                    order: -9999
         
     | 
| 
      
 36 
     | 
    
         
            +
                  });
         
     | 
| 
      
 37 
     | 
    
         
            +
                }
         
     | 
| 
      
 38 
     | 
    
         
            +
              }
         
     | 
| 
      
 39 
     | 
    
         
            +
            }
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
            registerEditorPlugin(AvailableRenderersPlugin);
         
     | 
| 
         @@ -0,0 +1,44 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {Icon} from 'amis';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import CodeEditorPanel from '../../component/Panel/CodeEditorPanel';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {
         
     | 
| 
      
 6 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 7 
     | 
    
         
            +
              BasicPanelItem,
         
     | 
| 
      
 8 
     | 
    
         
            +
              RendererJSONSchemaResolveEventContext,
         
     | 
| 
      
 9 
     | 
    
         
            +
              BuildPanelEventContext
         
     | 
| 
      
 10 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 11 
     | 
    
         
            +
            import WidthDraggableContainer from '../../component/base/WidthDraggableContainer';
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
            /**
         
     | 
| 
      
 14 
     | 
    
         
            +
             * 添加源码编辑功能
         
     | 
| 
      
 15 
     | 
    
         
            +
             */
         
     | 
| 
      
 16 
     | 
    
         
            +
            export class CodePlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              order = -9999;
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              buildJSONSchema({info}: RendererJSONSchemaResolveEventContext) {
         
     | 
| 
      
 20 
     | 
    
         
            +
                return info.$schema;
         
     | 
| 
      
 21 
     | 
    
         
            +
              }
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
              buildEditorPanel(
         
     | 
| 
      
 24 
     | 
    
         
            +
                {info, selections}: BuildPanelEventContext,
         
     | 
| 
      
 25 
     | 
    
         
            +
                panels: Array<BasicPanelItem>
         
     | 
| 
      
 26 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 27 
     | 
    
         
            +
                if (this.manager.store.jsonSchemaUri && !selections.length) {
         
     | 
| 
      
 28 
     | 
    
         
            +
                  panels.push({
         
     | 
| 
      
 29 
     | 
    
         
            +
                    key: 'code',
         
     | 
| 
      
 30 
     | 
    
         
            +
                    icon: 'png-icon code-png', // 'fa fa-code',
         
     | 
| 
      
 31 
     | 
    
         
            +
                    title: (
         
     | 
| 
      
 32 
     | 
    
         
            +
                      <span className="editor-tab-icon" editor-tooltip="代码">
         
     | 
| 
      
 33 
     | 
    
         
            +
                        <Icon icon="editor-code" />
         
     | 
| 
      
 34 
     | 
    
         
            +
                      </span>
         
     | 
| 
      
 35 
     | 
    
         
            +
                    ),
         
     | 
| 
      
 36 
     | 
    
         
            +
                    position: 'left',
         
     | 
| 
      
 37 
     | 
    
         
            +
                    component: WidthDraggableContainer(CodeEditorPanel),
         
     | 
| 
      
 38 
     | 
    
         
            +
                    order: 5000
         
     | 
| 
      
 39 
     | 
    
         
            +
                  });
         
     | 
| 
      
 40 
     | 
    
         
            +
                }
         
     | 
| 
      
 41 
     | 
    
         
            +
              }
         
     | 
| 
      
 42 
     | 
    
         
            +
            }
         
     | 
| 
      
 43 
     | 
    
         
            +
             
     | 
| 
      
 44 
     | 
    
         
            +
            registerEditorPlugin(CodePlugin);
         
     | 
| 
         @@ -0,0 +1,26 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {TargetNamePanel} from '../../component/Panel/TargetNamePanel';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
         
     | 
| 
      
 4 
     | 
    
         
            +
             
     | 
| 
      
 5 
     | 
    
         
            +
            /**
         
     | 
| 
      
 6 
     | 
    
         
            +
             * 添加名字面板,方便根据组件名字定位节点
         
     | 
| 
      
 7 
     | 
    
         
            +
             */
         
     | 
| 
      
 8 
     | 
    
         
            +
            export class NamePlugin extends BasePlugin {
         
     | 
| 
      
 9 
     | 
    
         
            +
              order = -9999;
         
     | 
| 
      
 10 
     | 
    
         
            +
             
     | 
| 
      
 11 
     | 
    
         
            +
              buildEditorPanel(
         
     | 
| 
      
 12 
     | 
    
         
            +
                {info, selections}: BuildPanelEventContext,
         
     | 
| 
      
 13 
     | 
    
         
            +
                panels: Array<BasicPanelItem>
         
     | 
| 
      
 14 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 15 
     | 
    
         
            +
                // panels.push({
         
     | 
| 
      
 16 
     | 
    
         
            +
                //   position: 'left',
         
     | 
| 
      
 17 
     | 
    
         
            +
                //   key: 'name-list',
         
     | 
| 
      
 18 
     | 
    
         
            +
                //   icon: 'fa fa-list',
         
     | 
| 
      
 19 
     | 
    
         
            +
                //   title: '名字',
         
     | 
| 
      
 20 
     | 
    
         
            +
                //   component: TargetNamePanel,
         
     | 
| 
      
 21 
     | 
    
         
            +
                //   order: 4000
         
     | 
| 
      
 22 
     | 
    
         
            +
                // });
         
     | 
| 
      
 23 
     | 
    
         
            +
              }
         
     | 
| 
      
 24 
     | 
    
         
            +
            }
         
     | 
| 
      
 25 
     | 
    
         
            +
            // PM端:名字tab 使用有点奇怪,暂时去掉
         
     | 
| 
      
 26 
     | 
    
         
            +
            // registerEditorPlugin(NamePlugin);
         
     | 
| 
         @@ -0,0 +1,40 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {Icon} from 'amis';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {OutlinePanel} from '../../component/Panel/Outline';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {BasePlugin, BasicPanelItem, BuildPanelEventContext} from '../../plugin';
         
     | 
| 
      
 6 
     | 
    
         
            +
            import WidthDraggableContainer from '../../component/base/WidthDraggableContainer';
         
     | 
| 
      
 7 
     | 
    
         
            +
            /**
         
     | 
| 
      
 8 
     | 
    
         
            +
             * 大纲面板
         
     | 
| 
      
 9 
     | 
    
         
            +
             */
         
     | 
| 
      
 10 
     | 
    
         
            +
            export class OutlinePlugin extends BasePlugin {
         
     | 
| 
      
 11 
     | 
    
         
            +
              order = -9999;
         
     | 
| 
      
 12 
     | 
    
         
            +
             
     | 
| 
      
 13 
     | 
    
         
            +
              buildEditorPanel(
         
     | 
| 
      
 14 
     | 
    
         
            +
                context: BuildPanelEventContext,
         
     | 
| 
      
 15 
     | 
    
         
            +
                panels: Array<BasicPanelItem>
         
     | 
| 
      
 16 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 17 
     | 
    
         
            +
                const store = this.manager.store;
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
                // 多选时显示大纲面板
         
     | 
| 
      
 20 
     | 
    
         
            +
                if (store && context.selections.length) {
         
     | 
| 
      
 21 
     | 
    
         
            +
                  const {changeLeftPanelOpenStatus, changeLeftPanelKey} = store;
         
     | 
| 
      
 22 
     | 
    
         
            +
                  changeLeftPanelOpenStatus(true);
         
     | 
| 
      
 23 
     | 
    
         
            +
                  changeLeftPanelKey('outline');
         
     | 
| 
      
 24 
     | 
    
         
            +
                }
         
     | 
| 
      
 25 
     | 
    
         
            +
                panels.push({
         
     | 
| 
      
 26 
     | 
    
         
            +
                  key: 'outline',
         
     | 
| 
      
 27 
     | 
    
         
            +
                  icon: 'png-icon outline-png', // 'fa fa-navicon',
         
     | 
| 
      
 28 
     | 
    
         
            +
                  title: (
         
     | 
| 
      
 29 
     | 
    
         
            +
                    <span className="editor-tab-icon" editor-tooltip="大纲">
         
     | 
| 
      
 30 
     | 
    
         
            +
                      <Icon icon="editor-outline" />
         
     | 
| 
      
 31 
     | 
    
         
            +
                    </span>
         
     | 
| 
      
 32 
     | 
    
         
            +
                  ),
         
     | 
| 
      
 33 
     | 
    
         
            +
                  component: WidthDraggableContainer(OutlinePanel),
         
     | 
| 
      
 34 
     | 
    
         
            +
                  position: 'left',
         
     | 
| 
      
 35 
     | 
    
         
            +
                  order: 4000
         
     | 
| 
      
 36 
     | 
    
         
            +
                });
         
     | 
| 
      
 37 
     | 
    
         
            +
              }
         
     | 
| 
      
 38 
     | 
    
         
            +
            }
         
     | 
| 
      
 39 
     | 
    
         
            +
             
     | 
| 
      
 40 
     | 
    
         
            +
            registerEditorPlugin(OutlinePlugin);
         
     | 
| 
         @@ -0,0 +1,243 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {Button, SchemaObject} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {registerEditorPlugin} from '../manager';
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {
         
     | 
| 
      
 5 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 6 
     | 
    
         
            +
              BaseEventContext,
         
     | 
| 
      
 7 
     | 
    
         
            +
              BasicPanelItem,
         
     | 
| 
      
 8 
     | 
    
         
            +
              RegionConfig,
         
     | 
| 
      
 9 
     | 
    
         
            +
              RendererInfo,
         
     | 
| 
      
 10 
     | 
    
         
            +
              BuildPanelEventContext
         
     | 
| 
      
 11 
     | 
    
         
            +
            } from '../plugin';
         
     | 
| 
      
 12 
     | 
    
         
            +
            import {defaultValue, getSchemaTpl} from '../component/schemaTpl';
         
     | 
| 
      
 13 
     | 
    
         
            +
             
     | 
| 
      
 14 
     | 
    
         
            +
            export class PanelPlugin extends BasePlugin {
         
     | 
| 
      
 15 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 16 
     | 
    
         
            +
              rendererName = 'panel';
         
     | 
| 
      
 17 
     | 
    
         
            +
              $schema = '/schemas/panelSchema.json';
         
     | 
| 
      
 18 
     | 
    
         
            +
             
     | 
| 
      
 19 
     | 
    
         
            +
              name = '面板';
         
     | 
| 
      
 20 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 21 
     | 
    
         
            +
              icon = 'fa fa-window-maximize';
         
     | 
| 
      
 22 
     | 
    
         
            +
              description = '展示一个面板,可以配置标题,内容区。';
         
     | 
| 
      
 23 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/panel';
         
     | 
| 
      
 24 
     | 
    
         
            +
              tags = '容器';
         
     | 
| 
      
 25 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 26 
     | 
    
         
            +
                type: 'panel',
         
     | 
| 
      
 27 
     | 
    
         
            +
                title: '标题',
         
     | 
| 
      
 28 
     | 
    
         
            +
                body: '内容'
         
     | 
| 
      
 29 
     | 
    
         
            +
              };
         
     | 
| 
      
 30 
     | 
    
         
            +
              previewSchema = {
         
     | 
| 
      
 31 
     | 
    
         
            +
                type: 'panel',
         
     | 
| 
      
 32 
     | 
    
         
            +
                title: '这是一个面板',
         
     | 
| 
      
 33 
     | 
    
         
            +
                body: '这是内容区',
         
     | 
| 
      
 34 
     | 
    
         
            +
                className: 'Panel--default text-left m-b-none',
         
     | 
| 
      
 35 
     | 
    
         
            +
                actions: [
         
     | 
| 
      
 36 
     | 
    
         
            +
                  {
         
     | 
| 
      
 37 
     | 
    
         
            +
                    label: '按钮1',
         
     | 
| 
      
 38 
     | 
    
         
            +
                    type: 'button'
         
     | 
| 
      
 39 
     | 
    
         
            +
                  },
         
     | 
| 
      
 40 
     | 
    
         
            +
                  {
         
     | 
| 
      
 41 
     | 
    
         
            +
                    label: '按钮2',
         
     | 
| 
      
 42 
     | 
    
         
            +
                    type: 'button'
         
     | 
| 
      
 43 
     | 
    
         
            +
                  }
         
     | 
| 
      
 44 
     | 
    
         
            +
                ]
         
     | 
| 
      
 45 
     | 
    
         
            +
              };
         
     | 
| 
      
 46 
     | 
    
         
            +
             
     | 
| 
      
 47 
     | 
    
         
            +
              regions: Array<RegionConfig> = [
         
     | 
| 
      
 48 
     | 
    
         
            +
                {
         
     | 
| 
      
 49 
     | 
    
         
            +
                  key: 'body',
         
     | 
| 
      
 50 
     | 
    
         
            +
                  label: '内容区',
         
     | 
| 
      
 51 
     | 
    
         
            +
             
     | 
| 
      
 52 
     | 
    
         
            +
                  // 复写渲染器里面的 renderBody 方法
         
     | 
| 
      
 53 
     | 
    
         
            +
                  renderMethod: 'renderBody',
         
     | 
| 
      
 54 
     | 
    
         
            +
             
     | 
| 
      
 55 
     | 
    
         
            +
                  // 这个 case 很另类,要自己写。form 里面直接复用了 Panel 来输出内容。
         
     | 
| 
      
 56 
     | 
    
         
            +
                  // 这种 case 应该跳过包裹 Region
         
     | 
| 
      
 57 
     | 
    
         
            +
                  // 只有他自己输出时才包裹,form 调用进来是下发了 children 来完成渲染
         
     | 
| 
      
 58 
     | 
    
         
            +
                  // 自己的话是其他方式。
         
     | 
| 
      
 59 
     | 
    
         
            +
                  renderMethodOverride: (regions, insertRegion) =>
         
     | 
| 
      
 60 
     | 
    
         
            +
                    function (this: any, ...args: any[]) {
         
     | 
| 
      
 61 
     | 
    
         
            +
                      const info: RendererInfo = this.props.$$editor;
         
     | 
| 
      
 62 
     | 
    
         
            +
                      const dom = this.super(...args);
         
     | 
| 
      
 63 
     | 
    
         
            +
             
     | 
| 
      
 64 
     | 
    
         
            +
                      if (info && !this.props.children) {
         
     | 
| 
      
 65 
     | 
    
         
            +
                        return insertRegion(this, dom, regions, info, info.plugin.manager);
         
     | 
| 
      
 66 
     | 
    
         
            +
                      }
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
                      return dom;
         
     | 
| 
      
 69 
     | 
    
         
            +
                    }
         
     | 
| 
      
 70 
     | 
    
         
            +
                },
         
     | 
| 
      
 71 
     | 
    
         
            +
             
     | 
| 
      
 72 
     | 
    
         
            +
                {
         
     | 
| 
      
 73 
     | 
    
         
            +
                  key: 'actions',
         
     | 
| 
      
 74 
     | 
    
         
            +
                  label: '按钮组',
         
     | 
| 
      
 75 
     | 
    
         
            +
                  renderMethod: 'renderActions',
         
     | 
| 
      
 76 
     | 
    
         
            +
                  preferTag: '按钮'
         
     | 
| 
      
 77 
     | 
    
         
            +
                }
         
     | 
| 
      
 78 
     | 
    
         
            +
              ];
         
     | 
| 
      
 79 
     | 
    
         
            +
             
     | 
| 
      
 80 
     | 
    
         
            +
              panelTitle = '面板';
         
     | 
| 
      
 81 
     | 
    
         
            +
              panelBodyCreator = (context: BaseEventContext) => {
         
     | 
| 
      
 82 
     | 
    
         
            +
                const isForm = /(?:^|\/)form$/.test(context.path);
         
     | 
| 
      
 83 
     | 
    
         
            +
             
     | 
| 
      
 84 
     | 
    
         
            +
                return [
         
     | 
| 
      
 85 
     | 
    
         
            +
                  getSchemaTpl('tabs', [
         
     | 
| 
      
 86 
     | 
    
         
            +
                    {
         
     | 
| 
      
 87 
     | 
    
         
            +
                      title: '常规',
         
     | 
| 
      
 88 
     | 
    
         
            +
                      body: [
         
     | 
| 
      
 89 
     | 
    
         
            +
                        {
         
     | 
| 
      
 90 
     | 
    
         
            +
                          label: '标题',
         
     | 
| 
      
 91 
     | 
    
         
            +
                          name: 'title',
         
     | 
| 
      
 92 
     | 
    
         
            +
                          type: 'input-text'
         
     | 
| 
      
 93 
     | 
    
         
            +
                        },
         
     | 
| 
      
 94 
     | 
    
         
            +
             
     | 
| 
      
 95 
     | 
    
         
            +
                        isForm
         
     | 
| 
      
 96 
     | 
    
         
            +
                          ? null
         
     | 
| 
      
 97 
     | 
    
         
            +
                          : {
         
     | 
| 
      
 98 
     | 
    
         
            +
                              children: (
         
     | 
| 
      
 99 
     | 
    
         
            +
                                <Button
         
     | 
| 
      
 100 
     | 
    
         
            +
                                  size="sm"
         
     | 
| 
      
 101 
     | 
    
         
            +
                                  level="info"
         
     | 
| 
      
 102 
     | 
    
         
            +
                                  className="m-b"
         
     | 
| 
      
 103 
     | 
    
         
            +
                                  onClick={() => {
         
     | 
| 
      
 104 
     | 
    
         
            +
                                    // this.manager.showInsertPanel('body')
         
     | 
| 
      
 105 
     | 
    
         
            +
                                    this.manager.showRendererPanel('');
         
     | 
| 
      
 106 
     | 
    
         
            +
                                  }}
         
     | 
| 
      
 107 
     | 
    
         
            +
                                  block
         
     | 
| 
      
 108 
     | 
    
         
            +
                                >
         
     | 
| 
      
 109 
     | 
    
         
            +
                                  内容区新增内容
         
     | 
| 
      
 110 
     | 
    
         
            +
                                </Button>
         
     | 
| 
      
 111 
     | 
    
         
            +
                              )
         
     | 
| 
      
 112 
     | 
    
         
            +
                            }
         
     | 
| 
      
 113 
     | 
    
         
            +
                      ]
         
     | 
| 
      
 114 
     | 
    
         
            +
                    },
         
     | 
| 
      
 115 
     | 
    
         
            +
                    {
         
     | 
| 
      
 116 
     | 
    
         
            +
                      title: '外观',
         
     | 
| 
      
 117 
     | 
    
         
            +
                      body: [
         
     | 
| 
      
 118 
     | 
    
         
            +
                        {
         
     | 
| 
      
 119 
     | 
    
         
            +
                          name: 'affixFooter',
         
     | 
| 
      
 120 
     | 
    
         
            +
                          label: '固定底部',
         
     | 
| 
      
 121 
     | 
    
         
            +
                          type: 'switch',
         
     | 
| 
      
 122 
     | 
    
         
            +
                          value: false,
         
     | 
| 
      
 123 
     | 
    
         
            +
                          mode: 'inline',
         
     | 
| 
      
 124 
     | 
    
         
            +
                          className: 'block'
         
     | 
| 
      
 125 
     | 
    
         
            +
                        },
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
                        getSchemaTpl('horizontal', {
         
     | 
| 
      
 128 
     | 
    
         
            +
                          visibleOn:
         
     | 
| 
      
 129 
     | 
    
         
            +
                            '(data.mode || data.$$formMode) == "horizontal" && data.$$mode == "form"'
         
     | 
| 
      
 130 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 131 
     | 
    
         
            +
             
     | 
| 
      
 132 
     | 
    
         
            +
                        {
         
     | 
| 
      
 133 
     | 
    
         
            +
                          name: isForm ? 'panelClassName' : 'className',
         
     | 
| 
      
 134 
     | 
    
         
            +
                          label: '样式',
         
     | 
| 
      
 135 
     | 
    
         
            +
                          type: 'button-group-select',
         
     | 
| 
      
 136 
     | 
    
         
            +
                          size: 'sm',
         
     | 
| 
      
 137 
     | 
    
         
            +
                          pipeIn: (value: any) =>
         
     | 
| 
      
 138 
     | 
    
         
            +
                            typeof value === 'string' &&
         
     | 
| 
      
 139 
     | 
    
         
            +
                            /(?:^|\s)(Panel\-\-(\w+))(?:$|\s)/.test(value)
         
     | 
| 
      
 140 
     | 
    
         
            +
                              ? RegExp.$1
         
     | 
| 
      
 141 
     | 
    
         
            +
                              : '',
         
     | 
| 
      
 142 
     | 
    
         
            +
                          pipeOut: (value: string, origin: string) =>
         
     | 
| 
      
 143 
     | 
    
         
            +
                            origin
         
     | 
| 
      
 144 
     | 
    
         
            +
                              ? `${origin.replace(
         
     | 
| 
      
 145 
     | 
    
         
            +
                                  /(?:^|\s)(Panel\-\-(\w+))(?=($|\s))/g,
         
     | 
| 
      
 146 
     | 
    
         
            +
                                  ''
         
     | 
| 
      
 147 
     | 
    
         
            +
                                )} ${value}`
         
     | 
| 
      
 148 
     | 
    
         
            +
                                  .replace(/\s+/g, ' ')
         
     | 
| 
      
 149 
     | 
    
         
            +
                                  .trim()
         
     | 
| 
      
 150 
     | 
    
         
            +
                              : value,
         
     | 
| 
      
 151 
     | 
    
         
            +
                          options: [
         
     | 
| 
      
 152 
     | 
    
         
            +
                            {
         
     | 
| 
      
 153 
     | 
    
         
            +
                              label: '默认',
         
     | 
| 
      
 154 
     | 
    
         
            +
                              value: 'Panel--default'
         
     | 
| 
      
 155 
     | 
    
         
            +
                            },
         
     | 
| 
      
 156 
     | 
    
         
            +
                            {
         
     | 
| 
      
 157 
     | 
    
         
            +
                              label: '主色',
         
     | 
| 
      
 158 
     | 
    
         
            +
                              value: 'Panel--primary'
         
     | 
| 
      
 159 
     | 
    
         
            +
                            },
         
     | 
| 
      
 160 
     | 
    
         
            +
                            {
         
     | 
| 
      
 161 
     | 
    
         
            +
                              label: '提示',
         
     | 
| 
      
 162 
     | 
    
         
            +
                              value: 'Panel--info'
         
     | 
| 
      
 163 
     | 
    
         
            +
                            },
         
     | 
| 
      
 164 
     | 
    
         
            +
                            {
         
     | 
| 
      
 165 
     | 
    
         
            +
                              label: '成功',
         
     | 
| 
      
 166 
     | 
    
         
            +
                              value: 'Panel--success'
         
     | 
| 
      
 167 
     | 
    
         
            +
                            },
         
     | 
| 
      
 168 
     | 
    
         
            +
                            {
         
     | 
| 
      
 169 
     | 
    
         
            +
                              label: '警告',
         
     | 
| 
      
 170 
     | 
    
         
            +
                              value: 'Panel--warning'
         
     | 
| 
      
 171 
     | 
    
         
            +
                            },
         
     | 
| 
      
 172 
     | 
    
         
            +
                            {
         
     | 
| 
      
 173 
     | 
    
         
            +
                              label: '危险',
         
     | 
| 
      
 174 
     | 
    
         
            +
                              value: 'Panel--danger'
         
     | 
| 
      
 175 
     | 
    
         
            +
                            }
         
     | 
| 
      
 176 
     | 
    
         
            +
                          ]
         
     | 
| 
      
 177 
     | 
    
         
            +
                        },
         
     | 
| 
      
 178 
     | 
    
         
            +
             
     | 
| 
      
 179 
     | 
    
         
            +
                        getSchemaTpl('className', {
         
     | 
| 
      
 180 
     | 
    
         
            +
                          name: isForm ? 'panelClassName' : 'className',
         
     | 
| 
      
 181 
     | 
    
         
            +
                          pipeIn: defaultValue('Panel--default')
         
     | 
| 
      
 182 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 183 
     | 
    
         
            +
             
     | 
| 
      
 184 
     | 
    
         
            +
                        getSchemaTpl('className', {
         
     | 
| 
      
 185 
     | 
    
         
            +
                          name: 'headerClassName',
         
     | 
| 
      
 186 
     | 
    
         
            +
                          label: '头部区域 CSS 类名'
         
     | 
| 
      
 187 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 188 
     | 
    
         
            +
             
     | 
| 
      
 189 
     | 
    
         
            +
                        getSchemaTpl('className', {
         
     | 
| 
      
 190 
     | 
    
         
            +
                          name: 'bodyClassName',
         
     | 
| 
      
 191 
     | 
    
         
            +
                          label: '内容区域 CSS 类名'
         
     | 
| 
      
 192 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 193 
     | 
    
         
            +
             
     | 
| 
      
 194 
     | 
    
         
            +
                        getSchemaTpl('className', {
         
     | 
| 
      
 195 
     | 
    
         
            +
                          name: 'footerClassName',
         
     | 
| 
      
 196 
     | 
    
         
            +
                          label: '底部区域 CSS 类名'
         
     | 
| 
      
 197 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 198 
     | 
    
         
            +
             
     | 
| 
      
 199 
     | 
    
         
            +
                        getSchemaTpl('className', {
         
     | 
| 
      
 200 
     | 
    
         
            +
                          name: 'actionsClassName',
         
     | 
| 
      
 201 
     | 
    
         
            +
                          label: '按钮外层 CSS 类名'
         
     | 
| 
      
 202 
     | 
    
         
            +
                        }),
         
     | 
| 
      
 203 
     | 
    
         
            +
             
     | 
| 
      
 204 
     | 
    
         
            +
                        getSchemaTpl('subFormItemMode'),
         
     | 
| 
      
 205 
     | 
    
         
            +
                        getSchemaTpl('subFormHorizontalMode'),
         
     | 
| 
      
 206 
     | 
    
         
            +
                        getSchemaTpl('subFormHorizontal')
         
     | 
| 
      
 207 
     | 
    
         
            +
                      ]
         
     | 
| 
      
 208 
     | 
    
         
            +
                    },
         
     | 
| 
      
 209 
     | 
    
         
            +
                    {
         
     | 
| 
      
 210 
     | 
    
         
            +
                      title: '显隐',
         
     | 
| 
      
 211 
     | 
    
         
            +
                      body: [getSchemaTpl('ref'), getSchemaTpl('visible')]
         
     | 
| 
      
 212 
     | 
    
         
            +
                    }
         
     | 
| 
      
 213 
     | 
    
         
            +
                  ])
         
     | 
| 
      
 214 
     | 
    
         
            +
                ];
         
     | 
| 
      
 215 
     | 
    
         
            +
              };
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
              buildEditorPanel(
         
     | 
| 
      
 218 
     | 
    
         
            +
                context: BuildPanelEventContext,
         
     | 
| 
      
 219 
     | 
    
         
            +
                panels: Array<BasicPanelItem>
         
     | 
| 
      
 220 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 221 
     | 
    
         
            +
                const path = context.path;
         
     | 
| 
      
 222 
     | 
    
         
            +
                const schema = context.schema;
         
     | 
| 
      
 223 
     | 
    
         
            +
             
     | 
| 
      
 224 
     | 
    
         
            +
                if (
         
     | 
| 
      
 225 
     | 
    
         
            +
                  context.info.renderer.name === 'form' &&
         
     | 
| 
      
 226 
     | 
    
         
            +
                  schema.wrapWithPanel !== false &&
         
     | 
| 
      
 227 
     | 
    
         
            +
                  !context.selections.length
         
     | 
| 
      
 228 
     | 
    
         
            +
                ) {
         
     | 
| 
      
 229 
     | 
    
         
            +
                  panels.push({
         
     | 
| 
      
 230 
     | 
    
         
            +
                    key: 'panel',
         
     | 
| 
      
 231 
     | 
    
         
            +
                    icon: 'fa fa-list-alt',
         
     | 
| 
      
 232 
     | 
    
         
            +
                    title: this.panelTitle,
         
     | 
| 
      
 233 
     | 
    
         
            +
                    render: this.manager.makeSchemaFormRender({
         
     | 
| 
      
 234 
     | 
    
         
            +
                      body: this.panelBodyCreator(context)
         
     | 
| 
      
 235 
     | 
    
         
            +
                    })
         
     | 
| 
      
 236 
     | 
    
         
            +
                  });
         
     | 
| 
      
 237 
     | 
    
         
            +
                } else {
         
     | 
| 
      
 238 
     | 
    
         
            +
                  super.buildEditorPanel(context, panels);
         
     | 
| 
      
 239 
     | 
    
         
            +
                }
         
     | 
| 
      
 240 
     | 
    
         
            +
              }
         
     | 
| 
      
 241 
     | 
    
         
            +
            }
         
     | 
| 
      
 242 
     | 
    
         
            +
             
     | 
| 
      
 243 
     | 
    
         
            +
            registerEditorPlugin(PanelPlugin);
         
     |