- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我将 Gatsby 与 MDX 插件结合使用。所以我可以在 markdown 中使用 React 组件。没关系。
我有组件,彼此交谈。为此,我使用 Lifting State Up Pattern .没关系。
这是一个基本的 Counter 示例,用于展示我的概念验证代码。
import React from "react"
export class Counter extends React.Component {
constructor(props) {
super(props)
this.state = { count: 0 }
this.handleCounterUpdate = this.handleCounterUpdate.bind(this)
}
handleCounterUpdate() {
this.setState({ count: this.state.count + 1 })
}
render() {
const children = React.Children.map(this.props.children, child => {
const additionalProps = {}
additionalProps.count = this.state.count
additionalProps.handleCounterUpdate = this.handleCounterUpdate
return React.cloneElement(child, additionalProps)
})
return <div>{children}</div>
}
}
export function Display({ count }) {
return <h2>Current counter is: {count}</h2>
}
export function UpdateButton({ handleCounterUpdate }) {
return <button onClick={handleCounterUpdate}>Increment couter by one</button>
}
有了这个设置,就可以像这样使用组件了
<Counter>
<Display />
<UpdateButton />
</Counter>
甚至像这样
<Counter>
<Display />
<UpdateButton />
<Display />
<Display />
</Counter>
没关系。
在现实世界中,封闭的 Counter 组件(状态持有者)将类似于 Layout 组件。 <Layout>
在模板中使用并呈现 MDX 页面。这看起来像这样:
<SiteLayout>
<SEO title={title} description={description} />
<TopNavigation />
<Display /> // The state holder is <SiteLayout>, not <Counter>
<Breadcrumb location={location} />
<MDXRenderer>{page.body}</MDXRenderer> // The rendered MDX
</SiteLayout>
<UpdateButton>
(在现实世界中类似 <AddToCartButton>
)在 MDX 页面上,不再是 <Layout>
的直接子代组件。
该模式不再有效。
我该如何解决?
谢谢大家
最佳答案
import React from "react"
// This is a proof of concept (POC) for intercomponent communication using
// React Context
//
// In the real world Gatsby/React app we use a kind of cart summary component
// at top right of each page. The site consists of thousands of pages with detailed
// product information and a blog. Users have the possibility to add products directly
// from product information pages and blog posts. Posts and pages are written in
// MDX (Mardown + React components). All <AddToCartButtons> reside in MDX files.
//
// This code uses a "increment counter button" (= add to cart button) and a
// display (= cart summary) as POC
//
// More information at
// https://reactjs.org/docs/context.html#updating-context-from-a-nested-component
export const CounterContext = React.createContext()
// The <Layout> component handles all business logic. Thats fine. We have
// very few app features.
export class Layout extends React.Component {
constructor(props) {
super(props)
this.handleCounterUpdate = this.handleCounterUpdate.bind(this)
this.state = { count: 0, increment: this.handleCounterUpdate }
}
handleCounterUpdate() {
this.setState({ count: this.state.count + 1 })
}
render() {
return (
<div style={{ backgroundColor: "silver", padding: "20px" }}>
<CounterContext.Provider value={this.state}>
{this.props.children}
</CounterContext.Provider>
</div>
)
}
}
export class UpdateButton extends React.Component {
static contextType = CounterContext
render() {
const count = this.context.count
const increment = this.context.increment
return (
<button onClick={increment}>
Increment counter (current value: {count})
</button>
)
}
}
export class Display extends React.Component {
static contextType = CounterContext
render() {
return (
<div
style={{
backgroundColor: "white",
padding: "10px",
margin: "10px 0 0 0"
}}
>
<div>I'm Display. I know the count: {this.context.count}</div>
<div>{this.props.children}</div>
</div>
)
}
}
// Function components use <CounterContext.Consumer>. Class components
// use static contextType = CounterContext
export function AChild() {
return (
<CounterContext.Consumer>
{context => (
<span>
I'm a child of Display. I know the count too: {context.count}
</span>
)}
</CounterContext.Consumer>
)
}
这样使用
<Layout>
<Display>
<AChild />
</Display>
// UpdateButton inside MDX files
<MDXRenderer>{page.body}</MDXRenderer>
// Or elsewhere
<UpdateButton />
</Layout>
关于javascript - React/Gatsby 组件交互(提升状态)与 MDX 文件中的组件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63235149/
我有下面的立方体输出 date value ---- ----------- 2021-01-06 10 2021-01-07 Null 2021-01
您好,我一直在研究 MDX,需要一些非常高级的入门类型指导。我已经启动并运行了一个 SQL-Server 2008 R2 数据库,其中包含数据。我想在 MDX 中尝试一些非常简单的事情来熟悉流程。我不
你好我使用 mdx 表达式中的排名为结果提供行号,现在我如何限制行号。检索到的行数,即我想要前 10 行,然后我想要另外 10 行,依此类推。那么我如何在 mdx 表达式本身中应用此类分页 最佳答案
关闭。这个问题不符合Stack Overflow guidelines .它目前不接受答案。 想改进这个问题?将问题更新为 on-topic对于堆栈溢出。 6年前关闭。 Improve this qu
什么是最简单的MDX要求? 我想测试我的 MDX 端点是否正确回答了一个非常简单的请求。 在 SQL 中,我会说 SELECT 1; 最佳答案 我想最简单的 MDX 请求是:SELECT FROM c
我正在为我的客户构建一个 BI 仪表板。我们的数据存储在分析服务器多维数据集中。总体来说一切正常,但 smartalec 测试人员决定创建一个名称为 `~!@#$%^&*()_+-=[]{}|;':"
如何在 MDX 查询中添加空白列? 我已经尝试了所有可能的选项,例如添加成员和所有选项,但是当我尝试交叉加入新成员时,出现 MDX 错误。请指导我完成这个。 谢谢 我们需要遵循 MDX 格式并且在 M
我需要从立方体中获取每个州的前 50 个卖家名称 这就是我到目前为止所拥有的 SELECT NON EMPTY ( [DimGeo].[State].[State].ALLMEMBERS * [Mea
在我使用的 OLAP 数据库中,有一个“位置”层次结构,由公司、地区、区域、站点、房间、直到等级别组成。对于一家特定的公司,我需要编写一些 MDX,列出所有地区、区域和站点(但不包括站点以下的任何级别
我有查询在哪里取双值然后是日期 (例如 2020-03) 。 这是它的外观: SELECT NON EMPTY {[Measures].[Revenue]} ON COLUMNS ,NO
我需要仅从 MySQL 中的一个表创建一个 OLAP View 。 我需要从表中的以下列获取信息: 登录备注 登出注 时间戳 用户名 所以我创建了这个蒙德里安模式:
我已经成功地添加了基本的 sum/count/etc.. 简单的度量,但不知道如何添加更复杂的。 让我们假设数据结构表示带有 cargo 的轨道并具有下一个结构: 日期 id_track id_art
在我使用的 OLAP 数据库中,有一个“位置”层次结构,包括公司 -> 区域 -> 区域 -> 站点 -> 房间。我正在使用以下 MDX 来获取公司级别特定成员的所有后代。 DESCENDANTS([
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用或专业知识的支持,但这个问题可能会引起辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the he
icCube 是否提供任何可用于创建具有聚合百分位数(如中位数或第 95 个百分位数)的计算成员的函数? 最佳答案 对于median有可用的 MDX 函数。尚不直接支持百分位,添加看起来是个好主意,但
我是 mdx 新手。 有没有办法像我们在 MySQL 中使用 LIKE '%iphone' AND LIKE '%samsung' 那样使用 MDX 搜索并返回两个关键字的匹配项? 我的 MDXcod
我试图从我的 MDX 选择查询中的维度中过滤掉一些点。我使用了 Filter(, ) 函数,如 http://mondrian.pentaho.com/documentation/mdx.php 中所
我是 Pentaho、Mondrian 和 MDX 的新手。我开始使用 Pentaho CE 5.0.1 作为我的 OLAP 工具。我正在为 MDX 查询而苦苦挣扎,希望有人能就我的问题给我一些建议。
如何以千为单位显示度量值。我会假设这样做如下: FORMAT_STRING="#,," 但是数据返回:10000000.001而我期望:10,000 最佳答案 格式遵循FORMAT_STRING 文档
我们有一个 SSAS 2012 表格模型可供我们使用,我们正在使用 Tableau 进行报告。 目前,我们有一个带有属性 [部门] 的维度 [ Material ]。 我们试图做的是在 DAX 中创建
我是一名优秀的程序员,十分优秀!