- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我搜索了这些建议,但找不到任何答案。我基本上认为我可以按如下方式正确输入 HOC:
目前这是我的组件:
// @flow
import React, { Component } from 'react';
import moment from 'moment';
import type { ApolloClient } from 'apollo-client';
import { convertDatesToISO } from 'components/Calendar/utils';
type Props = {
client: ApolloClient<any>,
location: {
search: string,
},
};
type SelectedDates = {
startOn: moment,
endOn: moment,
};
const withInitialSelectedDates = (WrappedComponent: Component<Props>): Component => {
return class extends Component<Props> {
initialSelectedDates: ?SelectedDates;
initialSelectedDatesFromQueryString(): ?SelectedDates {
const searchString = this.props.location.search;
const searchParams = new URLSearchParams(searchString);
const startOn = moment.utc(searchParams.get('start_date'));
const endOn = moment.utc(searchParams.get('end_date'));
if (!startOn.isValid() || !endOn.isValid()) return null;
if (startOn < moment.utc().startOf('day')) return null;
if (endOn < startOn) return null;
return { startOn, endOn };
}
setInitialSelectedDatesOnGraphQLClient(): void {
if (this.initialSelectedDates == null) return;
this.props.client.writeData({
data: {
selectedDates: convertDatesToISO([this.initialSelectedDates]),
},
});
}
componentDidMount(): void {
this.initialSelectedDates = this.initialSelectedDatesFromQueryString();
this.setInitialSelectedDatesOnGraphQLClient();
}
render(): React.Element {
return (
<WrappedComponent
initialSelectedDates={this.initialSelectedDates}
{...this.props}
/>
);
}
};
};
export default withInitialSelectedDates;
我想我可以改变:
const withInitialSelectedDates = (WrappedComponent: Component<Props>): Component => {
为此:
const withInitialSelectedDates = <PassedProps: {} & Props>(WrappedComponent: ComponentType<PassedProps>): ComponentType<PassedProps> => {
这将需要导入 ComponentType。我的问题是我应该在哪里更改我当前的代码并添加 PassedProps?
最佳答案
您需要遵循 "Injecting Props" section 中的示例HOC Flow 文档。一个示例实现可能看起来像,
import * as React from 'react';
// Since Try Flow doesn't have access to these types
type ApolloClient<T> = any;
type moment = any;
type Props = {
client: ApolloClient<any>,
location: {
search: string,
},
};
type SelectedDates = {
startOn: moment,
endOn: moment,
};
function withInitialSelectedDates(
Component: React.AbstractComponent<Props>
): React.AbstractComponent<$Diff<Props, { initialSelectedDates: SelectedDates | void }>> {
return class WrappedComponent extends React.Component<
$Diff<Props, { initialSelectedDates: SelectedDates | void }>,
{ initialSelectedDates: SelectedDates | null }
> {
state = {
initialSelectedDates: null,
}
getInitialSelectedDatesFromQueryString(): SelectedDates | null {
if (true) {
return { startOn: 'start', endOn: 'end' };
} else {
return null;
}
// use actual implementation; I just needed to satisfy type check
}
setInitialSelectedDatesOnGraphQLClient(selectedDates: SelectedDates | null): void {
// implementation
}
componentDidMount(): void {
const initialSelectedDates = this.getInitialSelectedDatesFromQueryString();
this.setState({ initialSelectedDates });
this.setInitialSelectedDatesOnGraphQLClient(initialSelectedDates);
}
render() {
return (
<Component
{...this.props}
initialSelectedDates={this.state.initialSelectedDates}
/>
);
}
}
}
关于reactjs - react : how to properly type the HOC component?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/56117398/
我一直在使用 Tensorflow 解决线性回归问题。我得到一条平坦的曲线 pred_y。我应该如何将我的曲线与观察的训练示例拟合? 这是我的 tensorflow 代码: # coding: utf
我浏览了这个网站,找不到类似的场景。我正在尝试运行以下代码 SELECT st.storeid, s.noofitems FROM salestrnsaction AS st, soldvia AS
请善待我,我是 Python 初学者:-) 现在,我发现编写 Python 程序的“最佳实践”是将主代码包装在“main”函数中,并执行 if "__main__"== __name__: 测试调用“
已关闭。此问题不符合Stack Overflow guidelines 。目前不接受答案。 这个问题似乎与 help center 中定义的范围内的编程无关。 . 已关闭 9 年前。 Improve
这个问题在这里已经有了答案: What is the reason to use the 'new' keyword at Derived.prototype = new Base (6 个答案)
我正尝试在 tomcat 上为我的 jersey webapp 创建一个用户登录页面,它的行为与网络上的所有其他页面一样。也就是说,用户会看到一个漂亮的登录页面而不是弹出窗口(如 BASIC tomc
我正在尝试让 Android 服务监听来电,当确实有来电时,获取来电号码并向其发送短信。 在我的服务中,我制作了一个PhoneStateListener: TelephonyManager tMana
是否有适当的地方来存储数据库的高级描述?类似于“此数据库用于存储 XYZ 以供 ABC 使用”之类的内容。这不一定是人们需要查询的信息,而是对管理系统的人有用的信息(即几个月前我试图记住几个月前我试图
下面的排序逻辑非常简单: 1. 标记不包含所选排序值的产品 2. 按所选排序值的数量降序对产品进行排序 3.隐藏不包含所选排序值的产品 我添加了简单的排序逻辑,它可以对元素进行排序(可以在控制台中预期
这个问题在这里已经有了答案: Where does Visual Studio look for C++ header files? (7 个答案) 关闭 9 年前。 所以,我在 VS2010 中开
我正在尝试连接到 MSMQ 并发送一些消息。不幸的是,项目中有关于如何做到这一点的“先前艺术”,我应该模仿它。之前的应用程序的连接方式如下: if (MSMQ in workgroup mode) {
我正在编写一个可能会被其他人使用的 ROS 节点,这就是我想要遵循通用指南的原因。有时我想为异常添加额外的信息,但我不知道该怎么做。这是一个方便的示例: 我的 ROS 节点使用 boost 库连接到串
关闭。这个问题是opinion-based .它目前不接受答案。 想要改进这个问题? 更新问题,以便 editing this post 可以用事实和引用来回答它. 关闭 4 年前。 Improve
我在摆弄 django-tinyMCE并注意到一些配置没有得到应用。这是我的 settings.py 中的代码 TINYMCE_DEFAULT_CONFIG = { 'theme' : 'ad
回顾我过去的项目,我经常遇到这个: 一位客户或经理向我提出一项任务并要求进行估算。我估计说 24 小时。他们还询问了业务分析师,据我所知,他们的经验大多是非技术性的。他们给出的估计是 16 小时。最后
我使用以下方式调用几个sql文件: :r C:\Scripts\Script1.sql :r C:\Scripts\Script2.sql :r C:\Scripts\Script3.sql 我对 :
在类构造函数中初始化 AS3 类变量“更好”吗?或者当我在类的顶部声明它们时,我可以将它们初始化为默认值吗?我问这个问题是因为当有很多类变量时,在一个地方声明它们然后在另一个地方初始化它们似乎效率很低
我有一个代码: $("#button").click(function () { for (var i = 0; i < 4; i++) {
我们的应用程序正在被翻译成多种语言,我们需要一个组合框来列出可能的语言。我们希望使用该语言的语言名称(例如,Français 表示法语)。 列出这些语言是否有任何“正确”的顺序?我们是否根据他们的
我正在尝试在 Ubuntu 12.04 中使用 Tramp/Emacs-23 来编辑远程主机文件。我的远程主机有两步验证 (RSA+Passwd)。我通过 .ssh/config 使用多路复用来确保
我是一名优秀的程序员,十分优秀!