* refactor(searchStore): reformat filterMap function parameters (#3166) - Reformat the parameters of the filterMap function for better readability. - Comment out the fetchSessions call in clearSearch method to avoid unnecessary session fetch. * Increment frontend chart version (#3167) Co-authored-by: GitHub Action <action@github.com> * refactor(chalice): cleaned code fix(chalice): fixed session-search-pg sortKey issue fix(chalice): fixed CH-query-formatter to handle special chars fix(chalice): fixed /ids response * feat(auth): implement withCaptcha HOC for consistent reCAPTCHA (#3177) * feat(auth): implement withCaptcha HOC for consistent reCAPTCHA This commit refactors the reCAPTCHA implementation across the application by introducing a Higher Order Component (withCaptcha) that encapsulates captcha verification logic. The changes: - Create a reusable withCaptcha HOC in withRecaptcha.tsx - Refactor Login, ResetPasswordRequest, and CreatePassword components - Extract SSOLogin into a separate component - Improve error handling and user feedback - Standardize loading and verification states across forms - Make captcha implementation more maintainable and consistent * feat(auth): support msaas edition for enterprise features Add msaas to the isEnterprise check alongside ee edition to properly display enterprise features. Use userStore.isEnterprise in SSOLogin component instead of directly checking authDetails.edition for consistent enterprise status detection. * Increment frontend chart version (#3179) Co-authored-by: GitHub Action <action@github.com> * feat(assist): improved caching mechanism for cluster mode (#3180) * Increment assist chart version (#3181) Co-authored-by: GitHub Action <action@github.com> * ui: fix table column export * Increment frontend chart version * fix(auth): remove unnecessary captcha token validation (#3188) The token validation checks were redundant as the validation is already handled by the captcha wrapper component. This change simplifies the password reset flow while maintaining security. * Increment frontend chart version (#3189) Co-authored-by: GitHub Action <action@github.com> * ui: onboarding fixes * ui: fixes for onboarding ui * Increment frontend chart version * feat(helm): add TOKEN_SECRET environment variable Add TOKEN_SECRET environment variable to HTTP service deployment and generate a random value for it in vars.yaml. Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * fix(GraphQL): remove unused useTranslation hook (#3200) (#3206) Co-authored-by: PiRDub <pirddeveloppeur@gmail.com> * Increment frontend chart version * chore(http): remove default token_string scripts/helmcharts/openreplay/charts/http/scripts/entrypoint.sh Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * fix(dashboard): update filter condition in MetricsList Change the filter type comparison from checking against 'all' to checking against an empty string. This ensures proper filtering behavior when filtering metrics in the dashboard component. * Increment frontend chart version * ui: shrink icons when no space, adjust player area for events export … (#3217) * ui: shrink icons when no space, adjust player area for events export panel, fix panel size * ui: rm log * Increment frontend chart version * refactor(chalice): changed user-journey * Increment chalice chart version * refactor(auth): separate SSO support from enterprise edition Add dedicated isSSOSupported property to correctly identify when SSO authentication is available, properly handling the 'msaas' edition case separately from enterprise edition checks. This fixes SSO visibility in the login interface. * Increment frontend chart version * UI patches (28.03) (#3231) * ui: force getting url for location in tabmanagers * Assist add turn servers (#3229) * fixed conflicts * add offers * add config to sicket query * add config to sicket query * add config init * removed console logs * removed wrong updates * fixed conflicts * add offers * add config to sicket query * add config to sicket query * add config init * removed console logs * removed wrong updates * ui: fix chat draggable, fix default params --------- Co-authored-by: nick-delirium <nikita@openreplay.com> * ui: fix spritemap generation for assist sessions * ui: fix yarnlock * fix errors * updated widget link * resolved conflicts * updated widget url --------- Co-authored-by: Andrey Babushkin <55714097+reyand43@users.noreply.github.com> Co-authored-by: Андрей Бабушкин <andreybabushkin2000@gmail.com> * fix(init): remove duplicate clone Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> * Increment assist chart version * Increment frontend chart version * ui: add old devtool filters * ui: filter keys * Increment frontend chart version * ui: fix modules mapper * ui: fix modules label * Increment frontend chart version * ui: fix double fetches for sessions * Increment frontend chart version * pulled updates (#3254) * Increment frontend chart version (#3255) Co-authored-by: GitHub Action <action@github.com> * Increment assist chart version (#3256) Co-authored-by: GitHub Action <action@github.com> * feat(chalice): added for_spot=True for authenticate_sso (#3259) * Increment chalice chart version (#3260) Co-authored-by: GitHub Action <action@github.com> * Assist patch canvas (#3265) * add agent info to assist and tracker * removed AGENTS_CONNECTED event * Increment frontend chart version (#3266) Co-authored-by: GitHub Action <action@github.com> * Increment assist chart version (#3267) Co-authored-by: GitHub Action <action@github.com> * resolved conflict * removed comments * add global method support * fix errors * remove wrong updates * remove wrong updates * add onDrag as option --------- Signed-off-by: rjshrjndrn <rjshrjndrn@gmail.com> Co-authored-by: Shekar Siri <sshekarsiri@gmail.com> Co-authored-by: Mehdi Osman <estradino@users.noreply.github.com> Co-authored-by: GitHub Action <action@github.com> Co-authored-by: Taha Yassine Kraiem <tahayk2@gmail.com> Co-authored-by: Alexander <zavorotynskiy@pm.me> Co-authored-by: nick-delirium <nikita@openreplay.com> Co-authored-by: rjshrjndrn <rjshrjndrn@gmail.com> Co-authored-by: PiRDub <pirddeveloppeur@gmail.com> |
||
|---|---|---|
| .. | ||
| .yarn | ||
| layout | ||
| src | ||
| tests | ||
| .eslintignore | ||
| .eslintrc.cjs | ||
| .gitignore | ||
| .npmignore | ||
| CHANGELOG.md | ||
| jest.config.js | ||
| LICENSE | ||
| package.json | ||
| pkgver.sh | ||
| README.md | ||
| tsconfig-cjs.json | ||
| tsconfig.json | ||
OpenReplay Assist
OpenReplay Assist Plugin allows you to support your users by seeing their live screen and instantly hopping on call (WebRTC) with them without requiring any 3rd-party screen sharing software.
Documentation
For launch options and available public methods, refer to the documentation
Installation
npm i @openreplay/tracker-assist
OR
yarn add @openreplay/tracker-assist
Usage
With NPM
Initialize the tracker then load the @openreplay/tracker-assist plugin.
If your website is a Single Page Application (SPA)
import Tracker from '@openreplay/tracker';
import trackerAssist from '@openreplay/tracker-assist';
const tracker = new Tracker({
projectKey: PROJECT_KEY,
});
tracker.use(trackerAssist(options)); // check the list of available options below
// .start() returns a promise
tracker.start().then(sessionData => ... ).catch(e => ... )
If your web app is Server-Side-Rendered (SSR)
Follow the below example if your app is SSR. Ensure tracker.start() is called once the app is started (in useEffect or componentDidMount).
import OpenReplay from '@openreplay/tracker/cjs';
import trackerFetch from '@openreplay/tracker-assist/cjs';
const tracker = new OpenReplay({
projectKey: PROJECT_KEY
});
tracker.use(trackerAssist(options)); // check the list of available options below
//...
function MyApp() {
useEffect(() => { // use componentDidMount in case of React Class Component
// .start() returns a promise
tracker.start().then(sessionData => ... ).catch(e => ... )
}, [])
//...
}
Options
trackerAssist({
onAgentConnect: StartEndCallback;
onCallStart: StartEndCallback;
onRemoteControlStart: StartEndCallback;
onRecordingRequest?: (agentInfo: Record<string, any>) => any;
onCallDeny?: () => any;
onRemoteControlDeny?: (agentInfo: Record<string, any>) => any;
onRecordingDeny?: (agentInfo: Record<string, any>) => any;
session_calling_peer_key: string;
session_control_peer_key: string;
callConfirm: ConfirmOptions;
controlConfirm: ConfirmOptions;
recordingConfirm: ConfirmOptions;
socketHost?: string;
config: RTCConfiguration;
serverURL: string
callUITemplate?: string;
})
type ConfirmOptions = {
text?:string,
style?: StyleObject, // style object (i.e {color: 'red', borderRadius: '10px'})
confirmBtn?: ButtonOptions,
declineBtn?: ButtonOptions
}
type ButtonOptions = HTMLButtonElement | string | {
innerHTML?: string, // to pass an svg string or text
style?: StyleObject, // style object (i.e {color: 'red', borderRadius: '10px'})
}
callConfirm: Customize the text and/or layout of the call request popup.controlConfirm: Customize the text and/or layout of the remote control request popup.config: Contains any custom ICE/TURN server configuration. Defaults to{ 'iceServers': [{ 'urls': 'stun:stun.l.google.com:19302' }], 'sdpSemantics': 'unified-plan' }.onAgentConnect: () => (()=>void | void): This callback function is fired when someone from OpenReplay UI connects to the current live session. It can return another function. In this case, returned callback will be called when the same agent connection gets closed.
onAgentConnect = () => {
console.log("Live session started")
const onAgentDisconnect = () => console.log("Live session stopped")
return onAgentDisconnect
}
onCallStart: () => (()=>void | void): This callback function is fired as soon as a call (webRTC) starts. It can also returnonCallEndwhich will be called when the call ends. In case of an unstable connection, this may be called several times. Below is an example:
onCallStart: () => {
console.log("Call started")
const onCallEnd = () => console.log("Call ended")
return onCallEnd
}
onRemoteControlStart: () => (()=>void | void): This callback function is fired as soon as a remote control session starts. It can also returnonRemoteControlEndwhich will be called when the remote control permissions are revoked. Below is an example:
onCallStart: () => {
console.log("Remote control started")
const onCallEnd = () => console.log("Remote control ended")
return onCallEnd
}
Troubleshooting
Critical dependency: the request of a dependency is an expression
Please apply this workaround if you face the below error when compiling:
Failed to compile.
./node_modules/peerjs/dist/peerjs.min.js
Critical dependency: the request of a dependency is an expression
If you encounter any other issue, please connect to our Slack and get help from our community.