Proyectos de Subversion LeadersLinked - Antes de SPA

Rev

Rev 7007 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 7007 Rev 7011
Línea 1... Línea 1...
1
import React, { useEffect } from 'react'
1
import React, { useState } from 'react'
2
import { useForm } from 'react-hook-form'
2
import { useForm } from 'react-hook-form'
3
import { useHistory } from 'react-router-dom'
3
import { useHistory } from 'react-router-dom'
Línea 4... Línea 4...
4
 
4
 
Línea 5... Línea 5...
5
import SearchInput from '../../../UI/SearchInput'
5
import SearchInput from '../../../UI/SearchInput'
-
 
6
 
6
 
7
const NavSearch = () => {
Línea 7... Línea 8...
7
const NavSearch = () => {
8
  const [keyword, setKeyword] = useState('')
Línea 8... Línea 9...
8
  const history = useHistory()
9
  const history = useHistory()
9
 
10
 
10
  const { handleSubmit, register, setValue, watch, reset } = useForm()
11
  const { handleSubmit } = useForm()
11
 
12
 
Línea 12... Línea -...
12
  const onSubmit = handleSubmit(({ keyword }) => {
-
 
13
    history.replace(`/search/entity/user?keyword=${keyword}`)
-
 
14
    reset()
-
 
15
  })
-
 
16
 
13
  const onSubmit = handleSubmit(() => {
17
  useEffect(() => {
14
    history.replace(`/search/entity/user?keyword=${keyword}`)
18
    register('keyword', { required: true })
15
    setKeyword('')
19
  }, [])
16
  })
20
 
17
 
21
  return (
18
  return (
22
    <SearchInput
19
    <SearchInput
23
      as="form"
20
      as="form"
24
      onSubmit={onSubmit}
21
      onSubmit={onSubmit}
Línea 25... Línea 22...
25
      onChange={(e) => setValue('keyword', e.target.value)}
22
      onChange={(e) => setKeyword(e.target.value)}