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

Right to left support. #311

Merged
merged 2 commits into from
Dec 12, 2019
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,12 @@ Provide a custom class name for the active tab panel.

> This option can also be set directly at the `<TabPanel />` component.

#### direction: `string`

> default: `"ltr"`

Provide the direction of the component, can be either rtl or ltr.

### &lt;TabList /&gt;

If you specify additional props on the `<TabList />` component they will be forwarded to the rendered `<ul />`.
Expand Down
2 changes: 2 additions & 0 deletions examples/src/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,14 @@ import './example.less';
import SuperMario from './components/examples/SuperMario';
import MattGroening from './components/examples/MattGroening';
import Avengers from './components/examples/Avengers';
import RightToLeft from './components/examples/RightToLeft';

ReactDOM.render(
<div>
<SuperMario />
<MattGroening />
<Avengers />
<RightToLeft />
</div>,
document.getElementById('example'),
);
4 changes: 3 additions & 1 deletion examples/src/components/ExampleItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ export default class ExampleItem extends Component {
<div className={editorClassNames}>
<LiveEditor ignoreTabKey />
</div>
<LivePreview />
<LivePreview
style={{ dir: this.props.direction === 'rtl' ? 'rtl' : 'ltr' }}
/>
</div>
</LiveProvider>
</div>
Expand Down
77 changes: 77 additions & 0 deletions examples/src/components/examples/RightToLeft.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
import React from 'react';
import ExampleItem from '../ExampleItem';

const code = `const Component = (
<div dir="rtl">
<Tabs direction={'rtl'}>
<TabList>
<Tab>כותרת</Tab>
<Tab disabled>כותרת כבויה</Tab>
<Tab>כותרת שנייה</Tab>
<Tab>כותרת שלישית</Tab>
</TabList>
<TabPanel>
<p>
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
</p>
<p>
Source:{' '}
<a href="https://en.wikipedia.org/wiki/" target="_blank">
Wikipedia
</a>
</p>
</TabPanel>
<TabPanel>
<p>
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
</p>
<p>
Source:{' '}
<a href="https://en.wikipedia.org/wiki/" target="_blank">
Wikipedia
</a>
</p>
</TabPanel>
<TabPanel>
<p>
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
</p>
<p>
Source:{' '}
<a href="https://en.wikipedia.org/wiki/" target="_blank">
Wikipedia
</a>
</p>
</TabPanel>
<TabPanel>
<h4>תת כותרת</h4>
<p>
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית לורם איפסום דולור סיט אמט, קונסקטורר אדיפיסינג אלית. סת אלמנקום ניסי נון ניבאה. דס איאקוליס וולופטה דיאם. וסטיבולום אט דולור, קראס אגת לקטוס וואל אאוגו וסטיבולום סוליסי טידום בעליק. קונדימנטום קורוס בליקרה, נונסטי קלובר בריקנה סטום, לפריקך תצטריק לרטי.
</p>
<p>
Source:{' '}
<a href="https://en.wikipedia.org/wiki/" target="_blank">
Wikipedia
</a>
</p>
</TabPanel>
</Tabs>
</div>
);

render(Component);`;

const hint =
'This is an example of a right to left option. Just pass the `direction` prop to the <Tabs /> element';

export default () => (
<ExampleItem
code={code}
direction="rtl"
hint={hint}
label="Right To Left Example"
/>
);
1 change: 1 addition & 0 deletions src/components/Tabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export default class Tabs extends Component {

static propTypes = {
children: childrenPropType,
direction: PropTypes.oneOf(['rtl', 'ltr']),
className: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
Expand Down
14 changes: 12 additions & 2 deletions src/components/UncontrolledTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ export default class UncontrolledTabs extends Component {

static propTypes = {
children: childrenPropType,
direction: PropTypes.oneOf(['rtl', 'ltr']),
className: PropTypes.oneOfType([
PropTypes.string,
PropTypes.array,
Expand Down Expand Up @@ -241,6 +242,7 @@ export default class UncontrolledTabs extends Component {
}

handleKeyDown = e => {
const { direction } = this.props;
if (this.isTabFromContainer(e.target)) {
let { selectedIndex: index } = this.props;
let preventDefault = false;
Expand All @@ -254,12 +256,20 @@ export default class UncontrolledTabs extends Component {

if (e.keyCode === 37 || e.keyCode === 38) {
// Select next tab to the left
index = this.getPrevTab(index);
if (direction === 'rtl') {
index = this.getNextTab(index);
} else {
index = this.getPrevTab(index);
}
preventDefault = true;
useSelectedIndex = true;
} else if (e.keyCode === 39 || e.keyCode === 40) {
// Select next tab to the right
index = this.getNextTab(index);
if (direction === 'rtl') {
index = this.getPrevTab(index);
} else {
index = this.getNextTab(index);
}
preventDefault = true;
useSelectedIndex = true;
} else if (e.keyCode === 35) {
Expand Down
11 changes: 11 additions & 0 deletions src/components/__tests__/Tabs-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,17 @@ describe('<Tabs />', () => {
assertTabSelected(wrapper, 1);
});

test('should update selectedIndex when arrow left key pressed (RTL)', () => {
const wrapper = mount(createTabs({ direction: 'rtl' }));
wrapper
.find(Tab)
.at(1)
.simulate('focus')
.simulate('keydown', { keyCode: 37 });

assertTabSelected(wrapper, 1);
});

test.skip('should not change selectedIndex when arrow left key pressed on a disabled tab', () => {
const wrapper = mount(createTabs({ defaultIndex: 0 }));
wrapper
Expand Down