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.
Files changed (195) hide show
  1. package/dist/component/Breadcrumb.d.ts +23 -2
  2. package/dist/component/Editor.d.ts +19 -0
  3. package/dist/component/Panel/RenderersPanel.d.ts +1 -2
  4. package/dist/component/RegionWrapper.d.ts +14 -7
  5. package/dist/component/RendererThumb.d.ts +5 -5
  6. package/dist/component/VRenderer.d.ts +4 -0
  7. package/dist/component/base/SearchCustomRendererPanel.d.ts +15 -0
  8. package/dist/component/base/SearchPanel.d.ts +83 -0
  9. package/dist/component/base/SearchRendererPanel.d.ts +2 -42
  10. package/dist/exports.min.js +1 -1
  11. package/dist/index.d.ts +4 -1
  12. package/dist/index.min.js +1 -1
  13. package/dist/manager.d.ts +14 -3
  14. package/dist/plugin/Card.d.ts +1 -0
  15. package/dist/plugin/Cards.d.ts +1 -0
  16. package/dist/plugin/Carousel.d.ts +1 -0
  17. package/dist/plugin/Chart.d.ts +1 -0
  18. package/dist/plugin/Collapse.d.ts +1 -0
  19. package/dist/plugin/Custom.d.ts +3 -0
  20. package/dist/plugin/CustomRegion.d.ts +43 -0
  21. package/dist/plugin/Flex.d.ts +1 -0
  22. package/dist/plugin/Form/Control.d.ts +1 -0
  23. package/dist/plugin/Form/InputURL.d.ts +1 -0
  24. package/dist/plugin/Grid.d.ts +1 -0
  25. package/dist/plugin/HBox.d.ts +1 -0
  26. package/dist/plugin/Json.d.ts +1 -0
  27. package/dist/plugin/List.d.ts +1 -0
  28. package/dist/plugin/Mapping.d.ts +1 -0
  29. package/dist/plugin/Markdown.d.ts +1 -0
  30. package/dist/plugin/Nav.d.ts +1 -0
  31. package/dist/plugin/Panel/Outline.d.ts +8 -0
  32. package/dist/plugin/Progress.d.ts +1 -0
  33. package/dist/plugin/QRCode.d.ts +1 -0
  34. package/dist/plugin/Reset.d.ts +0 -1
  35. package/dist/plugin/Service.d.ts +1 -0
  36. package/dist/plugin/Sparkline.d.ts +1 -0
  37. package/dist/plugin/Status.d.ts +1 -0
  38. package/dist/plugin/Steps.d.ts +1 -0
  39. package/dist/plugin/Submit.d.ts +0 -1
  40. package/dist/plugin/TableView.d.ts +1 -0
  41. package/dist/plugin/Tasks.d.ts +1 -0
  42. package/dist/plugin/TooltipWrapper.d.ts +1 -0
  43. package/dist/plugin/Video.d.ts +1 -0
  44. package/dist/plugin/WebComponent.d.ts +1 -0
  45. package/dist/plugin/Wrapper.d.ts +1 -0
  46. package/dist/plugin.d.ts +2 -2
  47. package/dist/store/editor.d.ts +20 -2
  48. package/dist/store/node.d.ts +6 -0
  49. package/dist/style.css +1 -1
  50. package/dist/util.d.ts +7 -2
  51. package/package.json +6 -3
  52. package/src/component/schemaTpl.tsx +2155 -0
  53. package/src/plugin/.DS_Store +0 -0
  54. package/src/plugin/Alert.tsx +87 -0
  55. package/src/plugin/AnchorNav.tsx +233 -0
  56. package/src/plugin/Audio.tsx +161 -0
  57. package/src/plugin/Avatar.tsx +77 -0
  58. package/src/plugin/Breadcrumb.tsx +107 -0
  59. package/src/plugin/Button.tsx +283 -0
  60. package/src/plugin/ButtonGroup.tsx +88 -0
  61. package/src/plugin/ButtonToolbar.tsx +89 -0
  62. package/src/plugin/CRUD.tsx +1832 -0
  63. package/src/plugin/Card.tsx +290 -0
  64. package/src/plugin/Cards.tsx +315 -0
  65. package/src/plugin/Carousel.tsx +386 -0
  66. package/src/plugin/Chart.tsx +218 -0
  67. package/src/plugin/CodeView.tsx +60 -0
  68. package/src/plugin/Collapse.tsx +143 -0
  69. package/src/plugin/CollapseGroup.tsx +167 -0
  70. package/src/plugin/Container.tsx +44 -0
  71. package/src/plugin/Custom.tsx +128 -0
  72. package/src/plugin/CustomRegion.tsx +150 -0
  73. package/src/plugin/Date.tsx +81 -0
  74. package/src/plugin/Datetime.tsx +75 -0
  75. package/src/plugin/Dialog.tsx +178 -0
  76. package/src/plugin/Divider.tsx +36 -0
  77. package/src/plugin/Drawer.tsx +217 -0
  78. package/src/plugin/DropDownButton.tsx +234 -0
  79. package/src/plugin/Each.tsx +152 -0
  80. package/src/plugin/ErrorRenderer.tsx +15 -0
  81. package/src/plugin/Flex.tsx +156 -0
  82. package/src/plugin/Form/ButtonGroupSelect.tsx +86 -0
  83. package/src/plugin/Form/ButtonToolbar.tsx +121 -0
  84. package/src/plugin/Form/ChainedSelect.tsx +70 -0
  85. package/src/plugin/Form/Checkbox.tsx +87 -0
  86. package/src/plugin/Form/Checkboxes.tsx +167 -0
  87. package/src/plugin/Form/CodeEditor.tsx +91 -0
  88. package/src/plugin/Form/Combo.tsx +582 -0
  89. package/src/plugin/Form/ConditionBuilder.tsx +324 -0
  90. package/src/plugin/Form/Control.tsx +139 -0
  91. package/src/plugin/Form/DiffEditor.tsx +117 -0
  92. package/src/plugin/Form/FieldSet.tsx +175 -0
  93. package/src/plugin/Form/Form.tsx +692 -0
  94. package/src/plugin/Form/Formula.tsx +91 -0
  95. package/src/plugin/Form/Group.tsx +300 -0
  96. package/src/plugin/Form/Hidden.tsx +56 -0
  97. package/src/plugin/Form/InputArray.tsx +228 -0
  98. package/src/plugin/Form/InputCity.tsx +93 -0
  99. package/src/plugin/Form/InputColor.tsx +123 -0
  100. package/src/plugin/Form/InputDate.tsx +175 -0
  101. package/src/plugin/Form/InputDateRange.tsx +225 -0
  102. package/src/plugin/Form/InputDateTime.tsx +183 -0
  103. package/src/plugin/Form/InputDateTimeRange.tsx +221 -0
  104. package/src/plugin/Form/InputEmail.tsx +33 -0
  105. package/src/plugin/Form/InputExcel.tsx +85 -0
  106. package/src/plugin/Form/InputFile.tsx +228 -0
  107. package/src/plugin/Form/InputGroup.tsx +105 -0
  108. package/src/plugin/Form/InputImage.tsx +277 -0
  109. package/src/plugin/Form/InputKV.tsx +72 -0
  110. package/src/plugin/Form/InputMonth.tsx +35 -0
  111. package/src/plugin/Form/InputMonthRange.tsx +195 -0
  112. package/src/plugin/Form/InputNumber.tsx +97 -0
  113. package/src/plugin/Form/InputPassword.tsx +33 -0
  114. package/src/plugin/Form/InputQuarter.tsx +35 -0
  115. package/src/plugin/Form/InputQuarterRange.tsx +195 -0
  116. package/src/plugin/Form/InputRange.tsx +121 -0
  117. package/src/plugin/Form/InputRating.tsx +78 -0
  118. package/src/plugin/Form/InputRepeat.tsx +69 -0
  119. package/src/plugin/Form/InputRichText.tsx +197 -0
  120. package/src/plugin/Form/InputSubForm.tsx +198 -0
  121. package/src/plugin/Form/InputTable.tsx +434 -0
  122. package/src/plugin/Form/InputTag.tsx +81 -0
  123. package/src/plugin/Form/InputText.tsx +186 -0
  124. package/src/plugin/Form/InputTime.tsx +95 -0
  125. package/src/plugin/Form/InputTree.tsx +240 -0
  126. package/src/plugin/Form/InputURL.tsx +34 -0
  127. package/src/plugin/Form/InputYear.tsx +35 -0
  128. package/src/plugin/Form/Item.tsx +325 -0
  129. package/src/plugin/Form/ListSelect.tsx +84 -0
  130. package/src/plugin/Form/LocationPicker.tsx +75 -0
  131. package/src/plugin/Form/MatrixCheckboxes.tsx +147 -0
  132. package/src/plugin/Form/NestedSelect.tsx +222 -0
  133. package/src/plugin/Form/Picker.tsx +217 -0
  134. package/src/plugin/Form/Radios.tsx +130 -0
  135. package/src/plugin/Form/Select.tsx +216 -0
  136. package/src/plugin/Form/Static.tsx +335 -0
  137. package/src/plugin/Form/Switch.tsx +116 -0
  138. package/src/plugin/Form/TabsTransfer.tsx +270 -0
  139. package/src/plugin/Form/Textarea.tsx +94 -0
  140. package/src/plugin/Form/Transfer.tsx +379 -0
  141. package/src/plugin/Form/TreeSelect.tsx +263 -0
  142. package/src/plugin/Form/UUID.tsx +48 -0
  143. package/src/plugin/Grid.tsx +799 -0
  144. package/src/plugin/HBox.tsx +727 -0
  145. package/src/plugin/IFrame.tsx +72 -0
  146. package/src/plugin/Image.tsx +318 -0
  147. package/src/plugin/Images.tsx +238 -0
  148. package/src/plugin/Json.tsx +76 -0
  149. package/src/plugin/Link.tsx +95 -0
  150. package/src/plugin/List.tsx +278 -0
  151. package/src/plugin/ListItem.tsx +233 -0
  152. package/src/plugin/Log.tsx +52 -0
  153. package/src/plugin/Mapping.tsx +156 -0
  154. package/src/plugin/Markdown.tsx +47 -0
  155. package/src/plugin/Nav.tsx +186 -0
  156. package/src/plugin/Operation.tsx +97 -0
  157. package/src/plugin/Others/Action.tsx +428 -0
  158. package/src/plugin/Others/BasicToolbar.tsx +591 -0
  159. package/src/plugin/Others/DataDebug.tsx +134 -0
  160. package/src/plugin/Others/TableCell.tsx +480 -0
  161. package/src/plugin/Others/Unknown.tsx +37 -0
  162. package/src/plugin/Page.tsx +308 -0
  163. package/src/plugin/Panel/AvailableRenderers.tsx +41 -0
  164. package/src/plugin/Panel/Code.tsx +44 -0
  165. package/src/plugin/Panel/Name.tsx +26 -0
  166. package/src/plugin/Panel/Outline.tsx +40 -0
  167. package/src/plugin/Panel.tsx +243 -0
  168. package/src/plugin/Plain.tsx +91 -0
  169. package/src/plugin/Progress.tsx +132 -0
  170. package/src/plugin/Property.tsx +139 -0
  171. package/src/plugin/QRCode.tsx +98 -0
  172. package/src/plugin/Reset.tsx +23 -0
  173. package/src/plugin/Service.tsx +167 -0
  174. package/src/plugin/Sparkline.tsx +40 -0
  175. package/src/plugin/Status.tsx +78 -0
  176. package/src/plugin/Steps.tsx +140 -0
  177. package/src/plugin/Submit.tsx +23 -0
  178. package/src/plugin/Table.tsx +440 -0
  179. package/src/plugin/TableView.tsx +711 -0
  180. package/src/plugin/Tabs.tsx +364 -0
  181. package/src/plugin/Tasks.tsx +276 -0
  182. package/src/plugin/Time.tsx +75 -0
  183. package/src/plugin/TooltipWrapper.tsx +193 -0
  184. package/src/plugin/Tpl.tsx +162 -0
  185. package/src/plugin/Video.tsx +160 -0
  186. package/src/plugin/WebComponent.tsx +56 -0
  187. package/src/plugin/Wizard.tsx +743 -0
  188. package/src/plugin/Wrapper.tsx +107 -0
  189. package/src/plugin.ts +1046 -0
  190. package/dist/150a58f3318ca7541ed9.png +0 -0
  191. package/dist/471adb97c322b226e589.png +0 -0
  192. package/dist/4de5f42360bc5946c3c2.png +0 -0
  193. package/dist/4e9968bba3855f088fed.png +0 -0
  194. package/dist/7f09c38ebc687fea847a.png +0 -0
  195. package/dist/c94073576487510314ea.png +0 -0
@@ -5,8 +5,29 @@ export interface BreadcrumbProps {
5
5
  store: EditorStoreType;
6
6
  manager: EditorManager;
7
7
  }
8
- export default class Breadcrumb extends React.Component<BreadcrumbProps> {
8
+ interface BreadcrumbStates {
9
+ showLeftScrollBtn: boolean;
10
+ showRightScrollBtn: boolean;
11
+ }
12
+ export default class Breadcrumb extends React.Component<BreadcrumbProps, BreadcrumbStates> {
13
+ readonly breadcrumbRef: React.RefObject<HTMLDivElement>;
14
+ readonly bcnContentRef: React.RefObject<HTMLDivElement>;
15
+ currentBreadcrumb: HTMLElement;
16
+ unReaction: () => void;
17
+ unSensor?: () => void;
18
+ constructor(props: any);
19
+ componentDidMount(): void;
20
+ componentWillUnmount(): void;
21
+ refreshHandleScroll(resetScroll?: boolean): void;
22
+ getCurBreadcrumb(): HTMLDivElement | null;
23
+ getBreadcrumbContainer(): HTMLDivElement | null;
24
+ getScrollLeft(): string;
25
+ toNumber(pxStr: string): number;
26
+ HandleScroll(resetScroll?: boolean): void;
27
+ handleScrollToLeft(): void;
28
+ handleScrollToRight(): void;
9
29
  handleClick(e: React.MouseEvent<HTMLAnchorElement>): void;
10
30
  handleMouseEnter(e: React.MouseEvent<HTMLAnchorElement>): void;
11
- render(): JSX.Element | null;
31
+ render(): JSX.Element;
12
32
  }
33
+ export {};
@@ -38,6 +38,10 @@ export interface EditorProps extends PluginEventListener {
38
38
  previewProps?: any;
39
39
  iframeUrl?: string;
40
40
  isHiddenProps?: (key: string) => boolean;
41
+ onUndo?: () => void;
42
+ onRedo?: () => void;
43
+ onSave?: () => void;
44
+ onPreview?: (preview: boolean) => void;
41
45
  }
42
46
  export default class Editor extends Component<EditorProps> {
43
47
  readonly store: EditorStoreType;
@@ -45,6 +49,7 @@ export default class Editor extends Component<EditorProps> {
45
49
  readonly mainRef: React.RefObject<HTMLDivElement>;
46
50
  unReaction: () => void;
47
51
  lastResult: any;
52
+ curCopySchemaData: any;
48
53
  static defaultProps: {
49
54
  autoFocus: boolean;
50
55
  };
@@ -52,11 +57,25 @@ export default class Editor extends Component<EditorProps> {
52
57
  constructor(props: EditorProps);
53
58
  componentDidUpdate(prevProps: EditorProps): void;
54
59
  componentWillUnmount(): void;
60
+ handleKeyDown(e: KeyboardEvent): void;
55
61
  handleContextMenu(e: React.MouseEvent<HTMLElement>): void;
56
62
  canUndo(): boolean;
57
63
  canRedo(): boolean;
58
64
  undo(): void;
59
65
  redo(): void;
66
+ save(): void;
67
+ preview(): void;
68
+ /**
69
+ * 复制的内容以变量的形式存放
70
+ * 备注1: 系统的复制&粘贴需要开启https服务才有效,所有这里改用内存形式实现
71
+ * 备注2: 此方法不鞥实现跨页面复制&粘贴能力
72
+ * 备注3: 后续需要支持下跨页面跨浏览器复制&粘贴能力
73
+ */
74
+ copy(): void;
75
+ /**
76
+ * 粘贴上一次复制的内容
77
+ */
78
+ paste(): void;
60
79
  getToolbarContainer(): HTMLDivElement | null;
61
80
  render(): JSX.Element;
62
81
  }
@@ -8,8 +8,7 @@ declare type PanelProps = {
8
8
  groupedRenderers: {
9
9
  [propName: string]: Array<SubRendererInfo>;
10
10
  };
11
- renderersPanelUUID: string;
12
- isShowSearchRenderer?: boolean;
11
+ searchRendererType: string;
13
12
  className?: string;
14
13
  };
15
14
  declare type PanelStates = {
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
2
  import { EditorManager } from '../manager';
3
- import { RegionConfig } from '../plugin';
3
+ import { RegionConfig, RendererInfo } from '../plugin';
4
4
  import { EditorStoreType } from '../store/editor';
5
5
  import { EditorNodeType } from '../store/node';
6
6
  export interface RegionWrapperProps {
@@ -13,6 +13,8 @@ export interface RegionWrapperProps {
13
13
  manager: EditorManager;
14
14
  rendererName?: string;
15
15
  regionConfig: RegionConfig;
16
+ node?: EditorNodeType;
17
+ $$editor?: RendererInfo;
16
18
  }
17
19
  /**
18
20
  * 1.DOM标记 添加 data-region、data-region-host 和 data-renderer 属性
@@ -44,12 +46,14 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> {
44
46
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
45
47
  getData: import("mobx-state-tree").IType<() => any, () => any, () => any>;
46
48
  } & {
47
- readonly info: import("../plugin").RendererInfo;
48
- setInfo(value: import("../plugin").RendererInfo): void;
49
+ readonly info: RendererInfo;
50
+ setInfo(value: RendererInfo): void;
49
51
  readonly isVitualRenderer: boolean;
50
52
  readonly clickable: boolean;
51
53
  readonly draggable: boolean;
52
54
  readonly moveable: boolean;
55
+ readonly canMoveUp: boolean;
56
+ readonly canMoveDown: boolean;
53
57
  readonly removable: boolean;
54
58
  readonly duplicatable: boolean;
55
59
  readonly replaceable: boolean;
@@ -77,7 +81,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> {
77
81
  label: string;
78
82
  path: string;
79
83
  isCommonConfig?: boolean | undefined;
80
- info?: import("../plugin").RendererInfo | undefined;
84
+ info?: RendererInfo | undefined;
81
85
  region?: string | undefined;
82
86
  getData?: (() => any) | undefined;
83
87
  preferTag?: string | undefined;
@@ -122,12 +126,14 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> {
122
126
  }, {
123
127
  getData: import("mobx-state-tree").IType<() => any, () => any, () => any>;
124
128
  } & {
125
- readonly info: import("../plugin").RendererInfo;
126
- setInfo(value: import("../plugin").RendererInfo): void;
129
+ readonly info: RendererInfo;
130
+ setInfo(value: RendererInfo): void;
127
131
  readonly isVitualRenderer: boolean;
128
132
  readonly clickable: boolean;
129
133
  readonly draggable: boolean;
130
134
  readonly moveable: boolean;
135
+ readonly canMoveUp: boolean;
136
+ readonly canMoveDown: boolean;
131
137
  readonly removable: boolean;
132
138
  readonly duplicatable: boolean;
133
139
  readonly replaceable: boolean;
@@ -155,7 +161,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> {
155
161
  label: string;
156
162
  path: string;
157
163
  isCommonConfig?: boolean | undefined;
158
- info?: import("../plugin").RendererInfo | undefined;
164
+ info?: RendererInfo | undefined;
159
165
  region?: string | undefined;
160
166
  getData?: (() => any) | undefined;
161
167
  preferTag?: string | undefined;
@@ -176,6 +182,7 @@ export declare class RegionWrapper extends React.Component<RegionWrapperProps> {
176
182
  setWidthMutable(value: any): void;
177
183
  setHeightMutable(value: any): void;
178
184
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | null>;
185
+ parentNode: EditorNodeType;
179
186
  editorNode: EditorNodeType;
180
187
  UNSAFE_componentWillMount(): void;
181
188
  componentDidMount(): void;
@@ -5,14 +5,14 @@ interface ThumbProps {
5
5
  theme?: string;
6
6
  env: any;
7
7
  }
8
- export declare class RendererThumb extends React.Component<ThumbProps> {
8
+ interface ThumbStates {
9
+ scale: Boolean;
10
+ }
11
+ export declare class RendererThumb extends React.Component<ThumbProps, ThumbStates> {
9
12
  ref: HTMLDivElement;
10
13
  unSensor: Function;
11
- state: {
12
- scale: boolean;
13
- };
14
+ constructor(props: ThumbProps);
14
15
  env: any;
15
- UNSAFE_componentWillMount(): void;
16
16
  componentWillUnmount(): void;
17
17
  rootRef(ref: HTMLDivElement): void;
18
18
  syncHeight(): void;
@@ -38,6 +38,8 @@ export declare class VRenderer extends React.Component<VRendererProps> {
38
38
  readonly clickable: boolean;
39
39
  readonly draggable: boolean;
40
40
  readonly moveable: boolean;
41
+ readonly canMoveUp: boolean;
42
+ readonly canMoveDown: boolean;
41
43
  readonly removable: boolean;
42
44
  readonly duplicatable: boolean;
43
45
  readonly replaceable: boolean;
@@ -116,6 +118,8 @@ export declare class VRenderer extends React.Component<VRendererProps> {
116
118
  readonly clickable: boolean;
117
119
  readonly draggable: boolean;
118
120
  readonly moveable: boolean;
121
+ readonly canMoveUp: boolean;
122
+ readonly canMoveDown: boolean;
119
123
  readonly removable: boolean;
120
124
  readonly duplicatable: boolean;
121
125
  readonly replaceable: boolean;
@@ -0,0 +1,15 @@
1
+ import React from 'react';
2
+ import { EditorStoreType } from '../../store/editor';
3
+ import { SubRendererInfo } from '../../plugin';
4
+ interface SearchCustomRendererProps {
5
+ store: EditorStoreType;
6
+ }
7
+ interface SearchCustomRendererStates {
8
+ customRenderersByOrder: Array<SubRendererInfo>;
9
+ }
10
+ export default class SearchCustomRendererPanel extends React.Component<SearchCustomRendererProps, SearchCustomRendererStates> {
11
+ localStorageKey: string;
12
+ constructor(props: any);
13
+ render(): JSX.Element | null;
14
+ }
15
+ export {};
@@ -0,0 +1,83 @@
1
+ import React from 'react';
2
+ /**
3
+ * 通用搜索功能组件,附带以下功能:
4
+ * 1、搜索历史:会自动记录用户搜索过的关键字,方便用户下次使用;
5
+ * 2、自动提示补全:autoComplete 设置为 true 后,每次输入关键字后会展示当前所有含有关键字的信息(并以分类的形式展示);
6
+ * 3、搜索分类:取决于当前搜索数据结构是否带tag,如果不带tag则不展示搜索分类;
7
+ */
8
+ interface SearchProps {
9
+ allResult: Array<any>;
10
+ searchPanelUUID: string;
11
+ closeAutoComplete?: boolean;
12
+ externalKeyword?: string;
13
+ tagKey?: string;
14
+ onChange: (keyword: string) => void;
15
+ onTagChange?: (tag: string) => void;
16
+ immediateChange?: boolean;
17
+ }
18
+ interface SearchStates {
19
+ resultTags: Array<string>;
20
+ resultByTag: {
21
+ [propName: string]: Array<any>;
22
+ };
23
+ curKeyword: string;
24
+ searchResult: Array<any>;
25
+ searchResultByTag: {
26
+ [propName: string]: Array<any>;
27
+ };
28
+ visible: boolean;
29
+ curKeywordSearchHistory: string[];
30
+ toggleTagFolderStatus: boolean;
31
+ }
32
+ export default class SearchPanel extends React.Component<SearchProps, SearchStates> {
33
+ ref: React.RefObject<HTMLDivElement>;
34
+ curInputBox: any;
35
+ localStorageKey: string;
36
+ curTagFolded: {
37
+ [propName: string]: boolean;
38
+ };
39
+ lastSearchTag: string;
40
+ constructor(props: any);
41
+ componentDidMount(): void;
42
+ componentWillUnmount(): void;
43
+ UNSAFE_componentWillReceiveProps(nextProps: any): void;
44
+ getSearchHistory(): any[];
45
+ /**
46
+ * 从搜索数据中获取分类信息,并按分类存放搜索数据,方便后续通过分类直接获取搜索数据
47
+ */
48
+ getResultTags(allResult: Array<any>): {
49
+ curResultTags: string[];
50
+ curResultByTag: {
51
+ [propName: string]: any[];
52
+ };
53
+ };
54
+ /**
55
+ * 根据关键字过滤数据,按分组存放
56
+ */
57
+ groupedResultByKeyword(keywords?: string): void;
58
+ bindFocusEvent(): void;
59
+ bindBlurEvent(): void;
60
+ updateCurKeyword(keywords: string): void;
61
+ changeTagFoldStatus(tagKey: string, event: any): void;
62
+ bindEnterEvent(event: any): void;
63
+ /** 删除搜索关键字 */
64
+ bindClearActionEvent(): void;
65
+ /** 组件分类tag点击事件 */
66
+ bindTagClickEvent(tag: string): void;
67
+ /** 添加搜索历史 */
68
+ addSearchHistory(newKeywords: string): void;
69
+ /** 搜索历史/点击 */
70
+ clickKeywordEvent(keywords: string): void;
71
+ deleteSearchHistory(event: any, newKeywords: string): void;
72
+ clearSearchHistory(event: any): void;
73
+ /** 将搜索记录保存到localStorage */
74
+ updateSearchHistory(): void;
75
+ /** 显示搜索关键字 */
76
+ renderNameByKeyword(rendererName: string, curKeyword: string): string | JSX.Element;
77
+ /** 判断搜索展示内容是否有滚动(交互优化) */
78
+ resultIsHasScroll(searchSubRenderers: {
79
+ [propName: string]: Array<any>;
80
+ }, maxShowLine: number): boolean;
81
+ render(): JSX.Element;
82
+ }
83
+ export {};
@@ -6,54 +6,14 @@ interface SearchRendererProps {
6
6
  }
7
7
  interface SearchRendererStates {
8
8
  subRenderersByOrder: Array<SubRendererInfo>;
9
- groupedSubRenderers: {
10
- [propName: string]: Array<SubRendererInfo>;
11
- };
12
- searchSubRenderers: {
13
- [propName: string]: Array<SubRendererInfo>;
14
- };
15
- visible: boolean;
16
- curKeyword: string;
17
- curKeywordSearchHistory: string[];
18
- toggleTagFolderStatus: boolean;
9
+ defaultKeyword: string;
19
10
  }
20
11
  export default class SearchRendererPanel extends React.Component<SearchRendererProps, SearchRendererStates> {
21
- ref: React.RefObject<HTMLDivElement>;
22
- curInputBox: any;
23
12
  localStorageKey: string;
24
- curTagFolded: {
25
- [propName: string]: boolean;
26
- };
27
13
  lastSubRenderersTag: string;
28
14
  constructor(props: any);
29
- componentDidMount(): void;
30
15
  UNSAFE_componentWillReceiveProps(nextProps: any): void;
31
- componentWillUnmount(): void;
32
- bindFocusEvent(): void;
33
- bindBlurEvent(): void;
34
- updateCurKeyword(keywords: string): void;
35
- searchSubRenderersByKeyword(): void;
36
- changeTagFoldStatus(tagKey: string, event: any): void;
37
- bindEnterEvent(event: any): void;
38
- /** 删除搜索关键字 */
39
- bindClearActionEvent(): void;
40
- /** 组件分类tag点击事件 */
41
- bindTagClickEvent(tag: string): void;
42
- getSearchHistory(): any[];
43
- /** 添加搜索历史 */
44
- addSearchHistory(newKeywords: string): void;
45
- /** 搜索历史/点击 */
46
- clickKeywordEvent(keywords: string): void;
47
- deleteSearchHistory(event: any, newKeywords: string): void;
48
- clearSearchHistory(event: any): void;
49
- /** 将搜索记录保存到localStorage */
50
- updateSearchHistory(): void;
51
- /** 显示搜索关键字 */
52
- renderNameByKeyword(rendererName: string, curKeyword: string): string | JSX.Element;
53
- /** 判断搜索展示内容是否有滚动(交互优化) */
54
- resultIsHasScroll(searchSubRenderers: {
55
- [propName: string]: Array<SubRendererInfo>;
56
- }, maxShowLine: number): boolean;
16
+ changeSubRenderersTag(curTag: string): void;
57
17
  render(): JSX.Element;
58
18
  }
59
19
  export {};