-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathhtml.stories.js
370 lines (306 loc) · 12 KB
/
html.stories.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
import React from 'react';
import { storiesOf } from '@storybook/react';
import { createHtmlPortalNode, createHtmlInlinePortalNode, InPortal, OutPortal } from '..';
const Container = (props) =>
<div style={{ "border": "1px solid #222", "padding": "10px" }}>
{ props.children }
</div>;
storiesOf('Portals', module)
.add('render things in different places', () => {
const portalNode = createHtmlPortalNode();
return <div>
<div>
Portal defined here:
<InPortal node={portalNode}>
Hi!
</InPortal>
</div>
<div>
Portal renders here:
<OutPortal node={portalNode} />
</div>
</div>;
})
.add('persist DOM whilst moving', () => {
const portalNode = createHtmlPortalNode();
return React.createElement(() => {
const [useOuterDiv, setDivToUse] = React.useState(false);
return <div>
<InPortal node={portalNode}>
<video src="https://media.giphy.com/media/l0HlKghz8IvrQ8TYY/giphy.mp4" controls loop />
</InPortal>
<button onClick={() => setDivToUse(!useOuterDiv)}>
Click to move the OutPortal
</button>
<hr/>
<div>
<p>Outer OutPortal:</p>
{ useOuterDiv === true && <OutPortal node={portalNode} /> }
<Container>
<Container>
<Container>
<p>Inner OutPortal:</p>
{ useOuterDiv === false && <OutPortal node={portalNode} /> }
</Container>
</Container>
</Container>
</div>
</div>;
})
})
.add('persist component state whilst moving', () => {
const portalNode = createHtmlPortalNode();
const Counter = () => {
const [count, setCount] = React.useState(0);
return <div>
Count is { count }
<button onClick={() => setCount(count + 1)}>
+1
</button>
</div>;
};
return React.createElement(() => {
const [useOuterDiv, setDivToUse] = React.useState(false);
return <div>
<InPortal node={portalNode}>
<Counter />
</InPortal>
<button onClick={() => setDivToUse(!useOuterDiv)}>
Click to move the OutPortal
</button>
<hr/>
<p>Outer OutPortal:</p>
{ useOuterDiv === true && <OutPortal node={portalNode} /> }
<Container>
<Container>
<Container>
<p>Inner OutPortal:</p>
{ useOuterDiv === false && <OutPortal node={portalNode} /> }
</Container>
</Container>
</Container>
</div>
});
})
.add('can set props remotely whilst moving', () => {
const portalNode = createHtmlPortalNode();
const Counter = (props) => {
const [count, setCount] = React.useState(0);
return <div style={{ "background-color": props.bgColor }}>
Count is { count }
<button onClick={() => setCount(count + 1)}>
+1
</button>
</div>;
};
return React.createElement(() => {
const [useOuterDiv, setDivToUse] = React.useState(false);
return <div>
<InPortal node={portalNode}>
<Counter bgColor="#faa" />
</InPortal>
<button onClick={() => setDivToUse(!useOuterDiv)}>
Click to move the OutPortal
</button>
<hr/>
<p>Outer OutPortal:</p>
{ useOuterDiv === true &&
<OutPortal node={portalNode} bgColor="#aaf" />
}
<Container>
<Container>
<Container>
<p>Inner OutPortal:</p>
{ useOuterDiv === false &&
<OutPortal node={portalNode} bgColor="#afa" />
}
</Container>
</Container>
</Container>
</div>
});
})
.add('can switch between portals safely', () => {
const portalNode1 = createHtmlPortalNode();
const portalNode2 = createHtmlPortalNode();
const Counter = () => {
const [count, setCount] = React.useState(0);
return <div>
Count is { count }
<button onClick={() => setCount(count + 1)}>
+1
</button>
</div>;
};
return React.createElement(() => {
const [isPortalSwitched, switchPortal] = React.useState(false);
let portalNode = isPortalSwitched ? portalNode2 : portalNode1;
return <div>
<InPortal node={portalNode1}>
<Counter />
</InPortal>
<InPortal node={portalNode2}>
<Counter />
</InPortal>
<button onClick={() => switchPortal(!isPortalSwitched)}>
Click to swap the portal shown
</button>
<hr/>
<p>Inner OutPortal:</p>
<OutPortal node={portalNode} />
</div>
});
})
.add('renders reliably, even with frequent changes and multiple portals', () => {
const portalNode = createHtmlPortalNode();
const Target = (p) => p.value.toString();
const Parent = () => {
const [state, setState] = React.useState(false);
// Change frequently, to hunt for race conditions. On leaving this story, this might
// complain about calling setState after unmount - that's totally fine, we don't care.
// There should be no other errors though.
setTimeout(() => {
setState(!state);
}, 100);
return <div>
Portal flickers between 2 / 3 / nothing here:
{ state
// What happens if you render the same portal twice?
? <>
<OutPortal node={portalNode} value={1} />
<OutPortal node={portalNode} value={2} />
</>
// What happens if you switch from 2 portals to 1, to 2 to zero, at random?
: Math.random() > 0.5
? <OutPortal node={portalNode} value={3} />
: null
}
</div>;
}
return <div>
<div>
Portal defined here:
<InPortal node={portalNode}>
<Target value='unmounted' />
</InPortal>
</div>
<Parent />
</div>;
})
.add("swap nodes between different locations", () => {
const numberOfNodes = 5;
const initialOrder = [];
for (let i = 0; i < numberOfNodes; i++) {
initialOrder[i] = i;
}
const ExampleContent = ({ content }) => String(content);
const ChangeLayoutWithoutUnmounting = () => {
const nodes = React.useMemo(
() => initialOrder.map(createHtmlPortalNode),
[]
);
const [order, setOrder] = React.useState(initialOrder);
return (
<div>
<button onClick={() => setOrder(order.slice().reverse())}>
Click to reverse the order
</button>
{nodes.map((node, index) => (
<InPortal node={node}>
<ExampleContent content={index} />
</InPortal>
))}
{order.map((position) => (
<OutPortal node={nodes[position]} />
))}
</div>
);
};
return <ChangeLayoutWithoutUnmounting />;
})
.add('can pass attributes option to createHtmlPortalNode', () => {
return React.createElement(() => {
const [hasAttrOption, setHasAttrOption] = React.useState(false);
const portalNode = createHtmlPortalNode( hasAttrOption ? {
attributes: { id: "div-id-1", style: "background-color: #aaf; width: 204px;" }
} : null);
return <div>
<button onClick={() => setHasAttrOption(!hasAttrOption)}>
Click to pass attributes option to the intermediary div
</button>
<hr/>
<InPortal node={portalNode}>
<div style={{width: '200px', height: '50px', border: '2px solid purple'}} />
</InPortal>
<OutPortal node={portalNode} />
<br/>
<br/>
<br/>
<text>{!hasAttrOption ? `const portalNode = createHtmlPortalNode();` : `const portalNode = createHtmlPortalNode({ attributes: { id: "div-id-1", style: "background-color: #aaf; width: 204px;" } });`}</text>
</div>
});
})
.add('can render inline portal', () => {
const portalNode = createHtmlInlinePortalNode();
return <div>
<p>
Portal defined here:
<InPortal node={portalNode}>
Hi!
</InPortal>
</p>
<p>
Portal renders here:
<OutPortal node={portalNode} />
</p>
</div>;
})
.add('Example from README', () => {
const MyExpensiveComponent = () => 'expensive!';
const MyComponent = (props) => {
const portalNode = React.useMemo(() => createHtmlPortalNode(), []);
return <div>
{/*
Create the content that you want to move around.
InPortals render as normal, but to detached DOM.
Until this is used MyExpensiveComponent will not
appear anywhere in the page.
*/}
<InPortal node={portalNode}>
<MyExpensiveComponent
// Optionally provide props to use before this enters the DOM
myProp={"defaultValue"}
/>
</InPortal>
{/* ... The rest of your UI ... */}
{/* Pass the node to whoever might want to show it: */}
{ props.componentToShow === 'component-a'
? <ComponentA portalNode={portalNode} />
: <ComponentB portalNode={portalNode} /> }
</div>;
}
const ComponentA = (props) => {
return <div>
{/* ... Some more UI ... */}
A:
<OutPortal
node={props.portalNode} // Show the content from this node here
/>
</div>;
}
const ComponentB = (props) => {
return <div>
{/* ... Some more UI ... */}
B:
<OutPortal
node={props.portalNode} // Pull in the content from this node
myProp={"newValue"} // Optionally, override default values
myOtherProp={123} // Or add new props
// These props go back to the InPortal, and trigger a component
// update (but on the same component instance) as if they had
// been passed directly.
/>
</div>;
}
return <MyComponent componentToShow='component-a' />
});