@lowdefy/blocks-antd 4.0.0-alpha.29 → 4.0.0-alpha.30

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 (193) hide show
  1. package/dist/blocks/Affix/Affix.js +43 -0
  2. package/dist/blocks/Affix/schema.json +34 -0
  3. package/dist/blocks/Affix/style.less +17 -0
  4. package/dist/blocks/Alert/Alert.js +78 -0
  5. package/dist/blocks/Alert/schema.json +62 -0
  6. package/dist/blocks/Alert/style.less +17 -0
  7. package/dist/blocks/AutoComplete/AutoComplete.js +86 -0
  8. package/dist/blocks/AutoComplete/schema.json +148 -0
  9. package/dist/blocks/AutoComplete/style.less +17 -0
  10. package/dist/blocks/Avatar/Avatar.js +49 -0
  11. package/dist/blocks/Avatar/schema.json +71 -0
  12. package/dist/blocks/Avatar/style.less +17 -0
  13. package/dist/blocks/Badge/Badge.js +44 -0
  14. package/dist/blocks/Badge/schema.json +70 -0
  15. package/dist/blocks/Badge/style.less +17 -0
  16. package/dist/blocks/Breadcrumb/Breadcrumb.js +79 -0
  17. package/dist/blocks/Breadcrumb/schema.json +78 -0
  18. package/dist/blocks/Breadcrumb/style.less +17 -0
  19. package/dist/blocks/Button/Button.js +77 -0
  20. package/dist/blocks/Button/schema.json +91 -0
  21. package/dist/blocks/Button/style.less +17 -0
  22. package/dist/blocks/ButtonSelector/ButtonSelector.js +91 -0
  23. package/dist/blocks/ButtonSelector/schema.json +188 -0
  24. package/dist/blocks/ButtonSelector/style.less +18 -0
  25. package/dist/blocks/Card/Card.js +50 -0
  26. package/dist/blocks/Card/schema.json +58 -0
  27. package/dist/blocks/Card/style.less +17 -0
  28. package/dist/blocks/CheckboxSelector/CheckboxSelector.js +97 -0
  29. package/dist/blocks/CheckboxSelector/schema.json +193 -0
  30. package/dist/blocks/CheckboxSelector/style.less +19 -0
  31. package/dist/blocks/CheckboxSwitch/CheckboxSwitch.js +74 -0
  32. package/dist/blocks/CheckboxSwitch/schema.json +105 -0
  33. package/dist/blocks/CheckboxSwitch/style.less +19 -0
  34. package/dist/blocks/Collapse/Collapse.js +89 -0
  35. package/dist/blocks/Collapse/schema.json +90 -0
  36. package/dist/blocks/Collapse/style.less +17 -0
  37. package/dist/blocks/Comment/Comment.js +56 -0
  38. package/dist/blocks/Comment/schema.json +39 -0
  39. package/dist/blocks/Comment/style.less +18 -0
  40. package/dist/blocks/ConfirmModal/ConfirmModal.js +96 -0
  41. package/dist/blocks/ConfirmModal/schema.json +122 -0
  42. package/dist/blocks/ConfirmModal/style.less +17 -0
  43. package/dist/blocks/Content/Content.js +31 -0
  44. package/dist/blocks/Content/schema.json +16 -0
  45. package/dist/blocks/Content/style.less +17 -0
  46. package/dist/blocks/ControlledList/ControlledList.js +137 -0
  47. package/dist/blocks/ControlledList/schema.json +68 -0
  48. package/dist/blocks/ControlledList/style.less +19 -0
  49. package/dist/blocks/DateRangeSelector/DateRangeSelector.js +102 -0
  50. package/dist/blocks/DateRangeSelector/schema.json +221 -0
  51. package/dist/blocks/DateRangeSelector/style.less +18 -0
  52. package/dist/blocks/DateSelector/DateSelector.js +90 -0
  53. package/dist/blocks/DateSelector/schema.json +183 -0
  54. package/dist/blocks/DateSelector/style.less +18 -0
  55. package/dist/blocks/DateTimeSelector/DateTimeSelector.js +98 -0
  56. package/dist/blocks/DateTimeSelector/schema.json +215 -0
  57. package/dist/blocks/DateTimeSelector/style.less +18 -0
  58. package/dist/blocks/Descriptions/Descriptions.js +83 -0
  59. package/dist/blocks/Descriptions/schema.json +186 -0
  60. package/dist/blocks/Descriptions/style.less +17 -0
  61. package/dist/blocks/Divider/Divider.js +37 -0
  62. package/dist/blocks/Divider/schema.json +35 -0
  63. package/dist/blocks/Divider/style.less +17 -0
  64. package/dist/blocks/Drawer/Drawer.js +104 -0
  65. package/dist/blocks/Drawer/schema.json +113 -0
  66. package/dist/blocks/Drawer/style.less +17 -0
  67. package/dist/blocks/Footer/Footer.js +36 -0
  68. package/dist/blocks/Footer/schema.json +16 -0
  69. package/dist/blocks/Footer/style.less +17 -0
  70. package/dist/blocks/Header/Header.js +36 -0
  71. package/dist/blocks/Header/schema.json +22 -0
  72. package/dist/blocks/Header/style.less +17 -0
  73. package/dist/blocks/Label/Label.js +116 -0
  74. package/dist/blocks/Label/getLabelCol.js +55 -0
  75. package/dist/blocks/Label/getWrapperCol.js +69 -0
  76. package/dist/blocks/Label/labelLogic.js +106 -0
  77. package/dist/blocks/Label/schema.json +62 -0
  78. package/dist/blocks/Label/style.less +34 -0
  79. package/dist/blocks/Layout/Layout.js +30 -0
  80. package/dist/blocks/Layout/schema.json +16 -0
  81. package/dist/blocks/Layout/style.less +17 -0
  82. package/dist/blocks/Menu/Menu.js +209 -0
  83. package/dist/blocks/Menu/schema.json +236 -0
  84. package/dist/blocks/Menu/style.less +17 -0
  85. package/dist/blocks/Message/Message.js +53 -0
  86. package/dist/blocks/Message/schema.json +48 -0
  87. package/dist/blocks/Message/style.less +17 -0
  88. package/dist/blocks/MobileMenu/MobileMenu.js +128 -0
  89. package/dist/blocks/MobileMenu/schema.json +236 -0
  90. package/dist/blocks/MobileMenu/style.less +19 -0
  91. package/dist/blocks/Modal/Modal.js +130 -0
  92. package/dist/blocks/Modal/schema.json +118 -0
  93. package/dist/blocks/Modal/style.less +17 -0
  94. package/dist/blocks/MonthSelector/MonthSelector.js +90 -0
  95. package/dist/blocks/MonthSelector/schema.json +183 -0
  96. package/dist/blocks/MonthSelector/style.less +18 -0
  97. package/dist/blocks/MultipleSelector/MultipleSelector.js +146 -0
  98. package/dist/blocks/MultipleSelector/schema.json +239 -0
  99. package/dist/blocks/MultipleSelector/style.less +18 -0
  100. package/dist/blocks/Notification/Notification.js +77 -0
  101. package/dist/blocks/Notification/schema.json +85 -0
  102. package/dist/blocks/Notification/style.less +18 -0
  103. package/dist/blocks/NumberInput/NumberInput.js +82 -0
  104. package/dist/blocks/NumberInput/schema.json +157 -0
  105. package/dist/blocks/NumberInput/style.less +18 -0
  106. package/dist/blocks/PageHCF/PageHCF.js +70 -0
  107. package/dist/blocks/PageHCF/schema.json +64 -0
  108. package/dist/blocks/PageHCF/style.less +20 -0
  109. package/dist/blocks/PageHCSF/PageHCSF.js +98 -0
  110. package/dist/blocks/PageHCSF/schema.json +148 -0
  111. package/dist/blocks/PageHCSF/style.less +21 -0
  112. package/dist/blocks/PageHSCF/PageHSCF.js +98 -0
  113. package/dist/blocks/PageHSCF/schema.json +147 -0
  114. package/dist/blocks/PageHSCF/style.less +21 -0
  115. package/dist/blocks/PageHeaderMenu/PageHeaderMenu.js +302 -0
  116. package/dist/blocks/PageHeaderMenu/schema.json +215 -0
  117. package/dist/blocks/PageHeaderMenu/style.less +23 -0
  118. package/dist/blocks/PageSHCF/PageSHCF.js +98 -0
  119. package/dist/blocks/PageSHCF/schema.json +148 -0
  120. package/dist/blocks/PageSHCF/style.less +21 -0
  121. package/dist/blocks/PageSiderMenu/PageSiderMenu.js +409 -0
  122. package/dist/blocks/PageSiderMenu/schema.json +283 -0
  123. package/dist/blocks/PageSiderMenu/style.less +26 -0
  124. package/dist/blocks/Pagination/Pagination.js +98 -0
  125. package/dist/blocks/Pagination/schema.json +75 -0
  126. package/dist/blocks/Pagination/style.less +17 -0
  127. package/dist/blocks/Paragraph/Paragraph.js +102 -0
  128. package/dist/blocks/Paragraph/schema.json +131 -0
  129. package/dist/blocks/Paragraph/style.less +17 -0
  130. package/dist/blocks/ParagraphInput/ParagraphInput.js +125 -0
  131. package/dist/blocks/ParagraphInput/schema.json +162 -0
  132. package/dist/blocks/ParagraphInput/style.less +17 -0
  133. package/dist/blocks/PasswordInput/PasswordInput.js +78 -0
  134. package/dist/blocks/PasswordInput/schema.json +123 -0
  135. package/dist/blocks/PasswordInput/style.less +18 -0
  136. package/dist/blocks/Progress/Progress.js +42 -0
  137. package/dist/blocks/Progress/schema.json +76 -0
  138. package/dist/blocks/Progress/style.less +17 -0
  139. package/dist/blocks/RadioSelector/RadioSelector.js +96 -0
  140. package/dist/blocks/RadioSelector/schema.json +190 -0
  141. package/dist/blocks/RadioSelector/style.less +19 -0
  142. package/dist/blocks/RatingSlider/RatingSlider.js +240 -0
  143. package/dist/blocks/RatingSlider/schema.json +169 -0
  144. package/dist/blocks/RatingSlider/style.less +19 -0
  145. package/dist/blocks/Result/Result.js +48 -0
  146. package/dist/blocks/Result/schema.json +30 -0
  147. package/dist/blocks/Result/style.less +17 -0
  148. package/dist/blocks/Selector/Selector.js +140 -0
  149. package/dist/blocks/Selector/schema.json +236 -0
  150. package/dist/blocks/Selector/style.less +18 -0
  151. package/dist/blocks/Sider/Sider.js +85 -0
  152. package/dist/blocks/Sider/schema.json +71 -0
  153. package/dist/blocks/Sider/style.less +17 -0
  154. package/dist/blocks/Statistic/Statistic.js +51 -0
  155. package/dist/blocks/Statistic/schema.json +74 -0
  156. package/dist/blocks/Statistic/style.less +17 -0
  157. package/dist/blocks/Switch/Switch.js +101 -0
  158. package/dist/blocks/Switch/schema.json +136 -0
  159. package/dist/blocks/Switch/style.less +18 -0
  160. package/dist/blocks/Tabs/Tabs.js +108 -0
  161. package/dist/blocks/Tabs/schema.json +97 -0
  162. package/dist/blocks/Tabs/style.less +17 -0
  163. package/dist/blocks/TextArea/TextArea.js +87 -0
  164. package/dist/blocks/TextArea/schema.json +164 -0
  165. package/dist/blocks/TextArea/style.less +18 -0
  166. package/dist/blocks/TextInput/TextInput.js +92 -0
  167. package/dist/blocks/TextInput/schema.json +149 -0
  168. package/dist/blocks/TextInput/style.less +18 -0
  169. package/dist/blocks/TimelineList/TimelineList.js +102 -0
  170. package/dist/blocks/TimelineList/schema.json +65 -0
  171. package/dist/blocks/TimelineList/style.less +17 -0
  172. package/dist/blocks/Title/Title.js +109 -0
  173. package/dist/blocks/Title/schema.json +136 -0
  174. package/dist/blocks/Title/style.less +17 -0
  175. package/dist/blocks/TitleInput/TitleInput.js +122 -0
  176. package/dist/blocks/TitleInput/schema.json +171 -0
  177. package/dist/blocks/TitleInput/style.less +17 -0
  178. package/dist/blocks/Tooltip/Tooltip.js +48 -0
  179. package/dist/blocks/Tooltip/schema.json +91 -0
  180. package/dist/blocks/Tooltip/style.less +17 -0
  181. package/dist/blocks/WeekSelector/WeekSelector.js +91 -0
  182. package/dist/blocks/WeekSelector/schema.json +183 -0
  183. package/dist/blocks/WeekSelector/style.less +18 -0
  184. package/dist/blocks.js +74 -0
  185. package/dist/color.js +85 -0
  186. package/dist/disabledDate.js +45 -0
  187. package/dist/getUniqueValues.js +30 -0
  188. package/dist/getValueIndex.js +42 -0
  189. package/dist/style.less +17 -0
  190. package/dist/types.js +31 -0
  191. package/dist/useRunAfterUpdate.js +29 -0
  192. package/dist/validationExamples.js +40 -0
  193. package/package.json +7 -7
@@ -0,0 +1,42 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import React from 'react';
16
+ import { Progress } from 'antd';
17
+ import { blockDefaultProps } from '@lowdefy/block-utils';
18
+ const ProgressBlock = ({ blockId , properties })=>/*#__PURE__*/ React.createElement(Progress, {
19
+ gapDegree: properties.gapDegree,
20
+ gapPosition: properties.gapPosition,
21
+ id: blockId,
22
+ percent: properties.percent,
23
+ showInfo: properties.showInfo,
24
+ status: properties.status,
25
+ steps: properties.steps,
26
+ strokeColor: properties.strokeColor,
27
+ strokeLinecap: properties.strokeLinecap,
28
+ strokeWidth: properties.strokeWidth,
29
+ success: properties.success,
30
+ trailColor: properties.trailColor,
31
+ type: properties.type,
32
+ width: properties.width
33
+ });
34
+ ProgressBlock.defaultProps = blockDefaultProps;
35
+ ProgressBlock.meta = {
36
+ category: 'display',
37
+ icons: [],
38
+ styles: [
39
+ 'blocks/Progress/style.less'
40
+ ]
41
+ };
42
+ export default ProgressBlock;
@@ -0,0 +1,76 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "type": "object",
5
+ "additionalProperties": false,
6
+ "properties": {
7
+ "type": {
8
+ "type": "string",
9
+ "default": "line",
10
+ "enum": ["line", "circle", "dashboard"],
11
+ "description": "Set type of progress display."
12
+ },
13
+ "showInfo": {
14
+ "type": "boolean",
15
+ "default": true,
16
+ "description": "Whether to display the progress value and the status icon."
17
+ },
18
+ "percent": {
19
+ "type": "number",
20
+ "default": 0,
21
+ "description": "Set the completion percentage."
22
+ },
23
+ "status": {
24
+ "type": "string",
25
+ "enum": ["success", "exception", "normal", "active"],
26
+ "default": "normal",
27
+ "description": "Set the status of the Progress."
28
+ },
29
+ "strokeLinecap": {
30
+ "type": "string",
31
+ "default": "round",
32
+ "enum": ["round", "square"],
33
+ "description": "Set the style of the progress linecap."
34
+ },
35
+ "strokeColor": {
36
+ "type": ["string", "object"],
37
+ "description": "Color of progress bar.",
38
+ "docs": {
39
+ "displayType": "color"
40
+ }
41
+ },
42
+ "success": {
43
+ "type": "number",
44
+ "default": 0,
45
+ "description": "Segmented success percent."
46
+ },
47
+ "trailColor": {
48
+ "type": "string",
49
+ "description": "Color of unfilled part.",
50
+ "docs": {
51
+ "displayType": "color"
52
+ }
53
+ },
54
+ "strokeWidth": {
55
+ "type": "number",
56
+ "description": "Set the width of the progress bar."
57
+ },
58
+ "width": {
59
+ "type": "number",
60
+ "default": 132,
61
+ "description": "Set the canvas width of the circular progress."
62
+ },
63
+ "gapDegree": {
64
+ "type": "number",
65
+ "default": 75,
66
+ "description": "The gap degree of half circle."
67
+ },
68
+ "gapPosition": {
69
+ "type": "string",
70
+ "enum": ["top", "bottom", "left", "right"],
71
+ "default": "top",
72
+ "description": "The gap position."
73
+ }
74
+ }
75
+ }
76
+ }
@@ -0,0 +1,17 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
16
+
17
+ @import 'antd/lib/progress/style/index.less';
@@ -0,0 +1,96 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import React from 'react';
16
+ import { Radio, Space } from 'antd';
17
+ import { blockDefaultProps, renderHtml } from '@lowdefy/block-utils';
18
+ import { type } from '@lowdefy/helpers';
19
+ import Label from '../Label/Label.js';
20
+ import getValueIndex from '../../getValueIndex.js';
21
+ import getUniqueValues from '../../getUniqueValues.js';
22
+ const RadioGroup = Radio.Group;
23
+ const RadioSelector = ({ blockId , components , events , loading , properties , required , validation , value , methods , })=>{
24
+ const uniqueValueOptions = getUniqueValues(properties.options || []);
25
+ return /*#__PURE__*/ React.createElement(Label, {
26
+ blockId: blockId,
27
+ components: components,
28
+ events: events,
29
+ properties: {
30
+ title: properties.title,
31
+ size: properties.size,
32
+ ...properties.label
33
+ },
34
+ validation: validation,
35
+ required: required,
36
+ content: {
37
+ content: ()=>/*#__PURE__*/ React.createElement(RadioGroup, {
38
+ id: `${blockId}_input`,
39
+ className: methods.makeCssClass([
40
+ properties.color && {
41
+ '& > label > span.ant-radio-checked:not(.ant-radio-disabled) > span': {
42
+ borderColor: `${properties.color} !important`,
43
+ '&:after': {
44
+ backgroundColor: `${properties.color} !important`
45
+ }
46
+ }
47
+ },
48
+ properties.inputStyle,
49
+ ]),
50
+ disabled: properties.disabled || loading,
51
+ onChange: (event)=>{
52
+ methods.setValue(type.isPrimitive(uniqueValueOptions[event.target.value]) ? uniqueValueOptions[event.target.value] : uniqueValueOptions[event.target.value].value);
53
+ methods.triggerEvent({
54
+ name: 'onChange'
55
+ });
56
+ },
57
+ value: `${getValueIndex(value, uniqueValueOptions)}`
58
+ }, /*#__PURE__*/ React.createElement(Space, {
59
+ direction: properties.direction,
60
+ wrap: type.isNone(properties.wrap) ? true : properties.wrap,
61
+ align: type.isNone(properties.align) ? 'start' : properties.align
62
+ }, uniqueValueOptions.map((opt, i)=>type.isPrimitive(opt) ? /*#__PURE__*/ React.createElement(Radio, {
63
+ id: `${blockId}_${opt}`,
64
+ key: i,
65
+ value: i
66
+ }, renderHtml({
67
+ html: `${opt}`,
68
+ methods
69
+ })) : /*#__PURE__*/ React.createElement(Radio, {
70
+ id: `${blockId}_${i}`,
71
+ key: i,
72
+ value: `${i}`,
73
+ disabled: opt.disabled,
74
+ className: methods.makeCssClass(opt.style)
75
+ }, type.isNone(opt.label) ? renderHtml({
76
+ html: `${opt.value}`,
77
+ methods
78
+ }) : renderHtml({
79
+ html: opt.label,
80
+ methods
81
+ })))))
82
+ }
83
+ });
84
+ };
85
+ RadioSelector.defaultProps = blockDefaultProps;
86
+ RadioSelector.meta = {
87
+ valueType: 'any',
88
+ category: 'input',
89
+ icons: [
90
+ ...Label.meta.icons
91
+ ],
92
+ styles: [
93
+ 'blocks/RadioSelector/style.less'
94
+ ]
95
+ };
96
+ export default RadioSelector;
@@ -0,0 +1,190 @@
1
+ {
2
+ "type": "object",
3
+ "properties": {
4
+ "type": "object",
5
+ "additionalProperties": false,
6
+ "properties": {
7
+ "align": {
8
+ "type": "string",
9
+ "enum": ["start", "end", "center", "baseline"],
10
+ "default": "start",
11
+ "description": "Align options."
12
+ },
13
+ "color": {
14
+ "type": "string",
15
+ "description": "Selected radio color.",
16
+ "docs": {
17
+ "displayType": "color"
18
+ }
19
+ },
20
+ "disabled": {
21
+ "type": "boolean",
22
+ "default": false,
23
+ "description": "Disable the block if true."
24
+ },
25
+ "direction": {
26
+ "type": "string",
27
+ "enum": ["horizontal", "vertical"],
28
+ "default": "horizontal",
29
+ "description": "List options horizontally or vertical."
30
+ },
31
+ "wrap": {
32
+ "type": "boolean",
33
+ "default": true,
34
+ "description": "Specifies wrapping of options. Applies when 'direction' is 'horizontal'."
35
+ },
36
+ "inputStyle": {
37
+ "type": "object",
38
+ "description": "Css style to applied to input.",
39
+ "docs": {
40
+ "displayType": "yaml"
41
+ }
42
+ },
43
+ "label": {
44
+ "type": "object",
45
+ "description": "Label properties.",
46
+ "additionalProperties": false,
47
+ "properties": {
48
+ "align": {
49
+ "type": "string",
50
+ "enum": ["left", "right"],
51
+ "default": "left",
52
+ "description": "Align label left or right when inline."
53
+ },
54
+ "colon": {
55
+ "type": "boolean",
56
+ "default": true,
57
+ "description": "Append label with colon."
58
+ },
59
+ "extra": {
60
+ "type": "string",
61
+ "description": "Extra text to display beneath the content - supports html."
62
+ },
63
+ "title": {
64
+ "type": "string",
65
+ "description": "Label title - supports html."
66
+ },
67
+ "span": {
68
+ "type": "number",
69
+ "description": "Label inline span."
70
+ },
71
+ "disabled": {
72
+ "type": "boolean",
73
+ "default": false,
74
+ "description": "Hide input label."
75
+ },
76
+ "hasFeedback": {
77
+ "type": "boolean",
78
+ "default": true,
79
+ "description": "Display feedback extra from validation, this does not disable validation."
80
+ },
81
+ "inline": {
82
+ "type": "boolean",
83
+ "default": false,
84
+ "description": "Render input and label inline."
85
+ },
86
+ "extraStyle": {
87
+ "type": "object",
88
+ "description": "Css style to applied to label extra.",
89
+ "docs": {
90
+ "displayType": "yaml"
91
+ }
92
+ },
93
+ "feedbackStyle": {
94
+ "type": "object",
95
+ "description": "Css style to applied to label feedback.",
96
+ "docs": {
97
+ "displayType": "yaml"
98
+ }
99
+ }
100
+ }
101
+ },
102
+ "options": {
103
+ "default": [],
104
+ "oneOf": [
105
+ {
106
+ "type": "array",
107
+ "description": "Options can either be an array of primitive values, on an array of label, value pairs - supports html.",
108
+ "items": {
109
+ "type": "string"
110
+ }
111
+ },
112
+ {
113
+ "type": "array",
114
+ "description": "Options can either be an array of primitive values, on an array of label, value pairs.",
115
+ "items": {
116
+ "type": "number"
117
+ }
118
+ },
119
+ {
120
+ "type": "array",
121
+ "description": "Options can either be an array of primitive values, on an array of label, value pairs.",
122
+ "items": {
123
+ "type": "boolean"
124
+ }
125
+ },
126
+ {
127
+ "type": "array",
128
+ "description": "Options can either be an array of primitive values, on an array of label, value pairs.",
129
+ "items": {
130
+ "type": "object",
131
+ "required": ["value"],
132
+ "properties": {
133
+ "label": {
134
+ "type": "string",
135
+ "description": "Value label shown to user - supports html."
136
+ },
137
+ "value": {
138
+ "description": "Value selected.",
139
+ "oneOf": [
140
+ {
141
+ "type": "string"
142
+ },
143
+ {
144
+ "type": "number"
145
+ },
146
+ {
147
+ "type": "boolean"
148
+ },
149
+ {
150
+ "type": "object"
151
+ }
152
+ ],
153
+ "docs": {
154
+ "displayType": "yaml"
155
+ }
156
+ },
157
+ "disabled": {
158
+ "type": "boolean",
159
+ "default": false,
160
+ "description": "Disable the option if true."
161
+ },
162
+ "style": {
163
+ "type": "object",
164
+ "description": "Css style to applied to option.",
165
+ "docs": {
166
+ "displayType": "yaml"
167
+ }
168
+ }
169
+ }
170
+ }
171
+ }
172
+ ]
173
+ },
174
+ "title": {
175
+ "type": "string",
176
+ "description": "Title to describe the input component, if no title is specified the block id is displayed - supports html."
177
+ }
178
+ }
179
+ },
180
+ "events": {
181
+ "type": "object",
182
+ "additionalProperties": false,
183
+ "properties": {
184
+ "onChange": {
185
+ "type": "array",
186
+ "description": "Trigger action when selection is changed."
187
+ }
188
+ }
189
+ }
190
+ }
@@ -0,0 +1,19 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */
16
+
17
+ @import 'antd/lib/radio/style/index.less';
18
+ @import 'antd/lib/space/style/index.less';
19
+ @import '../Label/style.less';
@@ -0,0 +1,240 @@
1
+ /*
2
+ Copyright 2020-2022 Lowdefy, Inc
3
+
4
+ Licensed under the Apache License, Version 2.0 (the "License");
5
+ you may not use this file except in compliance with the License.
6
+ You may obtain a copy of the License at
7
+
8
+ http://www.apache.org/licenses/LICENSE-2.0
9
+
10
+ Unless required by applicable law or agreed to in writing, software
11
+ distributed under the License is distributed on an "AS IS" BASIS,
12
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ See the License for the specific language governing permissions and
14
+ limitations under the License.
15
+ */ import React, { useState } from 'react';
16
+ import { blockDefaultProps } from '@lowdefy/block-utils';
17
+ import { get, mergeObjects, serializer, type } from '@lowdefy/helpers';
18
+ import { Slider } from 'antd';
19
+ import classNames from 'classnames';
20
+ import CheckboxSelector from '../CheckboxSelector/CheckboxSelector.js';
21
+ import Label from '../Label/Label.js';
22
+ const includeMarks = (minMax, minMin, step = 1)=>{
23
+ const marks = {};
24
+ marks[minMin] = {
25
+ style: {
26
+ marginTop: 2,
27
+ fontSize: 12
28
+ },
29
+ label: /*#__PURE__*/ React.createElement("span", null)
30
+ };
31
+ // round to fix floating point error
32
+ for(let k = minMax[0]; k <= minMax[1]; k = parseFloat((k + step).toPrecision(8))){
33
+ marks[k] = {
34
+ style: {
35
+ marginTop: 2,
36
+ fontSize: 12
37
+ },
38
+ label: /*#__PURE__*/ React.createElement("strong", null, k)
39
+ };
40
+ }
41
+ return marks;
42
+ };
43
+ const styles = {
44
+ iconLeft: {
45
+ flex: '0 0 1',
46
+ fontSize: '20px',
47
+ padding: '6px 6px 0 0'
48
+ },
49
+ iconRight: {
50
+ flex: '0 0 1',
51
+ fontSize: '20px',
52
+ padding: '6px 0 0 6px'
53
+ },
54
+ checkbox: {
55
+ flex: '0 0 1',
56
+ paddingTop: 6
57
+ },
58
+ slider: {
59
+ flex: 'auto'
60
+ },
61
+ content: {
62
+ display: 'flex',
63
+ flexDirection: 'row'
64
+ }
65
+ };
66
+ const RatingSlider = ({ blockId , components: { Icon , Link } , events , loading , methods , properties , required , validation , value , })=>{
67
+ const [check, unCheck] = useState(false);
68
+ let propertiesIconMin = serializer.copy(properties.minIcon);
69
+ if (type.isString(propertiesIconMin)) {
70
+ propertiesIconMin = {
71
+ name: propertiesIconMin
72
+ };
73
+ }
74
+ let propertiesIconMax = serializer.copy(properties.maxIcon);
75
+ if (type.isString(propertiesIconMax)) {
76
+ propertiesIconMax = {
77
+ name: propertiesIconMax
78
+ };
79
+ }
80
+ const minMax = [
81
+ get(properties, 'max', {
82
+ default: 10
83
+ }),
84
+ properties.min || 0
85
+ ].sort((a, b)=>a - b);
86
+ // round to fix floating point error
87
+ const minMin = parseFloat((minMax[0] - (properties.step || 1)).toPrecision(8));
88
+ const validationColor = validation.status === 'error' ? '#ff4d4f' : validation.status === 'warning' ? '#faad14' : null;
89
+ return /*#__PURE__*/ React.createElement(Label, {
90
+ blockId: blockId,
91
+ components: {
92
+ Icon,
93
+ Link
94
+ },
95
+ events: events,
96
+ methods: methods,
97
+ properties: {
98
+ title: properties.title,
99
+ size: properties.size,
100
+ ...properties.label
101
+ },
102
+ required: required,
103
+ validation: validation,
104
+ content: {
105
+ content: ()=>/*#__PURE__*/ React.createElement("div", {
106
+ className: methods.makeCssClass([
107
+ styles.content,
108
+ {
109
+ paddingRight: validation.status && 30
110
+ },
111
+ ])
112
+ }, !required && !properties.disableNotApplicable && /*#__PURE__*/ React.createElement(CheckboxSelector, {
113
+ blockId: `${blockId}_checkbox_selector`,
114
+ components: {
115
+ Icon,
116
+ Link
117
+ },
118
+ properties: mergeObjects([
119
+ {
120
+ label: {
121
+ disabled: true
122
+ },
123
+ options: [
124
+ {
125
+ value: true,
126
+ label: properties.notApplicableLabel || 'N/A'
127
+ }
128
+ ],
129
+ color: properties.color,
130
+ disabled: properties.disabled || loading
131
+ },
132
+ properties.CheckboxInput,
133
+ {
134
+ style: styles.checkbox
135
+ },
136
+ ]),
137
+ methods: {
138
+ ...methods,
139
+ setValue: (val)=>{
140
+ if (val[0] === true) {
141
+ unCheck(true);
142
+ methods.setValue(properties.notApplicableLabel || 'N/A');
143
+ } else {
144
+ unCheck(false);
145
+ }
146
+ }
147
+ },
148
+ value: [
149
+ check
150
+ ]
151
+ }), !properties.disableIcons && /*#__PURE__*/ React.createElement(Icon, {
152
+ blockId: `${blockId}_iconMin`,
153
+ events: events,
154
+ properties: mergeObjects([
155
+ {
156
+ name: 'AiOutlineFrown',
157
+ style: styles.iconLeft,
158
+ color: properties.color
159
+ },
160
+ propertiesIconMin,
161
+ ])
162
+ }), /*#__PURE__*/ React.createElement(Slider, {
163
+ id: `${blockId}_input`,
164
+ components: {
165
+ Icon,
166
+ Link
167
+ },
168
+ events: events,
169
+ className: classNames(methods.makeCssClass([
170
+ properties.color && {
171
+ '& > div.ant-slider-track': {
172
+ backgroundColor: `${properties.color} !important`
173
+ },
174
+ '& > div.ant-slider-handle': {
175
+ borderColor: `${properties.color} !important`
176
+ },
177
+ '& > div.ant-slider-step > span.ant-slider-dot-active': {
178
+ borderColor: `${properties.color} !important`
179
+ }
180
+ },
181
+ validationColor && {
182
+ '& > div.ant-slider-rail': {
183
+ backgroundColor: `${validationColor} !important`
184
+ }
185
+ },
186
+ ]), methods.makeCssClass(styles.slider), methods.makeCssClass(properties.inputStyle)),
187
+ autoFocus: properties.autoFocus,
188
+ disabled: properties.disabled || check === true && !properties.disableNotApplicable || loading,
189
+ dots: get(properties, 'showDots', {
190
+ default: true
191
+ }),
192
+ tooltipVisible: value === null || properties.tooltipVisible === 'never' ? false : properties.tooltipVisible === 'always' ? true : undefined,
193
+ tipFormatter: (val)=>`${val}`,
194
+ marks: properties.marks || (get(properties, 'showMarks', {
195
+ default: true
196
+ }) ? includeMarks(minMax, minMin, properties.step || 1) : undefined),
197
+ min: minMin,
198
+ max: minMax[1],
199
+ range: false,
200
+ step: properties.step || 1,
201
+ onChange: (val)=>{
202
+ if (val === minMin) {
203
+ methods.setValue(null);
204
+ } else {
205
+ methods.setValue(val);
206
+ }
207
+ methods.triggerEvent({
208
+ name: 'onChange'
209
+ });
210
+ },
211
+ value: value === null ? minMin : value
212
+ }), !properties.disableIcons && /*#__PURE__*/ React.createElement(Icon, {
213
+ blockId: `${blockId}_iconMax`,
214
+ events: events,
215
+ properties: mergeObjects([
216
+ {
217
+ name: 'AiOutlineSmile',
218
+ style: styles.iconRight,
219
+ color: properties.color
220
+ },
221
+ propertiesIconMax,
222
+ ])
223
+ }))
224
+ }
225
+ });
226
+ };
227
+ RatingSlider.defaultProps = blockDefaultProps;
228
+ RatingSlider.meta = {
229
+ valueType: 'any',
230
+ category: 'input',
231
+ icons: [
232
+ ...Label.meta.icons,
233
+ 'AiOutlineFrown',
234
+ 'AiOutlineSmile'
235
+ ],
236
+ styles: [
237
+ 'blocks/RatingSlider/style.less'
238
+ ]
239
+ };
240
+ export default RatingSlider;