@oceanbase/codemod 0.2.8 → 0.2.9

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@oceanbase/codemod",
3
- "version": "0.2.8",
3
+ "version": "0.2.9",
4
4
  "description": "Codemod for OceanBase Design upgrade",
5
5
  "keywords": [
6
6
  "oceanbase",
@@ -46,5 +46,5 @@
46
46
  "enzyme": "^3.11.0",
47
47
  "enzyme-to-json": "^3.6.2"
48
48
  },
49
- "gitHead": "98cd4d8a2af9b6e5dcde6210fc61f9efb74c7e01"
49
+ "gitHead": "c9a4257a5c6357396e72c6a7acccd24613c4ceaf"
50
50
  }
@@ -0,0 +1,26 @@
1
+ .mixin-1() {
2
+ color: #1890ff;
3
+ background: #52c41a;
4
+ background-color: #faad14;
5
+ border-color: #ff4d4f;
6
+ scrollbar-color: #ffffff;
7
+ }
8
+
9
+ .mixin-2 {
10
+ color: #1890ff;
11
+ background: #52c41a;
12
+ background-color: #faad14;
13
+ border-color: #ff4d4f;
14
+ scrollbar-color: #ffffff;
15
+ }
16
+
17
+ .container {
18
+ .mixin-1();
19
+ .mixin-2();
20
+ .content {
21
+ color: rgba(0, 0, 0, 0.85);
22
+ background: rgba(0, 0, 0,0.65);
23
+ background-color: rgba(0,0,0,0.45);
24
+ border: 1px solid #d9d9d9;
25
+ }
26
+ }
@@ -0,0 +1,28 @@
1
+ @import '~@oceanbase/design/es/theme/index.less';
2
+
3
+ .mixin-1() {
4
+ color: @colorInfo;
5
+ background: @colorSuccess;
6
+ background-color: @colorWarning;
7
+ border-color: @colorError;
8
+ scrollbar-color: @colorBgContainer;
9
+ }
10
+
11
+ .mixin-2 {
12
+ color: @colorInfo;
13
+ background: @colorSuccess;
14
+ background-color: @colorWarning;
15
+ border-color: @colorError;
16
+ scrollbar-color: @colorBgContainer;
17
+ }
18
+
19
+ .container {
20
+ .mixin-1();
21
+ .mixin-2();
22
+ .content {
23
+ color: @colorText;
24
+ background: @colorTextSecondary;
25
+ background-color: @colorTextTertiary;
26
+ border: 1px solid @colorBorder;
27
+ }
28
+ }
@@ -1,6 +1,6 @@
1
1
  import React from 'react';
2
- import { Alert, Button, BackgroundTaskManager, BackgroundTaskManagerConstants, BasicLayout, Boundary, ConfigProvider, ContentWithQuestion, IconFont, Login, PageContainer, Ranger, theme, TreeSearch } from '@alipay/ob-ui';
3
- import type { BackgroundTaskManagerRef, ITaskMgrPreset, ITaskMgrQueue, TaskMgrID } from '@alipay/ob-ui';
2
+ import { Alert, Button, BackgroundTaskManager, BackgroundTaskManagerConstants, BasicLayout, Boundary, ConfigProvider, ContentWithQuestion, IconFont, Login, ModalForm, PageContainer, ProTable, Ranger, theme, TreeSearch } from '@alipay/ob-ui';
3
+ import type { BackgroundTaskManagerRef, ITaskMgrPreset, ITaskMgrQueue, ModalFormProps, ProTableProps, TaskMgrID } from '@alipay/ob-ui';
4
4
  import type { BasicLayoutProps } from '@alipay/ob-ui/es/BasicLayout';
5
5
  import type { LoginProps } from '@alipay/ob-ui/es/Login';
6
6
  import type { PageContainerProps } from '@alipay/ob-ui/es/PageContainer';
@@ -1,7 +1,7 @@
1
1
  import React from 'react';
2
2
  import { Alert, Button, ConfigProvider, theme } from '@oceanbase/design';
3
- import { BackgroundTaskManager, BackgroundTaskManagerConstants, BasicLayout, Boundary, ContentWithQuestion, IconFont, Login, PageContainer, Ranger, TreeSearch } from '@oceanbase/ui';
4
- import type { BackgroundTaskManagerRef, ITaskMgrPreset, ITaskMgrQueue, TaskMgrID } from '@oceanbase/ui';
3
+ import { BackgroundTaskManager, BackgroundTaskManagerConstants, BasicLayout, Boundary, ContentWithQuestion, IconFont, Login, ModalForm, PageContainer, ProTable, Ranger, TreeSearch } from '@oceanbase/ui';
4
+ import type { BackgroundTaskManagerRef, ITaskMgrPreset, ITaskMgrQueue, ModalFormProps, ProTableProps, TaskMgrID } from '@oceanbase/ui';
5
5
  import type { BasicLayoutProps } from '@oceanbase/ui/es/BasicLayout';
6
6
  import type { LoginProps } from '@oceanbase/ui/es/Login';
7
7
  import type { PageContainerProps } from '@oceanbase/ui/es/PageContainer';
@@ -3,7 +3,7 @@ import path from 'path';
3
3
  import { transform } from '../less-to-token';
4
4
 
5
5
  const testUnit = 'less-to-token';
6
- const tests = ['antd-v4-less-to-token', 'obui-less-to-token', 'case-insensitive'];
6
+ const tests = ['antd-v4-less-to-token', 'obui-less-to-token', 'case-insensitive', 'mixin'];
7
7
 
8
8
  describe(testUnit, () => {
9
9
  tests.forEach(test => {
@@ -32,21 +32,11 @@ const findAllLessFiles = dir => {
32
32
  return lessFiles;
33
33
  };
34
34
 
35
- /**
36
- * 将 lesscode 转化为 ast
37
- * @returns ASR
38
- */
39
- const less2AST = code =>
40
- postcss([])
41
- .process(code, {
42
- parser: postcssLess.parse,
43
- from: undefined,
44
- })
45
- .then(result => result.root);
46
-
47
35
  async function transform(file) {
48
36
  const content = fs.readFileSync(file, 'utf-8');
49
- const ast = await less2AST(content);
37
+ const { root: ast } = await postcss([]).process(content, {
38
+ syntax: postcssLess,
39
+ });
50
40
  let modified = false;
51
41
  let tokenLessImported = false;
52
42
  // 遍历 AST
@@ -70,7 +60,7 @@ async function transform(file) {
70
60
  params: "'~@oceanbase/design/es/theme/index.less'",
71
61
  });
72
62
  }
73
- return ast.toString();
63
+ return ast.toString(postcssLess.stringify);
74
64
  }
75
65
 
76
66
  async function lessToToken(file) {
@@ -9,7 +9,6 @@ module.exports = (file, api, options) => {
9
9
  {
10
10
  name: '@oceanbase/ui',
11
11
  components: [
12
- 'PageContainer',
13
12
  'Action',
14
13
  'BackgroundTaskManager',
15
14
  'BackgroundTaskManagerConstants',
@@ -32,9 +31,49 @@ module.exports = (file, api, options) => {
32
31
  'TaskGraph',
33
32
  'TreeSearch',
34
33
  'Welcome',
34
+ /* pro-components */
35
+ 'PageContainer',
36
+ 'ProLayout',
37
+ 'ProCard',
38
+ 'WaterMark',
39
+ 'StatisticCard',
40
+ 'CheckCard',
41
+ 'ProFormText',
42
+ 'ProFormDigit',
43
+ 'ProFormTextArea',
44
+ 'ProFormCaptcha',
45
+ 'ProFormDatePicker',
46
+ 'ProFormDateTimePicker',
47
+ 'ProFormDateRangePicker',
48
+ 'ProFormDateTimeRangePicker',
49
+ 'ProFormSelect',
50
+ 'ProFormTreeSelect',
51
+ 'ProFormCheckbox',
52
+ 'ProFormRadio',
53
+ 'ProFormSlider',
54
+ 'ProFormSwitch',
55
+ 'ProFormUploadButton',
56
+ 'ProFormUploadDragger',
57
+ 'ProFormMoney',
58
+ 'ProFormSegmented',
59
+ 'ProFormList',
60
+ 'BetaSchemaForm',
61
+ 'QueryFilter',
62
+ 'LightFilter',
63
+ 'StepsForm',
64
+ 'ModalForm',
65
+ 'DrawerForm',
66
+ 'LoginForm',
67
+ 'LoginFormPage',
68
+ 'ProTable',
69
+ 'EditableProTable',
70
+ 'DragSortTable',
71
+ 'ProList',
72
+ 'ProDescriptions',
73
+ 'ProSkeleton',
74
+ 'ProField',
35
75
  ],
36
76
  types: [
37
- 'PageContainerProps',
38
77
  'ActionProps',
39
78
  // BackgroundTaskManager
40
79
  'BackgroundTaskManagerProps',
@@ -66,6 +105,47 @@ module.exports = (file, api, options) => {
66
105
  'TreeSearchRef',
67
106
  'Node',
68
107
  'WelcomeProps',
108
+ /* pro-components */
109
+ 'PageContainerProps',
110
+ 'ProLayoutProps',
111
+ 'ProCardProps',
112
+ 'WaterMarkProps',
113
+ 'StatisticCardProps',
114
+ 'CheckCardProps',
115
+ 'ProFormTextProps',
116
+ 'ProFormDigitProps',
117
+ 'ProFormTextAreaProps',
118
+ 'ProFormCaptchaProps',
119
+ 'ProFormDatePickerProps',
120
+ 'ProFormDateTimePickerProps',
121
+ 'ProFormDateRangePickerProps',
122
+ 'ProFormDateTimeRangePickerProps',
123
+ 'ProFormSelectProps',
124
+ 'ProFormTreeSelectProps',
125
+ 'ProFormCheckboxProps',
126
+ 'ProFormRadioProps',
127
+ 'ProFormSliderProps',
128
+ 'ProFormSwitchProps',
129
+ 'ProFormUploadButtonProps',
130
+ 'ProFormUploadDraggerProps',
131
+ 'ProFormMoneyProps',
132
+ 'ProFormSegmentedProps',
133
+ 'ProFormListProps',
134
+ 'BetaSchemaFormProps',
135
+ 'QueryFilterProps',
136
+ 'LightFilterProps',
137
+ 'StepsFormProps',
138
+ 'ModalFormProps',
139
+ 'DrawerFormProps',
140
+ 'LoginFormProps',
141
+ 'LoginFormPageProps',
142
+ 'ProTableProps',
143
+ 'EditableProTableProps',
144
+ 'DragSortTableProps',
145
+ 'ProListProps',
146
+ 'ProDescriptionsProps',
147
+ 'ProSkeletonProps',
148
+ 'ProFieldProps',
69
149
  ],
70
150
  paths: ['/locale/', '/locale/'],
71
151
  },