最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - React - useMemo has a complex expression - Extract it to a separate variable so it can be statically checked - Stac

programmeradmin1浏览0评论

I'm trying to use useMemo but a I got a message from lint:

React Hook useMemo has a plex expression in the dependency array. Extract it to a separate variable so it can be statically checked react-hooks/exhaustive-deps.

What could it be?

const [selectedDate, setSelectedDate] = useState("Escolha uma data para pagamento");
const itens = useMemo(() => {
  if (!contrato.propostas || contrato.propostas.length == 0) return [];
  let dates = contrato.propostas.map(p => p.vencimento)
  dates = Array.from(new Set(dates)).map((item) => ({
    id: item,
    option: item
  }))
  if (dates.length === 1 && selectedDate !== contrato.filterByDate) setSelectedDate(dates[0].option)
  if (contrato.filterByDate && dates.find(d => d.id === contrato.filterByDate) !== -1) setSelectedDate(contrato.filterByDate);
  return dates;
}, [JSON.stringify(contrato.propostas), contrato.filterByDate, selectedDate])

contrato and contrato.propostas are objects.
contrato.filterByDate is a string.
I tried to find an open question but I couldn't find one.

I'm trying to use useMemo but a I got a message from lint:

React Hook useMemo has a plex expression in the dependency array. Extract it to a separate variable so it can be statically checked react-hooks/exhaustive-deps.

What could it be?

const [selectedDate, setSelectedDate] = useState("Escolha uma data para pagamento");
const itens = useMemo(() => {
  if (!contrato.propostas || contrato.propostas.length == 0) return [];
  let dates = contrato.propostas.map(p => p.vencimento)
  dates = Array.from(new Set(dates)).map((item) => ({
    id: item,
    option: item
  }))
  if (dates.length === 1 && selectedDate !== contrato.filterByDate) setSelectedDate(dates[0].option)
  if (contrato.filterByDate && dates.find(d => d.id === contrato.filterByDate) !== -1) setSelectedDate(contrato.filterByDate);
  return dates;
}, [JSON.stringify(contrato.propostas), contrato.filterByDate, selectedDate])

contrato and contrato.propostas are objects.
contrato.filterByDate is a string.
I tried to find an open question but I couldn't find one.

Share Improve this question edited Mar 24, 2020 at 18:03 Henfs 5,41112 gold badges32 silver badges47 bronze badges asked Mar 24, 2020 at 17:59 Joao GiovanniJoao Giovanni 1111 gold badge1 silver badge4 bronze badges
Add a ment  | 

1 Answer 1

Reset to default 7

It's telling you to do this:

const [selectedDate, setSelectedDate] = useState("Escolha uma data para pagamento");
const temp = JSON.stringify(contrato.propostas);
const itens = useMemo(() => {
 // ...
}, [temp, contrato.filterByDate, selectedDate])

But i don't see why you're stringifying contrato.propostas. You never use the stringified version, so it's not actually a dependency. And as long as you're keeping your data immutable (as you should in react), then you just need to put contrato.propostas directly into the dependency array:

const [selectedDate, setSelectedDate] = useState("Escolha uma data para pagamento");
const itens = useMemo(() => {
 // ...
}, [contrato.propostas, contrato.filterByDate, selectedDate])

与本文相关的文章

发布评论

评论列表(0)

  1. 暂无评论