Skip to content

Commit

Permalink
feat: new pin-code component (#1585)
Browse files Browse the repository at this point in the history
  • Loading branch information
sandgraham committed Jul 19, 2019
1 parent 629fd8b commit 91f0822
Show file tree
Hide file tree
Showing 34 changed files with 960 additions and 5 deletions.
16 changes: 16 additions & 0 deletions documentation-site/examples/pin-code/autofocus.js
@@ -0,0 +1,16 @@
// @flow
import React from 'react';
import {Block} from 'baseui/block';
import {Button} from 'baseui/button';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
const [showPinCode, toggle] = React.useState(false);
return (
<Block display="flex">
<Button onClick={() => toggle(s => !s)}>Mount PinCode</Button>
<Block marginLeft="scale300" />
{showPinCode ? <StatefulPinCode autoFocus /> : null}
</Block>
);
}
15 changes: 15 additions & 0 deletions documentation-site/examples/pin-code/basic.js
@@ -0,0 +1,15 @@
// @flow
import React from 'react';
import {PinCode} from 'baseui/pin-code';

export default function() {
const [values, setValues] = React.useState(['', '', '', '']);
return (
<PinCode
values={values}
onChange={({values}) => {
setValues(values);
}}
/>
);
}
26 changes: 26 additions & 0 deletions documentation-site/examples/pin-code/completion.js
@@ -0,0 +1,26 @@
// @flow
import React from 'react';
import {Block} from 'baseui/block';
import {Button} from 'baseui/button';
import {PinCode} from 'baseui/pin-code';

export default function() {
const [values, setValues] = React.useState(['', '', '', '']);
const buttonRef = React.useRef(null);
return (
<Block display="flex">
<PinCode
values={values}
onChange={({values}) => {
setValues(values);
// if all of our inputs are filled in,
// shift focus to our submit button
if (!values.includes('')) {
buttonRef.current && buttonRef.current.focus();
}
}}
/>
<Button ref={buttonRef}>Submit</Button>
</Block>
);
}
17 changes: 17 additions & 0 deletions documentation-site/examples/pin-code/event.js
@@ -0,0 +1,17 @@
// @flow
import React from 'react';
import {PinCode} from 'baseui/pin-code';

export default function() {
const [values, setValues] = React.useState(['', '', '', '']);
return (
<PinCode
values={values}
manageFocus={false}
onChange={({values, event}) => {
// setValues(values);
alert(event.target);
}}
/>
);
}
7 changes: 7 additions & 0 deletions documentation-site/examples/pin-code/id-and-name.js
@@ -0,0 +1,7 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
return <StatefulPinCode id="foo" name="pin-code" />;
}
22 changes: 22 additions & 0 deletions documentation-site/examples/pin-code/length.js
@@ -0,0 +1,22 @@
// @flow
import React from 'react';
import {PinCode} from 'baseui/pin-code';

export default function() {
const [values, setValues] = React.useState([
'',
'',
'',
'',
'',
'',
]);
return (
<PinCode
values={values}
onChange={({values}) => {
setValues(values);
}}
/>
);
}
11 changes: 11 additions & 0 deletions documentation-site/examples/pin-code/no-tab.js
@@ -0,0 +1,11 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
return (
<React.Fragment>
<StatefulPinCode manageFocus={false} />
</React.Fragment>
);
}
23 changes: 23 additions & 0 deletions documentation-site/examples/pin-code/override.js
@@ -0,0 +1,23 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

const overrides = {
Input: {
props: {
overrides: {
InputContainer: {
style: {
// use longhand CSS properties
backgroundColor: 'lightgreen',
borderColor: 'seagreen',
},
},
},
},
},
};

export default function() {
return <StatefulPinCode overrides={overrides} />;
}
7 changes: 7 additions & 0 deletions documentation-site/examples/pin-code/placeholder.js
@@ -0,0 +1,7 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
return <StatefulPinCode placeholder="😀" />;
}
15 changes: 15 additions & 0 deletions documentation-site/examples/pin-code/size.js
@@ -0,0 +1,15 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
return (
<React.Fragment>
<StatefulPinCode size="compact" />
<br />
<StatefulPinCode />
<br />
<StatefulPinCode size="large" />
</React.Fragment>
);
}
15 changes: 15 additions & 0 deletions documentation-site/examples/pin-code/states.js
@@ -0,0 +1,15 @@
// @flow
import React from 'react';
import {StatefulPinCode} from 'baseui/pin-code';

export default function() {
return (
<React.Fragment>
<StatefulPinCode disabled />
<br />
<StatefulPinCode error />
<br />
<StatefulPinCode positive />
</React.Fragment>
);
}
163 changes: 163 additions & 0 deletions documentation-site/pages/components/pin-code.mdx
@@ -0,0 +1,163 @@
<!--
Copyright (c) 2018-2019 Uber Technologies, Inc.

This source code is licensed under the MIT license found in the
LICENSE file in the root directory of this source tree.
-->

import Example from '../../components/example';
import API from '../../components/api';
import Layout from '../../components/layout';
import Overrides from '../../components/overrides';

import PinCodeBasic from 'examples/pin-code/basic.js';
import PinCodeLength from 'examples/pin-code/length.js';
import PinCodeIdAndName from 'examples/pin-code/id-and-name.js';
import PinCodeStates from 'examples/pin-code/states.js';
import PinCodeSizes from 'examples/pin-code/size.js';
import PinCodePlaceholder from 'examples/pin-code/placeholder.js';
import PinCodeNoTab from 'examples/pin-code/no-tab.js';
import PinCodeAutofocus from 'examples/pin-code/autofocus.js';
import PinCodeCompletion from 'examples/pin-code/completion.js';
import PinCodeOverride from 'examples/pin-code/override.js';
import PinCodeEvent from 'examples/pin-code/event.js';

import * as PinCodeExports from 'baseui/pin-code/index.js';
import {StatefulPinCode} from 'baseui/pin-code/index.js';

export default Layout;

# Pin Code

The `PinCode` component is optimized for entering sequences of digits.
The most common application is for entering single-use security codes.
It is optimized for entering digits quickly.

<Example title="Basic Usage" path="pin-code/basic.js">
<PinCodeBasic />
</Example>

Each input collects one digit at a time.
When a digit is entered, focus transfers to the next input in the sequence, until every input is filled in.
A few things to note:

1. You canʼt enter anything other than a digit.
2. You can only enter one character per input.
3. To overwrite the value of an input, you donʼt need to select the text in the input. If you type a digit while the input is focused, the input will update. This is an optimization for quickly editing the inputs.
4. Pressing `Delete` when there is nothing in the input will transfer focus to, and clear the value of, the previous input (if any). This avoids the need to explicitly Shift+Tab & Delete.

<Example title="Changing the code length" path="pin-code/length.js">
<PinCodeLength />
</Example>

The code defaults to a length of 4, but you can change that.
`PinCode` expects an array of strings for the `values` prop.
The number of inputs rendered will match the length of the array.

<Example title="Passing id and name" path="pin-code/id-and-name.js">
<PinCodeIdAndName />
</Example>

You can pass an individual `id` or `name` prop.
`name` will be shared amongst the inputs, meaning they will each have their `name` set to this value.
`id` will have an index appended to whatever string you provide and passed to the respective input.
In the above example, the resulting ids are `foo-0`, `foo-1`, `foo-2`, and `foo-3` and each input has the name `pin-code`.

<Example title="Various states" path="pin-code/states.js">
<PinCodeStates />
</Example>

`PinCode` accepts most of the same boolean props as our other inputs: `disabled`, `error`, `positive`, etc.

<Example title="Various sizes" path="pin-code/size.js">
<PinCodeSizes />
</Example>

You can control the size of the inputs with the `size` prop.

<Example title="Changing the placeholder" path="pin-code/placeholder.js">
<PinCodePlaceholder />
</Example>

If you donʼt like the default placeholder (``), you can change that too.
Notice how each placeholder disappears when any of the inputs have focus.

<Example title="Disable focus management" path="pin-code/no-tab.js">
<PinCodeNoTab />
</Example>

You can disable `PinCode`ʼs built-in focusing logic by toggling the `manageFocus` prop.
It defaults to `true`, which makes it so that when an input receives a digit, focus is automatically changed to the next input.
It also transfers focus to a previous input when `Delete` is pressed with focus on an empty input.
Set `manageFocus` to `false` if, for some reason, you donʼt want this nifty behavior.
You can use the `onChange` handler to implement your own thing.

<Example title="The main Event" path="pin-code/event.js">
<PinCodeEvent />
</Example>

The object passed to `onChange` has two properties.
`values` is the new array of strings that `PinCode` thinks you should update your state with.
Of course, you can decide not to use those values.
If, for some reason, you do not want to use `values`, the `onChange` object also includes an `event` property which references the original input change event.

We do not envision a lot of scenarios where you would need this level of control- but just in case, it is there for you.
Note, if you do decide to go off the rails with `event`, you may want to turn off `manageFocus` as well.
Otherwise you may have focus jumping around in ways inconsistent with your customizations.

<Example title="Autofocus" path="pin-code/autofocus.js">
<PinCodeAutofocus />
</Example>

There is a decent chance that if you are using `PinCode` you want it to be focused from the start.
Simply set `autoFocus` to `true` to focus the first input upon initial mounting of the component.

In the example above, click `Mount PinCode` to ...mount the PinCode component.
With `autoFocus` toggled on, the first input receives focus immediately.

<Example title="Once things are filled in" path="pin-code/completion.js">
<PinCodeCompletion />
</Example>

It is a common pattern to immediately submit the userʼs input once the full pin code has been entered.
In the above example, we shift focus to the submit button once all of our inputs have been filled in.
Keep in mind that folks may have mistyped a digit so auto-submitting might be a bit aggressive.

<Example title="Autocomplete and Copy + Paste" path="pin-code/basic.js">
<PinCodeBasic />
</Example>

Try copying & pasting `1234` into any of the inputs in the example above.

By default, you can only change one input at a time.
But what if a user wants to copy and paste a value in?
Or what if the userʼs browser can [autocomplete verification codes](https://developer.apple.com/documentation/security/password_autofill/enabling_password_autofill_on_an_html_input_element#3001194).

If one of the individual inputs receives a longer string, `PinCode` does some basic validation (is the length right? does it contain only digits?) to see if it can fill all the inputs.
If things seem promising, `PinCode` will call `onChange` will all of the values updated.

## Overrides

<Overrides
name="Pin Code"
component={PinCodeExports}
renderExample={props => <StatefulPinCode {...props} />}
whitelisted={['Root', 'Input']}
/>

**Second Note:** You may have noticed that the `Input` override above does not highlight.
To set the background and/or border styles for an `Input` component, you need to style the nested `InputContainer` override like so:

<Example title="Overriding the Input" path="pin-code/override.js">
<PinCodeOverride />
</Example>

<API
heading="PinCode API"
api={require('!!@uber-web-ui/extract-react-types-loader!../../../src/pin-code/pin-code.js')}
/>

<API
heading="StatefulPinCode API"
api={require('!!@uber-web-ui/extract-react-types-loader!../../../src/pin-code/stateful-pin-code.js')}
/>
4 changes: 4 additions & 0 deletions documentation-site/routes.js
Expand Up @@ -106,6 +106,10 @@ const routes = [
title: 'Phone Input',
itemId: '/components/phone-input',
},
{
title: 'Pin Code',
itemId: '/components/pin-code',
},
{
title: 'Radio',
itemId: '/components/radio',
Expand Down
10 changes: 5 additions & 5 deletions e2e/helpers/index.js
Expand Up @@ -92,9 +92,11 @@ const printInvalidNode = node =>
.join('\n\t')}`;

const printInvalidRule = rule =>
`${printReceived(rule.help)} on ${
rule.nodes.length
} nodes\r\n${rule.nodes.map(printInvalidNode).join('\n')}`;
`Violated rule: ${printReceived(rule.id)}\nReasoning: ${printReceived(
rule.help,
)}\n${rule.nodes.length} nodes involved:\n\n${rule.nodes
.map(printInvalidNode)
.join('\n')}`;

// Add a new method to expect assertions with a very detailed error report
expect.extend({
Expand All @@ -114,7 +116,6 @@ expect.extend({
} violations:\n`,
].concat(accessibilityReport.violations.map(printInvalidRule));
}

if (
finalOptions.incompleteThreshold !== false &&
accessibilityReport.incomplete.length > finalOptions.incompleteThreshold
Expand All @@ -127,7 +128,6 @@ expect.extend({
} incomplete:\n`,
].concat(accessibilityReport.incomplete.map(printInvalidRule));
}

const message = [].concat(violations, incomplete).join('\n');
const pass =
accessibilityReport.violations.length <=
Expand Down
1 change: 1 addition & 0 deletions package.json
Expand Up @@ -152,6 +152,7 @@
"react-input-mask": "^2.0.4",
"react-is": "^16.8.6",
"react-movable": "^2.2.0",
"react-multi-ref": "^1.0.0",
"react-range": "^1.0.5",
"react-virtualized": "^9.21.1",
"smoothscroll-polyfill": "^0.4.3",
Expand Down

0 comments on commit 91f0822

Please sign in to comment.