Commit Graph

1150 Commits

Author SHA1 Message Date
Eoghan Murray
a6ce7182ce Avoid triggering a CSP (content security policy) error (#846)
* Fix for #816 - avoid triggering a CSP (content security policy) error with `.setAttribute('style')`

* The bare unattachedDoc that I previously naively created didn't have a doctype and wasn't a HTML document, so the child style element didn't have the `old.style` attribute available

* Add a try/catch to provide some robustness in case `document.implementation.createHTMLDocument` isn't available
2023-05-22 12:53:36 +10:00
Antonio Stipić
aca67a06cd docs: add analyzee to readme (#1227)
Added analyzee as one of the SaaS that use rrweb in one of their products
2023-05-22 12:20:56 +10:00
fukang wang
a1ec9a273e perf: optimize performance of the DoubleLinkedList get (#1220)
* perf: optimize performance of the DoubleLinkedList get

* fix: delete addedNodeIndexArr
2023-05-22 12:19:28 +10:00
Ben White
4dcdcf7ec4 fix: Rrror parser throw (#1225)
* Warn instead of throwing error when parsing for console logs

* Added error to warning
2023-05-15 22:19:42 +10:00
Justin Halsall
0fedb8ed19 Docs: scale sponsors by donation size (#1217)
* Scale sponsors

Gold sponsors where a bit too big. I've scaled down all sponsors to match their donation level (calculation below). Also makes the low res image of our gold sponsor less apparent.

Example:

Bronze Sponsors Calculation:
50 pixels per donation $
100$ = 5000 pixels
√5000 = +/-70
Resolution: 70*70 = +/-5000 pixels

* Create fresh-cars-impress.md
2023-05-01 22:24:14 +10:00
Yun Feng
23d01387f4 rrvideo: improve the video quality and add a progress bar for the CLI tool (#1197)
* refactor rrvideo: use playwright rather than puppeteer

* add a progress bar for the tool

* add tests for cli.ts

* fix build error

* add change log

* update readme file

* Apply a scaling method to improve the resolution of the output video
2023-05-01 14:04:38 +02:00
fukang wang
ebcbe8b0d7 perf: record processMutation (#1214)
* perf: record processMutation

* Create mean-tips-impress.md

* Apply formatting changes
2023-05-01 10:15:58 +08:00
Justin Halsall
1d169d585a Add highlight to "who's using rrweb" (#1215)
* Add highlight to "who's using rrweb"

* Create rich-crews-protect.md
2023-04-30 09:17:19 +10:00
Yun Feng
751d3c78f5 fix: all tiers of sponsors are displayed under the 'gold sponsor' level (#1210) 2023-04-24 11:35:37 +02:00
github-actions[bot]
db66eb47a6 Version Packages (alpha) (#1199) 2023-04-16 14:33:43 +08:00
Eoghan Murray
c550cfa614 Reduce verbosity/redundancy of new pointerType attribute (#1206)
* Reduce verbosity/redundancy of output of new pointerType attribute by confining it only to clicks (and to a MouseDown/MouseUp from a PointerTypes.Pen, as these don't yet have a dedicated PendDown/PenUp)

* Update how the changeset will read for the next release based on the trimming in this PR

* Prefer triple equals

* The assignment to the outer `pointerType` variable in an anonymous function was somehow missed by the `typings` check

* Apply formatting changes

* Update packages/rrweb/src/record/observer.ts

* Update packages/rrweb/src/record/observer.ts

---------

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>
2023-04-16 14:28:47 +08:00
Ben White
bc84246f78 feat: Added support maskInputFn with HTMLElement (#1188) 2023-04-15 09:31:39 +02:00
Justin Halsall
944615d999 Add gold sponsors (#1207)
* Add gold sponsors

* Create empty-bikes-cheer.md
2023-04-15 09:16:45 +10:00
re-fort
94d06536e3 fix: change default value of input type from null to text (#1200)
* fix: change default value of input type from null to text

* Apply formatting changes

* add changeset

* add a comment related to the type of input element
2023-04-14 16:04:02 +08:00
Eoghan Murray
f88471184c Merge pull request #1201 from eoghanmurray/pointerTypeFixups
Pointer type fixups
2023-04-13 11:25:40 +01:00
Justin Halsall
4939c00004 Create fair-dragons-greet.md 2023-04-12 23:07:16 +02:00
Eoghan Murray
004d29ba70 eslint was giving an error here 2023-04-12 15:11:51 +01:00
Eoghan Murray
961abec782 Get puppeteer to produce a touch event - this also uncovered an error where a subsequent click would be picked up as a touch (see thisEventKey change) 2023-04-12 15:11:51 +01:00
Eoghan Murray
3ce6903122 Add a baseline test for clicking links 2023-04-12 13:55:05 +01:00
Eoghan Murray
777ab9a7cd pointerType shows up in clicks in these tests on my machine; 0=PointerTypes.Mouse is expected 2023-04-12 13:14:04 +01:00
Eoghan Murray
0228137f51 The type system was complaining about the remote possibility that e ended up as a TouchEvent instead of an individual Touch object I think 2023-04-12 13:13:53 +01:00
Eoghan Murray
b00798099a Fixup type errors 2023-04-12 12:10:04 +01:00
Eoghan Murray
41cc822f1d Merge pull request #1129 from eoghanmurray/pointerType
Record pointerType on clicks
2023-04-12 11:20:10 +01:00
Charlie Gracie
b5e30cf6cc fix: Set finished=false in goto instead of handleProgressClick (#1198)
* Reset the finished flag in goto

If the player finishes a replaying a video the `finished` boolean is set to true. This allows the video to be restarted at the beginning if the controller is toggled again. If a user clicks on the progress bar the `finished` boolean is reset so if the `toggle` API is called it starts at the right place. If a user programatically calls `goto` which is the underlying API that handling the progress click calls the next invocation of `toggle` will start the video at the beginning instead of the proper location.

* Create controller-finish-flag.md

* Update controller-finish-flag.md
2023-04-08 11:50:25 +10:00
Francesco Novy
aa79db7568 fix: Fix input.type check (#1184)
* fix: Fix input.type check

Actually I noticed that `el.type` returns `text` when type is not explicitly set, so this is slightly incorrect.

* fix linting

* Apply formatting changes
2023-04-08 00:18:22 +10:00
Yun Feng
d0fdc0f273 improve: add try catch to snapshot.ts 's masking text function (#1148)
* improve: add try catch to snapshot.ts to make it robust

* add change log
2023-04-07 19:25:22 +10:00
eoghanmurray
be856443dd Apply formatting changes 2023-04-05 15:51:24 +00:00
Eoghan Murray
3a6de4b129 Make the pointerType into an Enum to be consistent with other values in events 2023-04-05 16:49:44 +01:00
xujiujiu
d7beb11ca3 fix: doc fix canvas-webrtc link (#1193) 2023-04-02 19:40:01 +08:00
eoghanmurray
2114dc47d4 Apply formatting changes 2023-03-30 16:23:41 +00:00
Eoghan Murray
979d2b1847 Create little-suits-leave.md 2023-03-30 17:22:16 +01:00
eoghanmurray
73ee29f208 Apply formatting changes 2023-03-30 16:12:33 +00:00
Eoghan Murray
351c5551da Record pointerType on clicks - could be useful for displaying e.g. a circle rather than a point during replay
- We have to switch to 'onpointerdown' & 'onpointerup' in order to actually capture `e.pointerType`
 - this replaces 4 event listeners (MouseDown/MouseUp/TouchStart/TouchEnd) with 2 pointer ones which should fire in all 4 scenarios. We still output the old types according to the MouseInteractions enum
 - there is no Pointer equivalent of Click, so we leave that is, but use the last Pointer event to attach a pointerType to (only) the click event, where it is most useful
 - we can fallback to the old method for any browsers not supporting `window.PointerEvent`, in which case \`pointerType\` will be absent from all events
2023-03-30 17:06:52 +01:00
github-actions[bot]
1b2855bde1 Version Packages (alpha) (#1175)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
2023-03-28 19:05:18 +02:00
Yun Feng
f1f5865dcf move rrvideo to monorepo (#1181)
* first commit

* rrvideo v0.1.0

First version of rrvideo.

1. Use as a Node.JS lib.
2. Use as a CLI.

Features are implemented via puppeteer, ffmpeg and rrweb-player.

* add readme

* update publish script

* add node env in cli file and change package.json bin to same like README (#4)

Co-authored-by: Xu Yinjie <xuyinjie@xiaobangtouzi.com>

* release 0.2.0

* fix #6 avoid assign undefined to config

* Fix: Solve the inconsistency between rrvideo and the real recorded page rendering when rendering the page with a headless browser (https://github.com/rrweb-io/rrvideo/pull/26)

Author: xujiujiu <906784584@qq.com>

---------

Co-authored-by: xujiujiu <906784584@qq.com>

* refactor rrvideo

1. refactor code
2. change monorepo config
3. remove separate TS dependencies

* add changeset

* fix: eslint errors

---------

Co-authored-by: Yanzhen Yu <yanzhen@smartx.com>
Co-authored-by: xyj <593500664@qq.com>
Co-authored-by: Xu Yinjie <xuyinjie@xiaobangtouzi.com>
Co-authored-by: xujiujiu <906784584@qq.com>
2023-03-28 19:02:22 +02:00
Justin Halsall
1e6f71b3cd Fix: Trigger mouse movement & hover with mouse up/down in sync mode (#1191)
* Trigger mouse movement & hover with mouse up/down in sync mode

* Trigger touchActive and mouseDown on flush
2023-03-28 18:59:40 +02:00
yz-yu
0138ab8366 Update FUNDING.yml 2023-03-25 14:51:50 +08:00
Yun Feng
267e990dc0 Fix: processed-node-manager is created even in the environment that doesn't need a recorder (#1186)
* Fix: processed-node-manager is created even in the environment that doesn't need a recorder

* apply Justin's suggestion

End the RAF loop when the recorder stops
2023-03-24 17:55:22 +11:00
Francesco Novy
a225d8e141 feat: Allow to pass errorHandler as record option (#1107)
* feat: Allow to pass `errorHandler` as record option

* add docs

* Apply formatting changes
2023-03-22 10:24:36 +08:00
Francesco Novy
d2582e9a81 feat: Ensure password inputs are masked when switching type (#1170)
* feat: Ensure password inputs are masked when switching type


Apply formatting changes

use data- attribute


ref: Ensure type is always lowercased


add changeset

* extract into util

* Apply formatting changes
2023-03-20 20:13:23 +08:00
Eoghan Murray
a82a3b42b1 Extend the suppression of warnings to take into account anscestors (#1145)
* Extend the suppression of warnings to take account that a prior removal may not have been against the immediate parent of a subsequent removal, but rather some anscestor

* Create proud-experts-jam.md

* Apply formatting changes
2023-03-18 17:51:52 +11:00
fukang wang
e0f862bac7 fix: worker_thread warning (#1179)
* fix: worker_thread warning

* Create fast-chefs-smell.md

* Apply formatting changes

* Update fast-chefs-smell.md
2023-03-18 17:21:49 +11:00
fukang wang
5982c8972a fix: Cannot set property attributeName of #<MutationRecord> which has only a getter (#1173)
* fix: Cannot set property attributeName of #<MutationRecord> which has only a getter

* fix: attributeName readonly
2023-03-15 18:11:02 +08:00
sky
4cb4d0e95a improve: some websites rebuild imcomplete (#1163)
* improve: mutation.ts, loop use Set replace Array

* improve: add a try-catch to utils.ts to make it robust

* Create yellow-mails-cheat.md

---------

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>
2023-03-13 14:29:48 +08:00
fukang wang
e7f0c808c3 fix: inline images onload (#1174)
* fix: inline images onload

* add integration test case

* Apply formatting changes

* Create small-olives-arrive.md

---------

Co-authored-by: Yun Feng <yun.feng0817@gmail.com>
2023-03-13 13:56:09 +08:00
github-actions[bot]
1f8e5d5675 Version Packages (alpha) (#1138) 2023-03-08 16:06:25 +08:00
Justin Halsall
4948c3006a Fix changesets patch level of PR #1159 (#1169)
* Fix changesets patch level of PR #1159

* Create twenty-planets-repeat.md

* Apply formatting changes
2023-03-08 15:53:42 +08:00
Justin Halsall
d292167997 Add tsdoc/jsdoc deprecated notice to Mirror (#1168) 2023-03-08 08:19:37 +01:00
Yun Feng
f27e545e18 Fix: Switch to real dom before rebuilding fullsnapshot (#1139) 2023-03-08 08:19:00 +01:00
Eoghan Murray
d82c5edfff Update CONTRIBUTING.md (#1165)
* Update CONTRIBUTING.md

Add info about Changesets

* Apply formatting changes
2023-03-05 08:07:36 +11:00