This repository has been archived on 2022-08-14. You can view files and clone it, but cannot push or open issues or pull requests.
outline/frontend/scenes/Search/components/SearchField/SearchField.js

63 lines
1.3 KiB
JavaScript

// @flow
import React, { Component } from 'react';
import { Flex } from 'reflexbox';
import styled from 'styled-components';
import searchImg from 'assets/icons/search.svg';
const Field = styled.input`
width: 100%;
padding: 10px;
font-size: 48px;
font-weight: 400;
outline: none;
border: 0;
::-webkit-input-placeholder { color: #ccc; }
:-moz-placeholder { color: #ccc; }
::-moz-placeholder { color: #ccc; }
:-ms-input-placeholder { color: #ccc; }
`;
const Icon = styled.img`
width: 38px;
margin-bottom: -5px;
margin-right: 10px;
opacity: 0.15;
`;
class SearchField extends Component {
input: HTMLElement;
props: {
onChange: Function,
};
handleChange = (ev: SyntheticEvent) => {
this.props.onChange(ev.currentTarget.value ? ev.currentTarget.value : '');
};
focusInput = (ev: SyntheticEvent) => {
this.input.focus();
};
setRef = (ref: HTMLElement) => {
this.input = ref;
};
render() {
return (
<Flex>
<Icon src={searchImg} alt="Search" onClick={this.focusInput} />
<Field
{...this.props}
innerRef={this.setRef}
onChange={this.handleChange}
placeholder="Search"
autoFocus
/>
</Flex>
);
}
}
export default SearchField;