Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 | // Copyright (c) 2015-present, salesforce.com, inc. All rights reserved
// Licensed under BSD 3-Clause - see LICENSE.txt or git.io/sfdc-license
import React, { useRef } from 'react';
import PropTypes from 'prop-types';
import _ from '../../../shared/helpers';
import { UtilityIcon } from '../../icons/base/example';
// Mimics the behavior of setting focus on an input when clicking a label
const useFocus = () => {
const htmlElRef = useRef(null);
const setFocus = () => {
htmlElRef.current && htmlElRef.current.focus();
};
return [htmlElRef, setFocus];
};
const FauxInput = props => {
const [fauxInput, setFauxInputFocus] = useFocus();
const uniqueId = props.label ? _.uniqueId('slds-faux-input-label-') : null;
return (
<div className="slds-faux-input_container">
{props.label && (
<span
className="slds-faux-input_label"
id={uniqueId}
onClick={setFauxInputFocus}
>
{props.label}
</span>
)}
<button
className="slds-faux-input"
aria-labelledby={uniqueId}
ref={fauxInput}
>
{!props.label && (
<span className="slds-assistive-text">{props.assistiveText}</span>
)}
<UtilityIcon
symbol="search"
className="slds-icon slds-icon_x-small slds-icon-text-default"
containerClassName="slds-input__icon slds-input__icon_right"
assistiveText={false}
title={false}
/>
</button>
</div>
);
};
FauxInput.propTypes = {
label: PropTypes.string,
assistiveText: PropTypes.string.isRequired
};
export default FauxInput;
|