53 lines
1.4 KiB
TypeScript
53 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import Highlight from 'react-highlight'
|
|
import ToggleContent from 'Shared/ToggleContent'
|
|
|
|
function AssistNpm(props) {
|
|
return (
|
|
<div>
|
|
<p>Initialize the tracker then load the @openreplay/tracker-assist plugin.</p>
|
|
|
|
<div className="font-bold my-2">Usage</div>
|
|
<ToggleContent
|
|
label="Server-Side-Rendered (SSR)?"
|
|
first={
|
|
<Highlight className="js">
|
|
{`import OpenReplay from '@openreplay/tracker';
|
|
import trackerAssist from '@openreplay/tracker-assist';
|
|
const tracker = new OpenReplay({
|
|
projectKey: '${props.projectKey}',
|
|
});
|
|
tracker.start();
|
|
tracker.use(trackerAssist(options)); // check the list of available options below`}
|
|
</Highlight>
|
|
}
|
|
second={
|
|
<Highlight className="js">
|
|
{`import OpenReplay from '@openreplay/tracker/cjs';
|
|
import trackerAssist from '@openreplay/tracker-assist/cjs';
|
|
const tracker = new OpenReplay({
|
|
projectKey: '${props.projectKey}'
|
|
});
|
|
const trackerAssist = tracker.use(trackerAssist(options)); // check the list of available options below
|
|
//...
|
|
function MyApp() {
|
|
useEffect(() => { // use componentDidMount in case of React Class Component
|
|
tracker.start();
|
|
}, [])
|
|
//...
|
|
}`}
|
|
</Highlight>
|
|
}
|
|
/>
|
|
|
|
<div className="font-bold my-2">Options</div>
|
|
<Highlight className="js">
|
|
{`trackerAssist({
|
|
confirmText: string;
|
|
})`}
|
|
</Highlight>
|
|
</div>
|
|
);
|
|
}
|
|
|
|
export default AssistNpm;
|