Skip to content

Commit

Permalink
style: update code style for space-before-function-paren
Browse files Browse the repository at this point in the history
  • Loading branch information
benjycui committed Jan 27, 2016
1 parent cd1391e commit 68b51e2
Show file tree
Hide file tree
Showing 24 changed files with 44 additions and 45 deletions.
1 change: 0 additions & 1 deletion .eslintrc
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion components/alert/demo/closable.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { Alert } from 'antd';

const onClose = function(e) {
const onClose = function (e) {
console.log(e, '我要被关闭啦!');
};

Expand Down
2 changes: 1 addition & 1 deletion components/date-picker/demo/disabled-date.md
Original file line number Diff line number Diff line change
Expand Up @@ -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();
};
Expand Down
2 changes: 1 addition & 1 deletion components/dropdown/demo/event.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

````jsx
import { Menu, Dropdown, Icon } from 'antd';
const onClick = function({ key }) {
const onClick = function ({ key }) {
console.log('点击了菜单' + key);
};

Expand Down
2 changes: 1 addition & 1 deletion components/message/demo/duration.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { message, Button } from 'antd';

const success = function() {
const success = function () {
message.success('这是一条成功的提示,并将于10秒后消失', 10);
};

Expand Down
2 changes: 1 addition & 1 deletion components/message/demo/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { message, Button } from 'antd';

const info = function() {
const info = function () {
message.info('这是一条普通的提醒');
};

Expand Down
2 changes: 1 addition & 1 deletion components/message/demo/loading.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { message, Button } from 'antd';

const success = function() {
const success = function () {
let hide = message.loading('正在执行中...', 0);
// 异步手动移除
setTimeout(hide, 2500);
Expand Down
6 changes: 3 additions & 3 deletions components/message/demo/other.md
Original file line number Diff line number Diff line change
Expand Up @@ -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('这是一条警告提示');
};

Expand Down
4 changes: 2 additions & 2 deletions components/modal/demo/confirm.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ function showConfirm() {
confirm({
title: '您是否确认要删除这项内容',
content: '一些解释',
onOk: function() {
onOk: function () {
console.log('确定');
},
onCancel: function() {}
onCancel: function () {}
});
}

Expand Down
2 changes: 1 addition & 1 deletion components/modal/demo/footer.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
import { Modal, Button } from 'antd';

const Test = React.createClass({
getInitialState: function() {
getInitialState: function () {
return {
loading: false,
visible: false
Expand Down
2 changes: 1 addition & 1 deletion components/modal/demo/info.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ function info() {
Modal.info({
title: '这是一条通知信息',
content: '一些附加信息一些附加信息一些附加信息',
onOk: function() {}
onOk: function () {}
});
}

Expand Down
2 changes: 1 addition & 1 deletion components/notification/demo/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { Button, notification } from 'antd';

const openNotification = function() {
const openNotification = function () {
notification.open({
message: '这是标题',
description: '这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案这是提示框的文案'
Expand Down
2 changes: 1 addition & 1 deletion components/notification/demo/duration.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
````jsx
import { Button, notification } from 'antd';

const openNotification = function() {
const openNotification = function () {
const args = {
message: '这是标题',
description: '我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭,我不会自动关闭',
Expand Down
4 changes: 2 additions & 2 deletions components/notification/demo/onclose.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案',
Expand Down
6 changes: 3 additions & 3 deletions components/notification/demo/with-btn.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
};
Expand Down
4 changes: 2 additions & 2 deletions components/notification/demo/with-icon.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: '这是提示框的文案这是提示框示框的文案这是提示是提示框的文案这是提示框的文案'
Expand Down
4 changes: 2 additions & 2 deletions components/table/demo/basic.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const columns = [{
title: '姓名',
dataIndex: 'name',
key: 'name',
render: function(text) {
render: function (text) {
return <a href="#">{text}</a>;
}
}, {
Expand All @@ -27,7 +27,7 @@ const columns = [{
}, {
title: '操作',
key: 'operation',
render: function(text, record) {
render: function (text, record) {
return (
<span>
<a href="#">操作一{record.name}</a>
Expand Down
2 changes: 1 addition & 1 deletion components/table/demo/bordered.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Table } from 'antd';
const columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
render: function (text) {
return <a href="#">{text}</a>;
}
}, {
Expand Down
6 changes: 3 additions & 3 deletions components/table/demo/colspan-rowspan.md
Original file line number Diff line number Diff line change
Expand Up @@ -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: {}
Expand All @@ -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>;
}
Expand All @@ -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: {}
Expand Down
10 changes: 5 additions & 5 deletions components/table/demo/head.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
}, {
Expand All @@ -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;
}
}];
Expand Down
6 changes: 3 additions & 3 deletions components/table/demo/paging.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Table } from 'antd';
const columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
render: function (text) {
return <a href="#">{text}</a>;
}
}, {
Expand All @@ -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);
}
};
Expand Down
8 changes: 4 additions & 4 deletions components/table/demo/row-selection-props.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Table } from 'antd';
const columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
render: function (text) {
return <a href="#">{text}</a>;
}
}, {
Expand Down Expand Up @@ -41,7 +41,7 @@ const data = [{

// 通过 rowSelection 对象表明需要行选择
const rowSelection = {
getCheckboxProps: function(record) {
getCheckboxProps: function (record) {
return {
defaultChecked: record.name === '李大嘴', // 配置默认勾选的列
disabled: record.name === '胡彦祖' // 配置无法勾选的列
Expand All @@ -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);
},
};
Expand Down
6 changes: 3 additions & 3 deletions components/table/demo/row-selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import { Table } from 'antd';
const columns = [{
title: '姓名',
dataIndex: 'name',
render: function(text) {
render: function (text) {
return <a href="#">{text}</a>;
}
}, {
Expand Down Expand Up @@ -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);
}
};
Expand Down
2 changes: 1 addition & 1 deletion components/upload/demo/beforeUpload.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 文件哦!');
Expand Down

0 comments on commit 68b51e2

Please sign in to comment.