mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-24 02:59:58 +08:00
style: update code style for space-before-function-paren
This commit is contained in:
parent
cd1391e6a2
commit
68b51e298d
@ -28,7 +28,6 @@
|
||||
"react/prefer-es6-class": 0,
|
||||
"react/jsx-closing-bracket-location": 0,
|
||||
"react/jsx-no-bind": 0,
|
||||
"space-before-function-paren": 0,
|
||||
"no-param-reassign": 0,
|
||||
"max-len": 0,
|
||||
"object-shorthand": 0,
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { Alert } from 'antd';
|
||||
|
||||
const onClose = function(e) {
|
||||
const onClose = function (e) {
|
||||
console.log(e, '我要被关闭啦!');
|
||||
};
|
||||
|
||||
|
@ -11,7 +11,7 @@
|
||||
````jsx
|
||||
import { DatePicker } from 'antd';
|
||||
|
||||
const disabledDate = function(current) {
|
||||
const disabledDate = function (current) {
|
||||
// can not select days after today
|
||||
return current && current.getTime() > Date.now();
|
||||
};
|
||||
|
@ -8,7 +8,7 @@
|
||||
|
||||
````jsx
|
||||
import { Menu, Dropdown, Icon } from 'antd';
|
||||
const onClick = function({ key }) {
|
||||
const onClick = function ({ key }) {
|
||||
console.log('点击了菜单' + key);
|
||||
};
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { message, Button } from 'antd';
|
||||
|
||||
const success = function() {
|
||||
const success = function () {
|
||||
message.success('这是一条成功的提示,并将于10秒后消失', 10);
|
||||
};
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { message, Button } from 'antd';
|
||||
|
||||
const info = function() {
|
||||
const info = function () {
|
||||
message.info('这是一条普通的提醒');
|
||||
};
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { message, Button } from 'antd';
|
||||
|
||||
const success = function() {
|
||||
const success = function () {
|
||||
let hide = message.loading('正在执行中...', 0);
|
||||
// 异步手动移除
|
||||
setTimeout(hide, 2500);
|
||||
|
@ -9,15 +9,15 @@
|
||||
````jsx
|
||||
import { message, Button } from 'antd';
|
||||
|
||||
const success = function() {
|
||||
const success = function () {
|
||||
message.success('这是一条成功提示');
|
||||
};
|
||||
|
||||
const error = function() {
|
||||
const error = function () {
|
||||
message.error('这是一条报错提示');
|
||||
};
|
||||
|
||||
const warn = function() {
|
||||
const warn = function () {
|
||||
message.warn('这是一条警告提示');
|
||||
};
|
||||
|
||||
|
@ -14,10 +14,10 @@ function showConfirm() {
|
||||
confirm({
|
||||
title: '您是否确认要删除这项内容',
|
||||
content: '一些解释',
|
||||
onOk: function() {
|
||||
onOk: function () {
|
||||
console.log('确定');
|
||||
},
|
||||
onCancel: function() {}
|
||||
onCancel: function () {}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -10,7 +10,7 @@
|
||||
import { Modal, Button } from 'antd';
|
||||
|
||||
const Test = React.createClass({
|
||||
getInitialState: function() {
|
||||
getInitialState: function () {
|
||||
return {
|
||||
loading: false,
|
||||
visible: false
|
||||
|
@ -13,7 +13,7 @@ function info() {
|
||||
Modal.info({
|
||||
title: '这是一条通知信息',
|
||||
content: '一些附加信息一些附加信息一些附加信息',
|
||||
onOk: function() {}
|
||||
onOk: function () {}
|
||||
});
|
||||
}
|
||||
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { Button, notification } from 'antd';
|
||||
|
||||
const openNotification = function() {
|
||||
const openNotification = function () {
|
||||
notification.open({
|
||||
message: '这是标题',
|
||||
description: '这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案'
|
||||
|
@ -9,7 +9,7 @@
|
||||
````jsx
|
||||
import { Button, notification } from 'antd';
|
||||
|
||||
const openNotification = function() {
|
||||
const openNotification = function () {
|
||||
const args = {
|
||||
message: '这是标题',
|
||||
description: '我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭',
|
||||
|
@ -9,11 +9,11 @@
|
||||
````jsx
|
||||
import { Button, notification } from 'antd';
|
||||
|
||||
const close = function() {
|
||||
const close = function () {
|
||||
console.log('我被默认的关闭按钮关闭了!');
|
||||
};
|
||||
|
||||
const openNotification = function() {
|
||||
const openNotification = function () {
|
||||
const args = {
|
||||
message: '这是标题',
|
||||
description: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案',
|
||||
|
@ -9,13 +9,13 @@
|
||||
````jsx
|
||||
import { Button, notification } from 'antd';
|
||||
|
||||
const close = function() {
|
||||
const close = function () {
|
||||
console.log('我被默认的关闭按钮关闭了!');
|
||||
};
|
||||
|
||||
const openNotification = function() {
|
||||
const openNotification = function () {
|
||||
const key = 'open' + Date.now();
|
||||
const btnClick = function() {
|
||||
const btnClick = function () {
|
||||
// 隐藏提醒框
|
||||
notification.close(key);
|
||||
};
|
||||
|
@ -9,8 +9,8 @@
|
||||
````jsx
|
||||
import { Button, notification } from 'antd';
|
||||
|
||||
const openNotificationWithIcon = function(type) {
|
||||
return function() {
|
||||
const openNotificationWithIcon = function (type) {
|
||||
return function () {
|
||||
notification[type]({
|
||||
message: '这是标题',
|
||||
description: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案'
|
||||
|
@ -13,7 +13,7 @@ const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
key: 'name',
|
||||
render: function(text) {
|
||||
render: function (text) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
}, {
|
||||
@ -27,7 +27,7 @@ const columns = [{
|
||||
}, {
|
||||
title: '操作',
|
||||
key: 'operation',
|
||||
render: function(text, record) {
|
||||
render: function (text, record) {
|
||||
return (
|
||||
<span>
|
||||
<a href="#">操作一{record.name}</a>
|
||||
|
@ -12,7 +12,7 @@ import { Table } from 'antd';
|
||||
const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
render: function(text) {
|
||||
render: function (text) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
}, {
|
||||
|
@ -13,7 +13,7 @@ import { Table } from 'antd';
|
||||
|
||||
// 事例表中第四行合并了五列,除了第一列设置 colSpan = 5 外
|
||||
// 其他列的第四行 colSpan = 0 (被合并掉,不会渲染)
|
||||
const renderContent = function(value, row, index) {
|
||||
const renderContent = function (value, row, index) {
|
||||
let obj = {
|
||||
children: value,
|
||||
props: {}
|
||||
@ -27,7 +27,7 @@ const renderContent = function(value, row, index) {
|
||||
const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
render: function(text, row, index) {
|
||||
render: function (text, row, index) {
|
||||
if (index < 4) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
@ -46,7 +46,7 @@ const columns = [{
|
||||
title: '家庭电话',
|
||||
colSpan: 2,
|
||||
dataIndex: 'tel',
|
||||
render: function(value, row, index) {
|
||||
render: function (value, row, index) {
|
||||
let obj = {
|
||||
children: value,
|
||||
props: {}
|
||||
|
@ -33,16 +33,16 @@ const columns = [{
|
||||
}],
|
||||
// 指定确定筛选的条件函数
|
||||
// 这里是名字中第一个字是 value
|
||||
onFilter: function(value, record) {
|
||||
onFilter: function (value, record) {
|
||||
return record.name.indexOf(value) === 0;
|
||||
},
|
||||
sorter: function(a, b) {
|
||||
sorter: function (a, b) {
|
||||
return a.name.length - b.name.length;
|
||||
}
|
||||
}, {
|
||||
title: '年龄',
|
||||
dataIndex: 'age',
|
||||
sorter: function(a, b) {
|
||||
sorter: function (a, b) {
|
||||
return a.age - b.age;
|
||||
}
|
||||
}, {
|
||||
@ -56,10 +56,10 @@ const columns = [{
|
||||
value: '西湖'
|
||||
}],
|
||||
filterMultiple: false,
|
||||
onFilter: function(value, record) {
|
||||
onFilter: function (value, record) {
|
||||
return record.address.indexOf(value) === 0;
|
||||
},
|
||||
sorter: function(a, b) {
|
||||
sorter: function (a, b) {
|
||||
return a.address.length - b.address.length;
|
||||
}
|
||||
}];
|
||||
|
@ -12,7 +12,7 @@ import { Table } from 'antd';
|
||||
const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
render: function(text) {
|
||||
render: function (text) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
}, {
|
||||
@ -37,10 +37,10 @@ const pagination = {
|
||||
total: data.length,
|
||||
current: 1,
|
||||
showSizeChanger: true,
|
||||
onShowSizeChange: function(current, pageSize) {
|
||||
onShowSizeChange: function (current, pageSize) {
|
||||
console.log('Current: ', current, '; PageSize: ', pageSize);
|
||||
},
|
||||
onChange: function(current) {
|
||||
onChange: function (current) {
|
||||
console.log('Current: ', current);
|
||||
}
|
||||
};
|
||||
|
@ -12,7 +12,7 @@ import { Table } from 'antd';
|
||||
const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
render: function(text) {
|
||||
render: function (text) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
}, {
|
||||
@ -41,7 +41,7 @@ const data = [{
|
||||
|
||||
// 通过 rowSelection 对象表明需要行选择
|
||||
const rowSelection = {
|
||||
getCheckboxProps: function(record) {
|
||||
getCheckboxProps: function (record) {
|
||||
return {
|
||||
defaultChecked: record.name === '李大嘴', // 配置默认勾选的列
|
||||
disabled: record.name === '胡彦祖' // 配置无法勾选的列
|
||||
@ -50,10 +50,10 @@ const rowSelection = {
|
||||
onChange(selectedRowKeys) {
|
||||
console.log('selectedRowKeys changed: ' + selectedRowKeys);
|
||||
},
|
||||
onSelect: function(record, selected, selectedRows) {
|
||||
onSelect: function (record, selected, selectedRows) {
|
||||
console.log(record, selected, selectedRows);
|
||||
},
|
||||
onSelectAll: function(selected, selectedRows) {
|
||||
onSelectAll: function (selected, selectedRows) {
|
||||
console.log(selected, selectedRows);
|
||||
},
|
||||
};
|
||||
|
@ -12,7 +12,7 @@ import { Table } from 'antd';
|
||||
const columns = [{
|
||||
title: '姓名',
|
||||
dataIndex: 'name',
|
||||
render: function(text) {
|
||||
render: function (text) {
|
||||
return <a href="#">{text}</a>;
|
||||
}
|
||||
}, {
|
||||
@ -44,10 +44,10 @@ const rowSelection = {
|
||||
onChange(selectedRowKeys) {
|
||||
console.log('selectedRowKeys changed: ' + selectedRowKeys);
|
||||
},
|
||||
onSelect: function(record, selected, selectedRows) {
|
||||
onSelect: function (record, selected, selectedRows) {
|
||||
console.log(record, selected, selectedRows);
|
||||
},
|
||||
onSelectAll: function(selected, selectedRows) {
|
||||
onSelectAll: function (selected, selectedRows) {
|
||||
console.log(selected, selectedRows);
|
||||
}
|
||||
};
|
||||
|
@ -11,7 +11,7 @@ import { Upload, Button, Icon, message } from 'antd';
|
||||
|
||||
const props = {
|
||||
action: '/upload.do',
|
||||
beforeUpload: function(file) {
|
||||
beforeUpload: function (file) {
|
||||
const isJPG = file.type === 'image/jpeg';
|
||||
if (!isJPG) {
|
||||
message.error('只能上传 JPG 文件哦!');
|
||||
|
Loading…
Reference in New Issue
Block a user