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,222 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {relativeValueRe} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {
         
     | 
| 
      
 4 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 5 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 6 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 7 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {
         
     | 
| 
      
 10 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 11 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 12 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 13 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 14 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 15 
     | 
    
         
            +
             
     | 
| 
      
 16 
     | 
    
         
            +
            export class NestedSelectControlPlugin extends BasePlugin {
         
     | 
| 
      
 17 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 18 
     | 
    
         
            +
              rendererName = 'nested-select';
         
     | 
| 
      
 19 
     | 
    
         
            +
              $schema = '/schemas/NestedSelectControlSchema.json';
         
     | 
| 
      
 20 
     | 
    
         
            +
             
     | 
| 
      
 21 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 22 
     | 
    
         
            +
              name = '嵌套下拉框';
         
     | 
| 
      
 23 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 24 
     | 
    
         
            +
              icon = 'fa fa-indent';
         
     | 
| 
      
 25 
     | 
    
         
            +
              description = `适用于选项中含有子项,可通过<code>source</code>拉取选项,支持多选`;
         
     | 
| 
      
 26 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/nestedselect';
         
     | 
| 
      
 27 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 28 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 29 
     | 
    
         
            +
                type: 'nested-select',
         
     | 
| 
      
 30 
     | 
    
         
            +
                label: '嵌套下拉框',
         
     | 
| 
      
 31 
     | 
    
         
            +
                name: 'nestedSelect',
         
     | 
| 
      
 32 
     | 
    
         
            +
                options: [
         
     | 
| 
      
 33 
     | 
    
         
            +
                  {
         
     | 
| 
      
 34 
     | 
    
         
            +
                    label: '选项A',
         
     | 
| 
      
 35 
     | 
    
         
            +
                    value: 'A'
         
     | 
| 
      
 36 
     | 
    
         
            +
                  },
         
     | 
| 
      
 37 
     | 
    
         
            +
             
     | 
| 
      
 38 
     | 
    
         
            +
                  {
         
     | 
| 
      
 39 
     | 
    
         
            +
                    label: '选项B',
         
     | 
| 
      
 40 
     | 
    
         
            +
                    value: 'B',
         
     | 
| 
      
 41 
     | 
    
         
            +
                    children: [
         
     | 
| 
      
 42 
     | 
    
         
            +
                      {
         
     | 
| 
      
 43 
     | 
    
         
            +
                        label: '选项C',
         
     | 
| 
      
 44 
     | 
    
         
            +
                        value: 'C'
         
     | 
| 
      
 45 
     | 
    
         
            +
                      },
         
     | 
| 
      
 46 
     | 
    
         
            +
                      {
         
     | 
| 
      
 47 
     | 
    
         
            +
                        label: '选项D',
         
     | 
| 
      
 48 
     | 
    
         
            +
                        value: 'D'
         
     | 
| 
      
 49 
     | 
    
         
            +
                      }
         
     | 
| 
      
 50 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 51 
     | 
    
         
            +
                  }
         
     | 
| 
      
 52 
     | 
    
         
            +
                ]
         
     | 
| 
      
 53 
     | 
    
         
            +
              };
         
     | 
| 
      
 54 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 55 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 56 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 57 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 58 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 59 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 60 
     | 
    
         
            +
                  {
         
     | 
| 
      
 61 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 62 
     | 
    
         
            +
                  }
         
     | 
| 
      
 63 
     | 
    
         
            +
                ]
         
     | 
| 
      
 64 
     | 
    
         
            +
              };
         
     | 
| 
      
 65 
     | 
    
         
            +
             
     | 
| 
      
 66 
     | 
    
         
            +
              panelTitle = '嵌套下拉';
         
     | 
| 
      
 67 
     | 
    
         
            +
             
     | 
| 
      
 68 
     | 
    
         
            +
              panelDefinitions = {
         
     | 
| 
      
 69 
     | 
    
         
            +
                options: {
         
     | 
| 
      
 70 
     | 
    
         
            +
                  label: '选项 Options',
         
     | 
| 
      
 71 
     | 
    
         
            +
                  name: 'options',
         
     | 
| 
      
 72 
     | 
    
         
            +
                  type: 'combo',
         
     | 
| 
      
 73 
     | 
    
         
            +
                  multiple: true,
         
     | 
| 
      
 74 
     | 
    
         
            +
                  multiLine: true,
         
     | 
| 
      
 75 
     | 
    
         
            +
                  draggable: true,
         
     | 
| 
      
 76 
     | 
    
         
            +
                  addButtonText: '新增选项',
         
     | 
| 
      
 77 
     | 
    
         
            +
                  scaffold: {
         
     | 
| 
      
 78 
     | 
    
         
            +
                    label: '',
         
     | 
| 
      
 79 
     | 
    
         
            +
                    value: ''
         
     | 
| 
      
 80 
     | 
    
         
            +
                  },
         
     | 
| 
      
 81 
     | 
    
         
            +
                  items: [
         
     | 
| 
      
 82 
     | 
    
         
            +
                    {
         
     | 
| 
      
 83 
     | 
    
         
            +
                      type: 'group',
         
     | 
| 
      
 84 
     | 
    
         
            +
                      body: [
         
     | 
| 
      
 85 
     | 
    
         
            +
                        {
         
     | 
| 
      
 86 
     | 
    
         
            +
                          type: 'input-text',
         
     | 
| 
      
 87 
     | 
    
         
            +
                          name: 'label',
         
     | 
| 
      
 88 
     | 
    
         
            +
                          placeholder: '名称',
         
     | 
| 
      
 89 
     | 
    
         
            +
                          required: true
         
     | 
| 
      
 90 
     | 
    
         
            +
                        },
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                        {
         
     | 
| 
      
 93 
     | 
    
         
            +
                          type: 'input-text',
         
     | 
| 
      
 94 
     | 
    
         
            +
                          name: 'value',
         
     | 
| 
      
 95 
     | 
    
         
            +
                          placeholder: '值',
         
     | 
| 
      
 96 
     | 
    
         
            +
                          unique: true
         
     | 
| 
      
 97 
     | 
    
         
            +
                        }
         
     | 
| 
      
 98 
     | 
    
         
            +
                      ]
         
     | 
| 
      
 99 
     | 
    
         
            +
                    },
         
     | 
| 
      
 100 
     | 
    
         
            +
                    {
         
     | 
| 
      
 101 
     | 
    
         
            +
                      $ref: 'options',
         
     | 
| 
      
 102 
     | 
    
         
            +
                      label: '子选项',
         
     | 
| 
      
 103 
     | 
    
         
            +
                      name: 'children',
         
     | 
| 
      
 104 
     | 
    
         
            +
                      addButtonText: '新增子选项'
         
     | 
| 
      
 105 
     | 
    
         
            +
                    }
         
     | 
| 
      
 106 
     | 
    
         
            +
                  ]
         
     | 
| 
      
 107 
     | 
    
         
            +
                }
         
     | 
| 
      
 108 
     | 
    
         
            +
              };
         
     | 
| 
      
 109 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 110 
     | 
    
         
            +
                getSchemaTpl('tabs', [
         
     | 
| 
      
 111 
     | 
    
         
            +
                  {
         
     | 
| 
      
 112 
     | 
    
         
            +
                    title: '常规',
         
     | 
| 
      
 113 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 114 
     | 
    
         
            +
                      getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 115 
     | 
    
         
            +
                      {
         
     | 
| 
      
 116 
     | 
    
         
            +
                        type: 'input-text',
         
     | 
| 
      
 117 
     | 
    
         
            +
                        name: 'value',
         
     | 
| 
      
 118 
     | 
    
         
            +
                        label: '默认值',
         
     | 
| 
      
 119 
     | 
    
         
            +
                        visibleOn: 'typeof this.value !== "undefined"'
         
     | 
| 
      
 120 
     | 
    
         
            +
                      },
         
     | 
| 
      
 121 
     | 
    
         
            +
             
     | 
| 
      
 122 
     | 
    
         
            +
                      getSchemaTpl('clearable'),
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
      
 124 
     | 
    
         
            +
                      {
         
     | 
| 
      
 125 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 126 
     | 
    
         
            +
                        name: 'searchable',
         
     | 
| 
      
 127 
     | 
    
         
            +
                        label: '可否检索',
         
     | 
| 
      
 128 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 129 
     | 
    
         
            +
                        className: 'w-full'
         
     | 
| 
      
 130 
     | 
    
         
            +
                      },
         
     | 
| 
      
 131 
     | 
    
         
            +
                      {
         
     | 
| 
      
 132 
     | 
    
         
            +
                        type: 'input-text',
         
     | 
| 
      
 133 
     | 
    
         
            +
                        name: 'searchPromptText',
         
     | 
| 
      
 134 
     | 
    
         
            +
                        label: '搜索框占位文本'
         
     | 
| 
      
 135 
     | 
    
         
            +
                      },
         
     | 
| 
      
 136 
     | 
    
         
            +
                      {
         
     | 
| 
      
 137 
     | 
    
         
            +
                        type: 'input-text',
         
     | 
| 
      
 138 
     | 
    
         
            +
                        name: 'noResultsText',
         
     | 
| 
      
 139 
     | 
    
         
            +
                        label: '无结果时的文本'
         
     | 
| 
      
 140 
     | 
    
         
            +
                      },
         
     | 
| 
      
 141 
     | 
    
         
            +
                      {
         
     | 
| 
      
 142 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 143 
     | 
    
         
            +
                        name: 'hideNodePathLabel',
         
     | 
| 
      
 144 
     | 
    
         
            +
                        label: '隐藏选中节点的祖先节点文本信息',
         
     | 
| 
      
 145 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 146 
     | 
    
         
            +
                        className: 'w-full'
         
     | 
| 
      
 147 
     | 
    
         
            +
                      },
         
     | 
| 
      
 148 
     | 
    
         
            +
                      {
         
     | 
| 
      
 149 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 150 
     | 
    
         
            +
                        name: 'enableNodePath',
         
     | 
| 
      
 151 
     | 
    
         
            +
                        label: '节点路径模式',
         
     | 
| 
      
 152 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 153 
     | 
    
         
            +
                        className: 'w-full'
         
     | 
| 
      
 154 
     | 
    
         
            +
                      },
         
     | 
| 
      
 155 
     | 
    
         
            +
                      {
         
     | 
| 
      
 156 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 157 
     | 
    
         
            +
                        name: 'onlyChildren',
         
     | 
| 
      
 158 
     | 
    
         
            +
                        label: '选中父节点时只使用子节点的值',
         
     | 
| 
      
 159 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 160 
     | 
    
         
            +
                        className: 'w-full'
         
     | 
| 
      
 161 
     | 
    
         
            +
                      },
         
     | 
| 
      
 162 
     | 
    
         
            +
                      {
         
     | 
| 
      
 163 
     | 
    
         
            +
                        type: 'input-text',
         
     | 
| 
      
 164 
     | 
    
         
            +
                        name: 'pathSeparator',
         
     | 
| 
      
 165 
     | 
    
         
            +
                        visibleOn: 'this.enableNodePath',
         
     | 
| 
      
 166 
     | 
    
         
            +
                        label: '节点路径的分隔符'
         
     | 
| 
      
 167 
     | 
    
         
            +
                      },
         
     | 
| 
      
 168 
     | 
    
         
            +
                      getSchemaTpl('borderMode'),
         
     | 
| 
      
 169 
     | 
    
         
            +
                      getSchemaTpl('fieldSet', {
         
     | 
| 
      
 170 
     | 
    
         
            +
                        title: '选项',
         
     | 
| 
      
 171 
     | 
    
         
            +
                        body: [
         
     | 
| 
      
 172 
     | 
    
         
            +
                          {
         
     | 
| 
      
 173 
     | 
    
         
            +
                            $ref: 'options',
         
     | 
| 
      
 174 
     | 
    
         
            +
                            name: 'options'
         
     | 
| 
      
 175 
     | 
    
         
            +
                          },
         
     | 
| 
      
 176 
     | 
    
         
            +
                          getSchemaTpl('api', {
         
     | 
| 
      
 177 
     | 
    
         
            +
                            name: 'source',
         
     | 
| 
      
 178 
     | 
    
         
            +
                            label: '获取选项接口'
         
     | 
| 
      
 179 
     | 
    
         
            +
                          }),
         
     | 
| 
      
 180 
     | 
    
         
            +
                          getSchemaTpl('multiple'),
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
                          {
         
     | 
| 
      
 183 
     | 
    
         
            +
                            name: 'cascade',
         
     | 
| 
      
 184 
     | 
    
         
            +
                            visibleOn: 'data.multiple',
         
     | 
| 
      
 185 
     | 
    
         
            +
                            label: '不自动选中子节点?',
         
     | 
| 
      
 186 
     | 
    
         
            +
                            description: '选中父级时,孩子节点是否自动选中',
         
     | 
| 
      
 187 
     | 
    
         
            +
                            type: 'switch',
         
     | 
| 
      
 188 
     | 
    
         
            +
                            mode: 'inline',
         
     | 
| 
      
 189 
     | 
    
         
            +
                            className: 'w-full'
         
     | 
| 
      
 190 
     | 
    
         
            +
                          },
         
     | 
| 
      
 191 
     | 
    
         
            +
             
     | 
| 
      
 192 
     | 
    
         
            +
                          {
         
     | 
| 
      
 193 
     | 
    
         
            +
                            name: 'withChildren',
         
     | 
| 
      
 194 
     | 
    
         
            +
                            visibleOn: 'data.cascade !== true && data.multiple',
         
     | 
| 
      
 195 
     | 
    
         
            +
                            label: '数值是否携带子节点',
         
     | 
| 
      
 196 
     | 
    
         
            +
                            type: 'switch',
         
     | 
| 
      
 197 
     | 
    
         
            +
                            mode: 'inline',
         
     | 
| 
      
 198 
     | 
    
         
            +
                            className: 'w-full'
         
     | 
| 
      
 199 
     | 
    
         
            +
                          },
         
     | 
| 
      
 200 
     | 
    
         
            +
             
     | 
| 
      
 201 
     | 
    
         
            +
                          getSchemaTpl('joinValues'),
         
     | 
| 
      
 202 
     | 
    
         
            +
                          getSchemaTpl('delimiter'),
         
     | 
| 
      
 203 
     | 
    
         
            +
                          getSchemaTpl('extractValue'),
         
     | 
| 
      
 204 
     | 
    
         
            +
                          getSchemaTpl('autoFill')
         
     | 
| 
      
 205 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 206 
     | 
    
         
            +
                      })
         
     | 
| 
      
 207 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 208 
     | 
    
         
            +
                  },
         
     | 
| 
      
 209 
     | 
    
         
            +
                  {
         
     | 
| 
      
 210 
     | 
    
         
            +
                    title: '外观',
         
     | 
| 
      
 211 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 212 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 213 
     | 
    
         
            +
                        label: '菜单类名',
         
     | 
| 
      
 214 
     | 
    
         
            +
                        name: 'menuClassName'
         
     | 
| 
      
 215 
     | 
    
         
            +
                      })
         
     | 
| 
      
 216 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 217 
     | 
    
         
            +
                  }
         
     | 
| 
      
 218 
     | 
    
         
            +
                ])
         
     | 
| 
      
 219 
     | 
    
         
            +
              ];
         
     | 
| 
      
 220 
     | 
    
         
            +
            }
         
     | 
| 
      
 221 
     | 
    
         
            +
             
     | 
| 
      
 222 
     | 
    
         
            +
            registerEditorPlugin(NestedSelectControlPlugin);
         
     | 
| 
         @@ -0,0 +1,217 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import React from 'react';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {Button} from 'amis';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import omit = require('lodash/omit');
         
     | 
| 
      
 4 
     | 
    
         
            +
            import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
         
     | 
| 
      
 5 
     | 
    
         
            +
            import {
         
     | 
| 
      
 6 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 7 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 8 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 9 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 10 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 11 
     | 
    
         
            +
            import {
         
     | 
| 
      
 12 
     | 
    
         
            +
              BaseEventContext,
         
     | 
| 
      
 13 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 14 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 15 
     | 
    
         
            +
              BasicToolbarItem,
         
     | 
| 
      
 16 
     | 
    
         
            +
              ContextMenuEventContext,
         
     | 
| 
      
 17 
     | 
    
         
            +
              ContextMenuItem,
         
     | 
| 
      
 18 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 19 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 20 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 21 
     | 
    
         
            +
            import {diff} from '../../../src/util';
         
     | 
| 
      
 22 
     | 
    
         
            +
             
     | 
| 
      
 23 
     | 
    
         
            +
            export class PickerControlPlugin extends BasePlugin {
         
     | 
| 
      
 24 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 25 
     | 
    
         
            +
              rendererName = 'picker';
         
     | 
| 
      
 26 
     | 
    
         
            +
              $schema = '/schemas/PickerControlSchema.json';
         
     | 
| 
      
 27 
     | 
    
         
            +
             
     | 
| 
      
 28 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 29 
     | 
    
         
            +
              name = '列表选取';
         
     | 
| 
      
 30 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 31 
     | 
    
         
            +
              icon = 'fa fa-window-restore';
         
     | 
| 
      
 32 
     | 
    
         
            +
              description = `通过<code>pickerSchema</code>配置可供选取的数据源进行选择需要的数据,支持多选`;
         
     | 
| 
      
 33 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/picker';
         
     | 
| 
      
 34 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 35 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 36 
     | 
    
         
            +
                type: 'picker',
         
     | 
| 
      
 37 
     | 
    
         
            +
                label: '列表选取',
         
     | 
| 
      
 38 
     | 
    
         
            +
                name: 'picker',
         
     | 
| 
      
 39 
     | 
    
         
            +
                options: [
         
     | 
| 
      
 40 
     | 
    
         
            +
                  {
         
     | 
| 
      
 41 
     | 
    
         
            +
                    label: '选项A',
         
     | 
| 
      
 42 
     | 
    
         
            +
                    value: 'A'
         
     | 
| 
      
 43 
     | 
    
         
            +
                  },
         
     | 
| 
      
 44 
     | 
    
         
            +
             
     | 
| 
      
 45 
     | 
    
         
            +
                  {
         
     | 
| 
      
 46 
     | 
    
         
            +
                    label: '选项B',
         
     | 
| 
      
 47 
     | 
    
         
            +
                    value: 'B'
         
     | 
| 
      
 48 
     | 
    
         
            +
                  }
         
     | 
| 
      
 49 
     | 
    
         
            +
                ]
         
     | 
| 
      
 50 
     | 
    
         
            +
              };
         
     | 
| 
      
 51 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 52 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 53 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 54 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 55 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 56 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 57 
     | 
    
         
            +
                  {
         
     | 
| 
      
 58 
     | 
    
         
            +
                    ...this.scaffold
         
     | 
| 
      
 59 
     | 
    
         
            +
                  }
         
     | 
| 
      
 60 
     | 
    
         
            +
                ]
         
     | 
| 
      
 61 
     | 
    
         
            +
              };
         
     | 
| 
      
 62 
     | 
    
         
            +
             
     | 
| 
      
 63 
     | 
    
         
            +
              panelTitle = '列表选取';
         
     | 
| 
      
 64 
     | 
    
         
            +
              panelBodyCreator = (context: BaseEventContext) => {
         
     | 
| 
      
 65 
     | 
    
         
            +
                return [
         
     | 
| 
      
 66 
     | 
    
         
            +
                  {
         
     | 
| 
      
 67 
     | 
    
         
            +
                    type: 'switch',
         
     | 
| 
      
 68 
     | 
    
         
            +
                    name: 'embed',
         
     | 
| 
      
 69 
     | 
    
         
            +
                    mode: 'inline',
         
     | 
| 
      
 70 
     | 
    
         
            +
                    className: 'w-full',
         
     | 
| 
      
 71 
     | 
    
         
            +
                    label: '开启内嵌模式'
         
     | 
| 
      
 72 
     | 
    
         
            +
                  },
         
     | 
| 
      
 73 
     | 
    
         
            +
             
     | 
| 
      
 74 
     | 
    
         
            +
                  getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 75 
     | 
    
         
            +
             
     | 
| 
      
 76 
     | 
    
         
            +
                  {
         
     | 
| 
      
 77 
     | 
    
         
            +
                    type: 'input-text',
         
     | 
| 
      
 78 
     | 
    
         
            +
                    name: 'value',
         
     | 
| 
      
 79 
     | 
    
         
            +
                    label: '默认值',
         
     | 
| 
      
 80 
     | 
    
         
            +
                    visibleOn: 'typeof this.value !== "undefined"'
         
     | 
| 
      
 81 
     | 
    
         
            +
                  },
         
     | 
| 
      
 82 
     | 
    
         
            +
             
     | 
| 
      
 83 
     | 
    
         
            +
                  getSchemaTpl('fieldSet', {
         
     | 
| 
      
 84 
     | 
    
         
            +
                    title: '选项',
         
     | 
| 
      
 85 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 86 
     | 
    
         
            +
                      getSchemaTpl('options'),
         
     | 
| 
      
 87 
     | 
    
         
            +
                      getSchemaTpl('api', {
         
     | 
| 
      
 88 
     | 
    
         
            +
                        name: 'source',
         
     | 
| 
      
 89 
     | 
    
         
            +
                        label: '获取选项接口'
         
     | 
| 
      
 90 
     | 
    
         
            +
                      }),
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                      {
         
     | 
| 
      
 93 
     | 
    
         
            +
                        children: (
         
     | 
| 
      
 94 
     | 
    
         
            +
                          <Button
         
     | 
| 
      
 95 
     | 
    
         
            +
                            size="sm"
         
     | 
| 
      
 96 
     | 
    
         
            +
                            level="danger"
         
     | 
| 
      
 97 
     | 
    
         
            +
                            className="m-b"
         
     | 
| 
      
 98 
     | 
    
         
            +
                            onClick={this.editDetail.bind(this, context.id)}
         
     | 
| 
      
 99 
     | 
    
         
            +
                            block
         
     | 
| 
      
 100 
     | 
    
         
            +
                          >
         
     | 
| 
      
 101 
     | 
    
         
            +
                            配置选框详情
         
     | 
| 
      
 102 
     | 
    
         
            +
                          </Button>
         
     | 
| 
      
 103 
     | 
    
         
            +
                        )
         
     | 
| 
      
 104 
     | 
    
         
            +
                      },
         
     | 
| 
      
 105 
     | 
    
         
            +
             
     | 
| 
      
 106 
     | 
    
         
            +
                      {
         
     | 
| 
      
 107 
     | 
    
         
            +
                        label: 'labelTpl',
         
     | 
| 
      
 108 
     | 
    
         
            +
                        type: 'textarea',
         
     | 
| 
      
 109 
     | 
    
         
            +
                        name: 'labelTpl',
         
     | 
| 
      
 110 
     | 
    
         
            +
                        labelRemark: '已选定数据的展示样式',
         
     | 
| 
      
 111 
     | 
    
         
            +
                        description:
         
     | 
| 
      
 112 
     | 
    
         
            +
                          '支持使用 <code>\\${xxx}</code> 来获取变量,或者用 lodash.template 语法来写模板逻辑。<a target="_blank" href="/amis/zh-CN/docs/concepts/template">详情</a>'
         
     | 
| 
      
 113 
     | 
    
         
            +
                      },
         
     | 
| 
      
 114 
     | 
    
         
            +
             
     | 
| 
      
 115 
     | 
    
         
            +
                      {
         
     | 
| 
      
 116 
     | 
    
         
            +
                        type: 'button-group-select',
         
     | 
| 
      
 117 
     | 
    
         
            +
                        name: 'modalMode',
         
     | 
| 
      
 118 
     | 
    
         
            +
                        label: '选框类型',
         
     | 
| 
      
 119 
     | 
    
         
            +
                        value: 'dialog',
         
     | 
| 
      
 120 
     | 
    
         
            +
                        size: 'xs',
         
     | 
| 
      
 121 
     | 
    
         
            +
                        options: [
         
     | 
| 
      
 122 
     | 
    
         
            +
                          {
         
     | 
| 
      
 123 
     | 
    
         
            +
                            label: '弹框',
         
     | 
| 
      
 124 
     | 
    
         
            +
                            value: 'dialog'
         
     | 
| 
      
 125 
     | 
    
         
            +
                          },
         
     | 
| 
      
 126 
     | 
    
         
            +
             
     | 
| 
      
 127 
     | 
    
         
            +
                          {
         
     | 
| 
      
 128 
     | 
    
         
            +
                            label: '抽出式弹框',
         
     | 
| 
      
 129 
     | 
    
         
            +
                            value: 'drawer'
         
     | 
| 
      
 130 
     | 
    
         
            +
                          }
         
     | 
| 
      
 131 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 132 
     | 
    
         
            +
                      },
         
     | 
| 
      
 133 
     | 
    
         
            +
             
     | 
| 
      
 134 
     | 
    
         
            +
                      getSchemaTpl('multiple'),
         
     | 
| 
      
 135 
     | 
    
         
            +
                      getSchemaTpl('joinValues'),
         
     | 
| 
      
 136 
     | 
    
         
            +
                      getSchemaTpl('delimiter'),
         
     | 
| 
      
 137 
     | 
    
         
            +
                      getSchemaTpl('extractValue'),
         
     | 
| 
      
 138 
     | 
    
         
            +
                      getSchemaTpl('autoFill')
         
     | 
| 
      
 139 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 140 
     | 
    
         
            +
                  })
         
     | 
| 
      
 141 
     | 
    
         
            +
                ];
         
     | 
| 
      
 142 
     | 
    
         
            +
              };
         
     | 
| 
      
 143 
     | 
    
         
            +
             
     | 
| 
      
 144 
     | 
    
         
            +
              buildEditorToolbar(
         
     | 
| 
      
 145 
     | 
    
         
            +
                {id, info}: BaseEventContext,
         
     | 
| 
      
 146 
     | 
    
         
            +
                toolbars: Array<BasicToolbarItem>
         
     | 
| 
      
 147 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 148 
     | 
    
         
            +
                if (info.renderer.name === this.rendererName) {
         
     | 
| 
      
 149 
     | 
    
         
            +
                  toolbars.push({
         
     | 
| 
      
 150 
     | 
    
         
            +
                    icon: 'fa fa-expand',
         
     | 
| 
      
 151 
     | 
    
         
            +
                    order: 100,
         
     | 
| 
      
 152 
     | 
    
         
            +
                    tooltip: '配置选框详情',
         
     | 
| 
      
 153 
     | 
    
         
            +
                    onClick: this.editDetail.bind(this, id)
         
     | 
| 
      
 154 
     | 
    
         
            +
                  });
         
     | 
| 
      
 155 
     | 
    
         
            +
                }
         
     | 
| 
      
 156 
     | 
    
         
            +
              }
         
     | 
| 
      
 157 
     | 
    
         
            +
             
     | 
| 
      
 158 
     | 
    
         
            +
              buildEditorContextMenu(
         
     | 
| 
      
 159 
     | 
    
         
            +
                {id, schema, region, info}: ContextMenuEventContext,
         
     | 
| 
      
 160 
     | 
    
         
            +
                menus: Array<ContextMenuItem>
         
     | 
| 
      
 161 
     | 
    
         
            +
              ) {
         
     | 
| 
      
 162 
     | 
    
         
            +
                if (info.renderer.name === this.rendererName) {
         
     | 
| 
      
 163 
     | 
    
         
            +
                  menus.push('|', {
         
     | 
| 
      
 164 
     | 
    
         
            +
                    label: '配置选框详情',
         
     | 
| 
      
 165 
     | 
    
         
            +
                    onSelect: this.editDetail.bind(this, id)
         
     | 
| 
      
 166 
     | 
    
         
            +
                  });
         
     | 
| 
      
 167 
     | 
    
         
            +
                }
         
     | 
| 
      
 168 
     | 
    
         
            +
              }
         
     | 
| 
      
 169 
     | 
    
         
            +
             
     | 
| 
      
 170 
     | 
    
         
            +
              editDetail(id: string) {
         
     | 
| 
      
 171 
     | 
    
         
            +
                const manager = this.manager;
         
     | 
| 
      
 172 
     | 
    
         
            +
                const store = manager.store;
         
     | 
| 
      
 173 
     | 
    
         
            +
                const node = store.getNodeById(id)!;
         
     | 
| 
      
 174 
     | 
    
         
            +
                const value = store.getValueOf(id);
         
     | 
| 
      
 175 
     | 
    
         
            +
             
     | 
| 
      
 176 
     | 
    
         
            +
                if (!node || !value) {
         
     | 
| 
      
 177 
     | 
    
         
            +
                  return;
         
     | 
| 
      
 178 
     | 
    
         
            +
                }
         
     | 
| 
      
 179 
     | 
    
         
            +
             
     | 
| 
      
 180 
     | 
    
         
            +
                const component = node.getComponent();
         
     | 
| 
      
 181 
     | 
    
         
            +
             
     | 
| 
      
 182 
     | 
    
         
            +
                const schema = {
         
     | 
| 
      
 183 
     | 
    
         
            +
                  type: 'crud',
         
     | 
| 
      
 184 
     | 
    
         
            +
                  mode: 'list',
         
     | 
| 
      
 185 
     | 
    
         
            +
                  ...(value.pickerSchema || {
         
     | 
| 
      
 186 
     | 
    
         
            +
                    listItem: {
         
     | 
| 
      
 187 
     | 
    
         
            +
                      title: '${label}'
         
     | 
| 
      
 188 
     | 
    
         
            +
                    }
         
     | 
| 
      
 189 
     | 
    
         
            +
                  }),
         
     | 
| 
      
 190 
     | 
    
         
            +
                  api: value.source,
         
     | 
| 
      
 191 
     | 
    
         
            +
                  pickerMode: true,
         
     | 
| 
      
 192 
     | 
    
         
            +
                  multiple: value.multiple
         
     | 
| 
      
 193 
     | 
    
         
            +
                };
         
     | 
| 
      
 194 
     | 
    
         
            +
             
     | 
| 
      
 195 
     | 
    
         
            +
                this.manager.openSubEditor({
         
     | 
| 
      
 196 
     | 
    
         
            +
                  title: '配置选框详情',
         
     | 
| 
      
 197 
     | 
    
         
            +
                  value: schema,
         
     | 
| 
      
 198 
     | 
    
         
            +
                  data: {options: component.props.options},
         
     | 
| 
      
 199 
     | 
    
         
            +
                  onChange: newValue => {
         
     | 
| 
      
 200 
     | 
    
         
            +
                    newValue = {
         
     | 
| 
      
 201 
     | 
    
         
            +
                      ...value,
         
     | 
| 
      
 202 
     | 
    
         
            +
                      pickerSchema: {...newValue},
         
     | 
| 
      
 203 
     | 
    
         
            +
                      source: newValue.api
         
     | 
| 
      
 204 
     | 
    
         
            +
                    };
         
     | 
| 
      
 205 
     | 
    
         
            +
             
     | 
| 
      
 206 
     | 
    
         
            +
                    delete newValue.pickerSchema.api;
         
     | 
| 
      
 207 
     | 
    
         
            +
                    delete newValue.pickerSchema.type;
         
     | 
| 
      
 208 
     | 
    
         
            +
                    delete newValue.pickerSchema.pickerMode;
         
     | 
| 
      
 209 
     | 
    
         
            +
                    delete newValue.pickerSchema.multiple;
         
     | 
| 
      
 210 
     | 
    
         
            +
             
     | 
| 
      
 211 
     | 
    
         
            +
                    manager.panelChangeValue(newValue, diff(value, newValue));
         
     | 
| 
      
 212 
     | 
    
         
            +
                  }
         
     | 
| 
      
 213 
     | 
    
         
            +
                });
         
     | 
| 
      
 214 
     | 
    
         
            +
              }
         
     | 
| 
      
 215 
     | 
    
         
            +
            }
         
     | 
| 
      
 216 
     | 
    
         
            +
             
     | 
| 
      
 217 
     | 
    
         
            +
            registerEditorPlugin(PickerControlPlugin);
         
     | 
| 
         @@ -0,0 +1,130 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            import {relativeValueRe} from 'amis';
         
     | 
| 
      
 2 
     | 
    
         
            +
            import {availableLanguages} from 'amis/lib/renderers/Form/Editor';
         
     | 
| 
      
 3 
     | 
    
         
            +
            import {
         
     | 
| 
      
 4 
     | 
    
         
            +
              defaultValue,
         
     | 
| 
      
 5 
     | 
    
         
            +
              getSchemaTpl,
         
     | 
| 
      
 6 
     | 
    
         
            +
              valuePipeOut
         
     | 
| 
      
 7 
     | 
    
         
            +
            } from '../../component/schemaTpl';
         
     | 
| 
      
 8 
     | 
    
         
            +
            import {registerEditorPlugin} from '../../manager';
         
     | 
| 
      
 9 
     | 
    
         
            +
            import {
         
     | 
| 
      
 10 
     | 
    
         
            +
              BasePlugin,
         
     | 
| 
      
 11 
     | 
    
         
            +
              BasicSubRenderInfo,
         
     | 
| 
      
 12 
     | 
    
         
            +
              RendererEventContext,
         
     | 
| 
      
 13 
     | 
    
         
            +
              SubRendererInfo
         
     | 
| 
      
 14 
     | 
    
         
            +
            } from '../../plugin';
         
     | 
| 
      
 15 
     | 
    
         
            +
            import flatten = require('lodash/flatten');
         
     | 
| 
      
 16 
     | 
    
         
            +
             
     | 
| 
      
 17 
     | 
    
         
            +
            export class RadiosControlPlugin extends BasePlugin {
         
     | 
| 
      
 18 
     | 
    
         
            +
              // 关联渲染器名字
         
     | 
| 
      
 19 
     | 
    
         
            +
              rendererName = 'radios';
         
     | 
| 
      
 20 
     | 
    
         
            +
              $schema = '/schemas/RadiosControlSchema.json';
         
     | 
| 
      
 21 
     | 
    
         
            +
             
     | 
| 
      
 22 
     | 
    
         
            +
              order = -460;
         
     | 
| 
      
 23 
     | 
    
         
            +
             
     | 
| 
      
 24 
     | 
    
         
            +
              // 组件名称
         
     | 
| 
      
 25 
     | 
    
         
            +
              name = '单选框';
         
     | 
| 
      
 26 
     | 
    
         
            +
              isBaseComponent = true;
         
     | 
| 
      
 27 
     | 
    
         
            +
              icon = 'fa fa-dot-circle-o';
         
     | 
| 
      
 28 
     | 
    
         
            +
              description = `通过<code>options</code>配置选项,可通过<code>source</code>拉取选项`;
         
     | 
| 
      
 29 
     | 
    
         
            +
              docLink = '/amis/zh-CN/components/form/radios';
         
     | 
| 
      
 30 
     | 
    
         
            +
              tags = ['表单项'];
         
     | 
| 
      
 31 
     | 
    
         
            +
              scaffold = {
         
     | 
| 
      
 32 
     | 
    
         
            +
                type: 'radios',
         
     | 
| 
      
 33 
     | 
    
         
            +
                label: '单选框',
         
     | 
| 
      
 34 
     | 
    
         
            +
                name: 'radios',
         
     | 
| 
      
 35 
     | 
    
         
            +
                options: [
         
     | 
| 
      
 36 
     | 
    
         
            +
                  {
         
     | 
| 
      
 37 
     | 
    
         
            +
                    label: '选项A',
         
     | 
| 
      
 38 
     | 
    
         
            +
                    value: 'A'
         
     | 
| 
      
 39 
     | 
    
         
            +
                  },
         
     | 
| 
      
 40 
     | 
    
         
            +
             
     | 
| 
      
 41 
     | 
    
         
            +
                  {
         
     | 
| 
      
 42 
     | 
    
         
            +
                    label: '选项B',
         
     | 
| 
      
 43 
     | 
    
         
            +
                    value: 'B'
         
     | 
| 
      
 44 
     | 
    
         
            +
                  }
         
     | 
| 
      
 45 
     | 
    
         
            +
                ]
         
     | 
| 
      
 46 
     | 
    
         
            +
              };
         
     | 
| 
      
 47 
     | 
    
         
            +
              previewSchema: any = {
         
     | 
| 
      
 48 
     | 
    
         
            +
                type: 'form',
         
     | 
| 
      
 49 
     | 
    
         
            +
                className: 'text-left',
         
     | 
| 
      
 50 
     | 
    
         
            +
                mode: 'horizontal',
         
     | 
| 
      
 51 
     | 
    
         
            +
                wrapWithPanel: false,
         
     | 
| 
      
 52 
     | 
    
         
            +
                body: [
         
     | 
| 
      
 53 
     | 
    
         
            +
                  {
         
     | 
| 
      
 54 
     | 
    
         
            +
                    ...this.scaffold,
         
     | 
| 
      
 55 
     | 
    
         
            +
                    value: 'A'
         
     | 
| 
      
 56 
     | 
    
         
            +
                  }
         
     | 
| 
      
 57 
     | 
    
         
            +
                ]
         
     | 
| 
      
 58 
     | 
    
         
            +
              };
         
     | 
| 
      
 59 
     | 
    
         
            +
             
     | 
| 
      
 60 
     | 
    
         
            +
              panelTitle = '单选框';
         
     | 
| 
      
 61 
     | 
    
         
            +
              panelBody = [
         
     | 
| 
      
 62 
     | 
    
         
            +
                getSchemaTpl('tabs', [
         
     | 
| 
      
 63 
     | 
    
         
            +
                  {
         
     | 
| 
      
 64 
     | 
    
         
            +
                    title: '常规',
         
     | 
| 
      
 65 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 66 
     | 
    
         
            +
                      getSchemaTpl('switchDefaultValue'),
         
     | 
| 
      
 67 
     | 
    
         
            +
                      {
         
     | 
| 
      
 68 
     | 
    
         
            +
                        type: 'radios',
         
     | 
| 
      
 69 
     | 
    
         
            +
                        name: 'value',
         
     | 
| 
      
 70 
     | 
    
         
            +
                        label: '默认值',
         
     | 
| 
      
 71 
     | 
    
         
            +
                        source: '${options}',
         
     | 
| 
      
 72 
     | 
    
         
            +
                        visibleOn: 'typeof this.value !== "undefined"',
         
     | 
| 
      
 73 
     | 
    
         
            +
                        multiple: true
         
     | 
| 
      
 74 
     | 
    
         
            +
                      },
         
     | 
| 
      
 75 
     | 
    
         
            +
                      {
         
     | 
| 
      
 76 
     | 
    
         
            +
                        label: '是否默认选择第一个',
         
     | 
| 
      
 77 
     | 
    
         
            +
                        name: 'selectFirst',
         
     | 
| 
      
 78 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 79 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 80 
     | 
    
         
            +
                        className: 'w-full'
         
     | 
| 
      
 81 
     | 
    
         
            +
                      },
         
     | 
| 
      
 82 
     | 
    
         
            +
                      getSchemaTpl('fieldSet', {
         
     | 
| 
      
 83 
     | 
    
         
            +
                        title: '选项',
         
     | 
| 
      
 84 
     | 
    
         
            +
                        body: [
         
     | 
| 
      
 85 
     | 
    
         
            +
                          getSchemaTpl('options'),
         
     | 
| 
      
 86 
     | 
    
         
            +
                          getSchemaTpl('source'),
         
     | 
| 
      
 87 
     | 
    
         
            +
             
     | 
| 
      
 88 
     | 
    
         
            +
                          getSchemaTpl('joinValues', {
         
     | 
| 
      
 89 
     | 
    
         
            +
                            visibleOn: true
         
     | 
| 
      
 90 
     | 
    
         
            +
                          }),
         
     | 
| 
      
 91 
     | 
    
         
            +
             
     | 
| 
      
 92 
     | 
    
         
            +
                          getSchemaTpl('extractValue'),
         
     | 
| 
      
 93 
     | 
    
         
            +
                          getSchemaTpl('autoFill')
         
     | 
| 
      
 94 
     | 
    
         
            +
                        ]
         
     | 
| 
      
 95 
     | 
    
         
            +
                      })
         
     | 
| 
      
 96 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 97 
     | 
    
         
            +
                  },
         
     | 
| 
      
 98 
     | 
    
         
            +
                  {
         
     | 
| 
      
 99 
     | 
    
         
            +
                    title: '外观',
         
     | 
| 
      
 100 
     | 
    
         
            +
                    body: [
         
     | 
| 
      
 101 
     | 
    
         
            +
                      {
         
     | 
| 
      
 102 
     | 
    
         
            +
                        label: '选项在一行显示',
         
     | 
| 
      
 103 
     | 
    
         
            +
                        name: 'inline',
         
     | 
| 
      
 104 
     | 
    
         
            +
                        type: 'switch',
         
     | 
| 
      
 105 
     | 
    
         
            +
                        visibleOn: 'data.mode != "inline"',
         
     | 
| 
      
 106 
     | 
    
         
            +
                        mode: 'inline',
         
     | 
| 
      
 107 
     | 
    
         
            +
                        className: 'w-full',
         
     | 
| 
      
 108 
     | 
    
         
            +
                        pipeIn: defaultValue(true)
         
     | 
| 
      
 109 
     | 
    
         
            +
                      },
         
     | 
| 
      
 110 
     | 
    
         
            +
                      {
         
     | 
| 
      
 111 
     | 
    
         
            +
                        label: '每行显示多少列',
         
     | 
| 
      
 112 
     | 
    
         
            +
                        name: 'columnsCount',
         
     | 
| 
      
 113 
     | 
    
         
            +
                        hiddenOn:
         
     | 
| 
      
 114 
     | 
    
         
            +
                          'typeof data.inline === "undefined" || data.inline === true',
         
     | 
| 
      
 115 
     | 
    
         
            +
                        type: 'input-range',
         
     | 
| 
      
 116 
     | 
    
         
            +
                        min: 1,
         
     | 
| 
      
 117 
     | 
    
         
            +
                        max: 6,
         
     | 
| 
      
 118 
     | 
    
         
            +
                        pipeIn: defaultValue(1)
         
     | 
| 
      
 119 
     | 
    
         
            +
                      },
         
     | 
| 
      
 120 
     | 
    
         
            +
                      getSchemaTpl('className', {
         
     | 
| 
      
 121 
     | 
    
         
            +
                        label: '单个 Radio 的 CSS 类名',
         
     | 
| 
      
 122 
     | 
    
         
            +
                        name: 'itemClassName'
         
     | 
| 
      
 123 
     | 
    
         
            +
                      })
         
     | 
| 
      
 124 
     | 
    
         
            +
                    ]
         
     | 
| 
      
 125 
     | 
    
         
            +
                  }
         
     | 
| 
      
 126 
     | 
    
         
            +
                ])
         
     | 
| 
      
 127 
     | 
    
         
            +
              ];
         
     | 
| 
      
 128 
     | 
    
         
            +
            }
         
     | 
| 
      
 129 
     | 
    
         
            +
             
     | 
| 
      
 130 
     | 
    
         
            +
            registerEditorPlugin(RadiosControlPlugin);
         
     |