Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add keyboard support. #84

Merged
merged 5 commits into from Apr 2, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
41 changes: 23 additions & 18 deletions examples/simple.js
Expand Up @@ -15,21 +15,13 @@ function random() {
}

class Test extends React.Component {
constructor(props) {
super(props);
this.state = this.getInitialState();
['onChange', 'setActivityKey', 'reRender', 'toggle'].map(fn => this[fn] = this[fn].bind(this));
state = {
time: random(),
accordion: false,
activeKey: ['4'],
}

getInitialState() {
return {
time: random(),
accordion: false,
activeKey: ['4'],
};
}

onChange(activeKey) {
onChange = (activeKey) => {
this.setState({
activeKey,
});
Expand All @@ -40,7 +32,7 @@ class Test extends React.Component {
for (let i = 0, len = 3; i < len; i++) {
const key = i + 1;
items.push(
<Panel header={`This is panel header ${key}`} key={key} disabled>
<Panel header={`This is panel header ${key}`} key={key} disabled={i === 0}>
<p>{text.repeat(this.state.time)}</p>
</Panel>
);
Expand All @@ -55,30 +47,43 @@ class Test extends React.Component {
</Panel>
);

items.push(
<Panel header={`This is panel header 5`} key="5">
<Collapse defaultActiveKey="1">
<Panel header={`This is panel nest panel`} key="1" id="another-test">
<form>
<label htmlFor="test">Name:&nbsp;</label>
<input type="text" id="test"/>
</form>
</Panel>
</Collapse>
</Panel>
);

return items;
}

setActivityKey() {
setActivityKey = () => {
this.setState({
activeKey: ['2'],
});
}

reRender() {
reRender = () => {
this.setState({
time: random(),
});
}

toggle() {
toggle = () => {
this.setState({
accordion: !this.state.accordion,
});
}

render() {
const accordion = this.state.accordion;
const btn = accordion ? 'accordion' : 'collapse';
const btn = accordion ? 'Mode: accordion' : 'Mode: collapse';
const activeKey = this.state.activeKey;
return (<div style={{ margin: 20, width: 400 }}>
<button onClick={this.reRender}>reRender</button>
Expand Down
5 changes: 3 additions & 2 deletions src/Collapse.jsx
Expand Up @@ -84,6 +84,7 @@ class Collapse extends Component {
prefixCls,
destroyInactivePanel,
openAnimation: this.state.openAnimation,
accordion,
children: child.props.children,
onItemClick: disabled ? null : () => this.onClickItem(key),
};
Expand All @@ -102,13 +103,13 @@ class Collapse extends Component {
}

render() {
const { prefixCls, className, style } = this.props;
const { prefixCls, className, style, accordion } = this.props;
const collapseClassName = classNames({
[prefixCls]: true,
[className]: !!className,
});
return (
<div className={collapseClassName} style={style}>
<div className={collapseClassName} style={style} role={accordion ? 'tablist' : null}>
{this.getItems()}
</div>
);
Expand Down
20 changes: 16 additions & 4 deletions src/Panel.jsx
Expand Up @@ -5,12 +5,19 @@ import PanelContent from './PanelContent';
import Animate from 'rc-animate';

class CollapsePanel extends Component {
handleItemClick() {
handleItemClick = () => {
if (this.props.onItemClick) {
this.props.onItemClick();
}
}

handleKeyPress = (e) => {
e.preventDefault();
if (e.charCode === 13 || e.charCode === 32) {
this.handleItemClick();
}
}

render() {
const {
className,
Expand All @@ -24,6 +31,7 @@ class CollapsePanel extends Component {
showArrow,
destroyInactivePanel,
disabled,
accordion,
forceRender,
} = this.props;
const headerCls = classNames(`${prefixCls}-header`, {
Expand All @@ -35,12 +43,14 @@ class CollapsePanel extends Component {
[`${prefixCls}-item-disabled`]: disabled,
}, className);
return (
<div className={itemCls} style={style} id={id} role="tablist">
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why remove role="tablist"?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I just moved it down to an inner div, since what we want to focus would be the header instead of the whole panel.

<div className={itemCls} style={style} id={id}>
<div
className={headerCls}
onClick={this.handleItemClick.bind(this)}
role="tab"
onClick={this.handleItemClick}
role={accordion ? 'tab' : 'button'}
tabIndex={disabled ? -1 : 0}
aria-expanded={isActive}
onKeyPress={this.handleKeyPress}
>
{showArrow && <i className="arrow" />}
{header}
Expand All @@ -56,6 +66,7 @@ class CollapsePanel extends Component {
isActive={isActive}
destroyInactivePanel={destroyInactivePanel}
forceRender={forceRender}
role={accordion ? 'tabpanel' : null}
>
{children}
</PanelContent>
Expand Down Expand Up @@ -86,6 +97,7 @@ CollapsePanel.propTypes = {
style: PropTypes.object,
destroyInactivePanel: PropTypes.bool,
disabled: PropTypes.bool,
accordion: PropTypes.bool,
forceRender: PropTypes.bool,
};

Expand Down
5 changes: 3 additions & 2 deletions src/PanelContent.jsx
Expand Up @@ -12,7 +12,7 @@ class PanelContent extends Component {
if (!this._isActived) {
return null;
}
const { prefixCls, isActive, children, destroyInactivePanel, forceRender } = this.props;
const { prefixCls, isActive, children, destroyInactivePanel, forceRender, role } = this.props;
const contentCls = classnames({
[`${prefixCls}-content`]: true,
[`${prefixCls}-content-active`]: isActive,
Expand All @@ -23,7 +23,7 @@ class PanelContent extends Component {
return (
<div
className={contentCls}
role="tabpanel"
role={role}
>{child}</div>
);
}
Expand All @@ -35,6 +35,7 @@ PanelContent.propTypes = {
children: PropTypes.any,
destroyInactivePanel: PropTypes.bool,
forceRender: PropTypes.bool,
role: PropTypes.string,
};

export default PanelContent;
30 changes: 30 additions & 0 deletions tests/index.spec.js
Expand Up @@ -91,6 +91,16 @@ describe('collapse', () => {
done();
}, 500);
});

it('should not have role', () => {
const item = findDOMNode(collapse, 'rc-collapse')[0];
expect(item.getAttribute('role')).to.eql(null);
});

it('should set button role on panel title', () => {
const item = findDOMNode(collapse, 'rc-collapse-header')[0];
expect(item.getAttribute('role')).to.eql('button');
});
});

describe('destroyInactivePanel', () => {
Expand Down Expand Up @@ -195,6 +205,26 @@ describe('collapse', () => {
}, 500);
}, 500);
});

it('should add tab role on panel title', () => {
const item = findDOMNode(collapse, 'rc-collapse-header')[0];
expect(item.getAttribute('role')).to.eql('tab');
});

it('should add tablist role on accordion', () => {
const item = findDOMNode(collapse, 'rc-collapse')[0];
expect(item.getAttribute('role')).to.eql('tablist');
});

it('should add tablist role on PanelContent', (done) => {
const header = findDOMNode(collapse, 'rc-collapse-header')[0];
Simulate.click(header);
setTimeout(() => {
const item = findDOMNode(collapse, 'rc-collapse-content')[0];
expect(item.getAttribute('role')).to.eql('tabpanel');
done();
}, 500);
});
});

describe('forceRender', () => {
Expand Down