-
Notifications
You must be signed in to change notification settings - Fork 268
/
Copy pathliveExample.js
52 lines (48 loc) · 1.27 KB
/
liveExample.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
import { Grid, html, h, createRef as gCreateRef, Component as gComponent, PluginPosition, BaseComponent, useConfig, useTranslator, useSelector, useState, useEffect } from "gridjs";
import { esES, frFR } from "gridjs/l10n";
import CodeBlock from "@theme/CodeBlock";
import React, {Component, useRef, useEffect as reactUseEffect} from "react";
import * as faker from 'faker';
export class LiveExample extends Component {
render() {
return (
<CodeBlock
children={this.props.children}
transformCode={(code) =>
`
function () {
${code}
const wrapperRef = useRef(null);
reactUseEffect(() => {
if (typeof (grid) == 'object' && wrapperRef && wrapperRef.current && wrapperRef.current.childNodes.length === 0) {
grid.render(wrapperRef.current);
}
});
return (
<div ref={wrapperRef} />
);
}
` } live={true} scope={{
Grid,
html,
h,
reactUseEffect,
gCreateRef,
gComponent,
PluginPosition,
BaseComponent,
CodeBlock,
useEffect,
useRef,
faker,
esES,
frFR,
useState,
useConfig,
useSelector,
useTranslator,
...this.props.scope
}} />
)
}
}