Chap06 -> Understanding controlled components

This commit is contained in:
Jason Zhu 2022-03-30 22:36:10 +11:00
parent c913b32ddb
commit 228c9e9417

View File

@ -1,14 +1,23 @@
/** @jsxImportSource @emotion/react */ /** @jsxImportSource @emotion/react */
import { css } from '@emotion/react'; import { css } from '@emotion/react';
import React from 'react'; import React from 'react';
import { Link } from 'react-router-dom'; import { Link, useSearchParams } from 'react-router-dom';
import { UserIcon } from './Icons'; import { UserIcon } from './Icons';
import { fontFamily, fontSize, gray1, gray2, gray5 } from './Styles'; import { fontFamily, fontSize, gray1, gray2, gray5 } from './Styles';
export const Header = () => { export const Header = () => {
const [searchParams] = useSearchParams();
const criteria = searchParams.get('criteria') || '';
const [search, setSearch] = React.useState(criteria);
const handleSearchInputChange = (e: React.ChangeEvent<HTMLInputElement>) => { const handleSearchInputChange = (e: React.ChangeEvent<HTMLInputElement>) => {
console.log(e.currentTarget.value); setSearch(e.currentTarget.value);
};
const handleSubmit = (e: React.FormEvent) => {
e.preventDefault();
console.log(search);
}; };
return ( return (
@ -38,9 +47,11 @@ export const Header = () => {
> >
Q & A Q & A
</Link> </Link>
<form onSubmit={handleSubmit}>
<input <input
type="text" type="text"
placeholder="Search ..." placeholder="Search ..."
value={search}
onChange={handleSearchInputChange} onChange={handleSearchInputChange}
css={css` css={css`
box-sizing: border-box; box-sizing: border-box;
@ -58,6 +69,7 @@ export const Header = () => {
} }
`} `}
/> />
</form>
<Link <Link
to="signin" to="signin"
css={css` css={css`