我只是将正常状态映射到组件上,是否需要重新选择?

问题描述 投票:0回答:2

我是重新选择的新手,我理解这种需要。我认为这太棒了。然而,就我而言,它似乎无缘无故地添加了很多额外的代码。也许我做错了。

上一个组件:

const mapStateToProps = (state) => {
    return {
        day: state.filters.day,
        minDate: state.filters.minDate,
        maxDate: state.filters.maxDate,
    };
};

现在选择器:

import { createSelector } from 'reselect';

const getDay = state => state.filters.day;
export const makeGetDay = () => createSelector(
    getDay,
    day => day,
);

const getMinDate = state => state.filters.minDate;
export const makeGetMinDate = () => createSelector(
    getMinDate,
    date => date,
);

const getMaxDate = state => state.filters.maxDate;
export const makeGetMaxDate = () => createSelector(
    getMaxDate,
    date => date,
);

现在组件:

const makeMapStateToProps = () => {
    const getDay = makeGetDay();
    const getMinDate = makeGetMinDate();
    const getMaxDate = makeGetMaxDate();
    return state => ({
        day: getDay(state),
        minDate: getMinDate(state),
        maxDate: getMaxDate(state),
    });
};

为了澄清,代码有效,我只是不明白 Reselect 在这种情况下添加了什么..

reactjs redux reselect
2个回答
3
投票

在您在问题中指定的情况下

Reselect
实际上并没有增加任何价值。

原因是

connect
提供的
react-redux
将对
mapStateToProps
函数中提供的 props 进行浅层比较,以确定是否需要渲染。在您提供的示例中,如果
day
minDate
maxDate
的值没有更改,您将不会浪费任何时间进行不必要的渲染。

当您的选择器返回计算出的内容时,

Reselect
的实际值就会出现。

借用弗拉德的例子。

Reselect
非常适合编写选择器,因此您的选择器可能如下所示:

export const getDay = state => state.filters.day;
export const getMinDate = state => state.filters.minDate;
export const getMaxDate = state => state.filters.maxDate;

export const getIsDateOutOfRange = createSelector(
  getDay,
  getMinDate,
  getMaxDate,
  (day, minDate, maxDate) => day > maxDate || day < minDate
);

你的

mapStateToProps
函数可能如下所示:

const mapStateToProps = state => ({
    isOutOfRange: getIsDateOutOfRange(state)
});

在这种情况下,

Reselect
为组合选择器提供了一种很好的语法,并且只有在其中一个依赖选择器返回不同值时才会重新计算
getIsDateOutOfRange
,从而带来边际性能优势。

这就是

Reselect
隐藏的性能优势。 如果您有一个返回计算数组或对象的选择器,那么从选择器返回的两个相同值将不会通过浅层相等检查,
Reselect
connect
将用于记忆目的。

[0, 1] === [0, 1] // false

举一个人为的例子:

export const getDays = state => state.filters.days;
export const getMinDate = state => state.filters.minDate;
export const getMaxDate = state => state.filters.maxDate;

export const getDaysWithinRangeNotPerformant = state => {
    const days = getDays(state);
    const minDate = getMinDate(state);
    const maxDate = getMaxDate(state);
    return days.filter(day => day > minDate && day < maxDate);
};

export const getDaysWithinRangePerformant = createSelector(
    getDays,
    getMinDate,
    getMaxDate,
    (days, minDate, maxDate) =>
        days.filter(day => day > minDate && day < maxDate)
);

Reselect
在这里释放的性能优势是双重的。

首先,即使多次调用

getDaysWithinRangePerformant
,也仅在实际参数发生更改时才执行可能昂贵的
filter

其次,也是最重要的,每次

getDaysWithinRangeNotPerformant
connect
调用时,它都会返回一个新数组,这意味着
connect
中 prop 的浅层比较将为 false,并且
render
将再次被调用,即使实际的日子本身并没有改变。因为
getDaysWithinRangePerformant
createSelector
记忆,如果值没有改变,它将返回完全相同的数组实例,因此
connect
中 props 的浅比较将为 true,并且它将能够执行自己的优化并避免不必要的渲染。

在我看来,这是

Reselect
提供的巨大好处。


2
投票

首先 - 您不必到处使用高阶函数来使用

reselect
。看起来您正在执行不必要的步骤。

摆脱高阶函数:

下面的代码以相同的方式运行,但看起来更具可读性(紧凑)

export const getDay = createSelector(
    state => state.filters.day,
    day => day,
);

export const getMinDate = createSelector(
    state => state.filters.minDate,
    date => date,
);

export const getMaxDate = createSelector(
    state => state.filters.maxDate,
    date => date,
);

const mapStateToProps = state => ({
  day: getDay(state),
  minDate: getMinDate(state),
  maxDate: getMaxDate(state),
});

你还可以走得更远。看起来您在变量要组件时重命名了几次。

store.maxDate -> date -> maxDate

您可以让您的“选择器”不仅负责从存储中检索数据,还负责遵循命名约定。

export const getDay = createSelector(
  state => state.filters.day,
  day => ({ day }),
);

export const getMinDate = createSelector(
  state => state.filters.minDate,
  minDate => ({ minDate }),
);

export const getMaxDate = createSelector(
  state => state.filters.maxDate,
  maxDate => ({ maxDate }),
);

const mapStateToProps = state => ({
  ...getDay(state),
  ...getMinDate(state),
  ...getMaxDate(state),
});

如果您想在上一个选择器的基础上再创建一个选择器,那么选择器

composition
的好处可能会变得更加明显:

假设您有一个组件在

day
超出
maxDate
minDate

定义的范围时显示错误
export const isDateOutOfRange = createSelector(
  getDay,
  getMinDate,
  getMaxDate,
  ({ day }, { minDate }, { maxDate }) => day > maxDate || day < minDate,
);

const mapStateToProps = state => ({
  showError: isDateOutOfRange(state),
});
© www.soinside.com 2019 - 2024. All rights reserved.