Skip to content

Commit c451f38

Browse files
committed
Form add CodeEditor item type
1 parent fde57ef commit c451f38

File tree

7 files changed

+156
-5
lines changed

7 files changed

+156
-5
lines changed

example/src/containers/BaseForm/index.js

+14
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,20 @@ export default class BaseForm extends React.Component {
244244
label: '字段22',
245245
type: 'month'
246246
},
247+
{
248+
key: 'code',
249+
label: '代码',
250+
type: 'codeEditor',
251+
value: `
252+
public class HelloWorld {
253+
254+
public static void main(String[] args) {
255+
// Prints "Hello, World" to the terminal window.
256+
System.out.println("Hello, World");
257+
}
258+
259+
}`
260+
},
247261
];
248262
this.rowColCounts = [2,2,4,2,1,3,4]
249263
// const index = this.forms.findIndex(f => f.key === 'add2')

package.json

+7-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ant-colony-ui",
3-
"version": "1.6.12",
3+
"version": "1.7.0",
44
"description": "Ant Colony UI Toolkit based on Ant Design and React",
55
"author": "docoder",
66
"license": "MIT",
@@ -51,6 +51,7 @@
5151
"babel-core": "^6.26.3",
5252
"babel-eslint": "^8.2.5",
5353
"babel-plugin-external-helpers": "^6.22.0",
54+
"babel-plugin-prismjs": "^1.1.1",
5455
"babel-plugin-styled-components": "^1.10.0",
5556
"babel-preset-env": "^1.7.0",
5657
"babel-preset-react": "^6.24.1",
@@ -84,5 +85,9 @@
8485
"files": [
8586
"dist"
8687
],
87-
"dependencies": {}
88+
"dependencies": {
89+
"css-initials": "^0.3.1",
90+
"prismjs": "^1.17.1",
91+
"react-simple-code-editor": "^0.10.0"
92+
}
8893
}

rollup.config.js

+8-3
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,17 @@ export default {
5555
"stage-0",
5656
"react"
5757
],
58-
plugins: [
58+
plugins: [
59+
["prismjs", {
60+
"languages": ["javascript", "jsx", "typescript", "tsx", "java", "sql"],
61+
"theme": "coy",
62+
"css": true
63+
}],
5964
'external-helpers',
60-
'babel-plugin-styled-components',
65+
'babel-plugin-styled-components'
6166
]
6267
}),
6368
resolve(),
6469
commonjs()
65-
]
70+
],
6671
}

src/components/UI/Form/CodeEditor.js

+50
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,50 @@
1+
/*
2+
* @Author: docoder
3+
4+
*/
5+
import * as React from 'react';
6+
import Editor from 'react-simple-code-editor';
7+
import styled from 'styled-components';
8+
import initials from '../../css-initials';
9+
const Container = styled.div`
10+
& pre {
11+
${initials}
12+
all: initials;
13+
}
14+
`;
15+
export default class CodeEditor extends React.Component {
16+
render() {
17+
return (
18+
<Container style={{
19+
overflow: 'auto',
20+
border: '1px solid #d9d9d9',
21+
borderRadius: 4,
22+
minHeight: 46,
23+
maxHeight: 150,
24+
lineHeight: 'normal'
25+
}}>
26+
<Editor
27+
{...this.props}
28+
onValueChange={this.props.onChange}
29+
highlight={code => Prism.highlight(code, Prism.languages.js)}
30+
padding={10}
31+
tabSize={4}
32+
style={{
33+
fontFamily: 'Consolas, Monaco, "Andale Mono", "Ubuntu Mono", monospace',
34+
fontSize: 12,
35+
lineHeight: 'normal',
36+
width: '-webkit-max-content',
37+
width: '-moz-max-content',
38+
width: 'max-content',
39+
width: 'intrinsic',
40+
height: '-webkit-max-content',
41+
height: '-moz-max-content',
42+
height: 'max-content',
43+
height: 'intrinsic',
44+
display: 'inline-block'
45+
}}
46+
/>
47+
</Container>
48+
)
49+
}
50+
}

src/components/UI/Form/index.js

+12
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@ import {
1313
import Button from '../Button';
1414
import cloneDeep from 'lodash/cloneDeep';
1515

16+
17+
import CodeEditor from "./CodeEditor";
18+
import Prism from 'prismjs';
19+
1620
const { TextArea } = Input;
1721
const FormItem = AntForm.Item;
1822
const { RangePicker, MonthPicker } = DatePicker;
@@ -209,6 +213,14 @@ class Form extends React.Component {
209213
return (
210214
<TextArea onChange={(...args)=>{this.itemOnChange(item,...args)}} disabled={selectDisabled} placeholder={selectPlaceholder} autosize={{ minRows, maxRows }} />
211215
);
216+
case 'codeEditor':
217+
return (
218+
<CodeEditor
219+
onChange={(...args)=>{this.itemOnChange(item,...args)}}
220+
disabled={selectDisabled}
221+
placeholder={selectPlaceholder}
222+
/>
223+
)
212224
case 'date':
213225
return (
214226
<DatePicker

src/components/css-initials/index.js

+12
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
/*
2+
* @Author: docoder
3+
4+
*/
5+
import cssInitials from 'css-initials';
6+
7+
const toCSS = obj => Object.keys(obj).map(key => `${key}: ${obj[key]};`).join('\n');
8+
9+
export default `
10+
${toCSS(cssInitials)}
11+
12+
`;

yarn.lock

+53
Original file line numberDiff line numberDiff line change
@@ -1675,6 +1675,11 @@ babel-plugin-jest-hoist@^20.0.3:
16751675
resolved "https://registry.yarnpkg.com/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-20.0.3.tgz#afedc853bd3f8dc3548ea671fbe69d03cc2c1767"
16761676
integrity sha1-r+3IU70/jcNUjqZx++adA8wsF2c=
16771677

1678+
babel-plugin-prismjs@^1.1.1:
1679+
version "1.1.1"
1680+
resolved "https://registry.yarnpkg.com/babel-plugin-prismjs/-/babel-plugin-prismjs-1.1.1.tgz#974b2346d6ea8bdb2b16c3fdf1342bbe97fc6f51"
1681+
integrity sha512-MmwxA//jBpXH0IhJ2FbpBJmd6Bvq5rBe3UD3udUqfkkOdh6lmQeYxoVGpkIvLuuXecrynWjpPqwM0JPxErebpQ==
1682+
16781683
"babel-plugin-styled-components@>= 1", babel-plugin-styled-components@^1.10.0:
16791684
version "1.10.0"
16801685
resolved "https://registry.yarnpkg.com/babel-plugin-styled-components/-/babel-plugin-styled-components-1.10.0.tgz#ff1f42ad2cc78c21f26b62266b8f564dbc862939"
@@ -2895,6 +2900,15 @@ cli-width@^2.0.0:
28952900
resolved "https://registry.yarnpkg.com/cli-width/-/cli-width-2.2.0.tgz#ff19ede8a9a5e579324147b0c11f0fbcbabed639"
28962901
integrity sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=
28972902

2903+
clipboard@^2.0.0:
2904+
version "2.0.4"
2905+
resolved "https://registry.yarnpkg.com/clipboard/-/clipboard-2.0.4.tgz#836dafd66cf0fea5d71ce5d5b0bf6e958009112d"
2906+
integrity sha512-Vw26VSLRpJfBofiVaFb/I8PVfdI1OxKcYShe6fm0sP/DtmiWQNCjhM/okTvdCo0G+lMMm1rMYbk4IK4x1X+kgQ==
2907+
dependencies:
2908+
good-listener "^1.2.2"
2909+
select "^1.1.2"
2910+
tiny-emitter "^2.0.0"
2911+
28982912
cliui@^2.1.0:
28992913
version "2.1.0"
29002914
resolved "https://registry.yarnpkg.com/cliui/-/cliui-2.1.0.tgz#4b475760ff80264c762c3a1719032e91c7fea0d1"
@@ -3346,6 +3360,11 @@ [email protected]:
33463360
resolved "https://registry.yarnpkg.com/css-color-names/-/css-color-names-0.0.4.tgz#808adc2e79cf84738069b646cb20ec27beb629e0"
33473361
integrity sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=
33483362

3363+
css-initials@^0.3.1:
3364+
version "0.3.1"
3365+
resolved "https://registry.yarnpkg.com/css-initials/-/css-initials-0.3.1.tgz#0406d78e586fd12b9984a3f7d8a87fcbb2073208"
3366+
integrity sha512-fkshKv9vV8AmcxkAWVQ9DmEAKiqe09GHdnFaXecp0NIfsGnXIHVJAHfsxdRy9KXV0/KiWdjBqrCYto2fYIO4xQ==
3367+
33493368
33503369
version "0.28.7"
33513370
resolved "https://registry.yarnpkg.com/css-loader/-/css-loader-0.28.7.tgz#5f2ee989dd32edd907717f953317656160999c1b"
@@ -3686,6 +3705,11 @@ delayed-stream@~1.0.0:
36863705
resolved "https://registry.yarnpkg.com/delayed-stream/-/delayed-stream-1.0.0.tgz#df3ae199acadfb7d440aaae0b29e2272b24ec619"
36873706
integrity sha1-3zrhmayt+31ECqrgsp4icrJOxhk=
36883707

3708+
delegate@^3.1.2:
3709+
version "3.2.0"
3710+
resolved "https://registry.yarnpkg.com/delegate/-/delegate-3.2.0.tgz#b66b71c3158522e8ab5744f720d8ca0c2af59166"
3711+
integrity sha512-IofjkYBZaZivn0V8nnsMJGBr4jVLxHDheKSW88PyxS5QC4Vo9ZbZVvhzlSxY87fVq3STR6r+4cGepyHkcWOQSw==
3712+
36893713
delegates@^1.0.0:
36903714
version "1.0.0"
36913715
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
@@ -5189,6 +5213,13 @@ globby@^6.1.0:
51895213
pify "^2.0.0"
51905214
pinkie-promise "^2.0.0"
51915215

5216+
good-listener@^1.2.2:
5217+
version "1.2.2"
5218+
resolved "https://registry.yarnpkg.com/good-listener/-/good-listener-1.2.2.tgz#d53b30cdf9313dffb7dc9a0d477096aa6d145c50"
5219+
integrity sha1-1TswzfkxPf+33JoNR3CWqm0UXFA=
5220+
dependencies:
5221+
delegate "^3.1.2"
5222+
51925223
got@^6.7.1:
51935224
version "6.7.1"
51945225
resolved "https://registry.yarnpkg.com/got/-/got-6.7.1.tgz#240cd05785a9a18e561dc1b44b41c763ef1e8db0"
@@ -8453,6 +8484,13 @@ pretty-format@^20.0.3:
84538484
ansi-regex "^2.1.1"
84548485
ansi-styles "^3.0.0"
84558486

8487+
prismjs@^1.17.1:
8488+
version "1.17.1"
8489+
resolved "https://registry.yarnpkg.com/prismjs/-/prismjs-1.17.1.tgz#e669fcbd4cdd873c35102881c33b14d0d68519be"
8490+
integrity sha512-PrEDJAFdUGbOP6xK/UsfkC5ghJsPJviKgnQOoxaDbBjwc8op68Quupwt1DeAFoG8GImPhiKXAvvsH7wDSLsu1Q==
8491+
optionalDependencies:
8492+
clipboard "^2.0.0"
8493+
84568494
private@^0.1.6, private@^0.1.7, private@^0.1.8:
84578495
version "0.1.8"
84588496
resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff"
@@ -9281,6 +9319,11 @@ react-side-effect@^1.1.0:
92819319
exenv "^1.2.1"
92829320
shallowequal "^1.0.1"
92839321

9322+
react-simple-code-editor@^0.10.0:
9323+
version "0.10.0"
9324+
resolved "https://registry.yarnpkg.com/react-simple-code-editor/-/react-simple-code-editor-0.10.0.tgz#73e7ac550a928069715482aeb33ccba36efe2373"
9325+
integrity sha512-bL5W5mAxSW6+cLwqqVWY47Silqgy2DKDTR4hDBrLrUqC5BXc29YVx17l2IZk5v36VcDEq1Bszu2oHm1qBwKqBA==
9326+
92849327
react-slick@~0.24.0:
92859328
version "0.24.0"
92869329
resolved "https://registry.yarnpkg.com/react-slick/-/react-slick-0.24.0.tgz#1a4e078a82de4e9458255d9ce26aa6f3b17b168b"
@@ -9918,6 +9961,11 @@ select-hose@^2.0.0:
99189961
resolved "https://registry.yarnpkg.com/select-hose/-/select-hose-2.0.0.tgz#625d8658f865af43ec962bfc376a37359a4994ca"
99199962
integrity sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=
99209963

9964+
select@^1.1.2:
9965+
version "1.1.2"
9966+
resolved "https://registry.yarnpkg.com/select/-/select-1.1.2.tgz#0e7350acdec80b1108528786ec1d4418d11b396d"
9967+
integrity sha1-DnNQrN7ICxEIUoeG7B1EGNEbOW0=
9968+
99219969
selfsigned@^1.9.1:
99229970
version "1.10.4"
99239971
resolved "https://registry.yarnpkg.com/selfsigned/-/selfsigned-1.10.4.tgz#cdd7eccfca4ed7635d47a08bf2d5d3074092e2cd"
@@ -10700,6 +10748,11 @@ timers-browserify@^2.0.4:
1070010748
dependencies:
1070110749
setimmediate "^1.0.4"
1070210750

10751+
tiny-emitter@^2.0.0:
10752+
version "2.1.0"
10753+
resolved "https://registry.yarnpkg.com/tiny-emitter/-/tiny-emitter-2.1.0.tgz#1d1a56edfc51c43e863cbb5382a72330e3555423"
10754+
integrity sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==
10755+
1070310756
tinycolor2@^1.4.1:
1070410757
version "1.4.1"
1070510758
resolved "https://registry.yarnpkg.com/tinycolor2/-/tinycolor2-1.4.1.tgz#f4fad333447bc0b07d4dc8e9209d8f39a8ac77e8"

0 commit comments

Comments
 (0)