Commit Graph

888 Commits

Author SHA1 Message Date
Yanzhen Yu
fc4804c8bc prevent form and a tag default behaviour 2018-11-06 14:23:55 +08:00
Yanzhen Yu
c91a3a3af6 add a repl mode for quick test 2018-11-06 14:23:30 +08:00
Yanzhen Yu
b9fc4253ae add chinese README 2018-11-05 20:06:54 +08:00
Yanzhen Yu
9471d4dd01 improve style of the player 2018-11-05 18:09:43 +08:00
Yanzhen Yu
4709c720cd also resolve missing previous node 2018-11-05 13:20:42 +08:00
Yanzhen Yu
f1930490b8 bump 0.5.1 2018-11-02 19:35:51 +08:00
Yanzhen Yu
0fb8fc4e0b Fix add node logic with missingNextNodeMap
This patch include a breaking change to the recorder's event data.

We used to consider mirror.getId will always return the id of the
target node because we keep serialize every node. But if we call
mirror.getId before serialization then bug happened. This could
happen when we get nextId of newly added nodes if its next sibling
was also newly added.
So we have to return -1 as the id of node which was not serialized
and when we building added nodes in the replayer we should handle
this.

For example, nodes el1, el2 were added together and el1's nextId
will be -1 since el2 was not serialized at that moment. Now we
call el1 as a 'missing next node' and not append it into the DOM
tree after building, instead we store it in a missingNextNodeMap.
After a added node in the same mutation was successfully appened
we will check whether it has a previous id and the id was pointed
to some nodes in the map, if so, we will insert that node before
it and delete the node from map.
2018-11-02 19:23:03 +08:00
Yanzhen Yu
8f1d9d5ca9 update rrweb and use the resume method with better performance 2018-11-02 11:07:56 +08:00
Yanzhen Yu
618f9aed19 fix the add node condition 2018-11-02 10:31:26 +08:00
Yanzhen Yu
8ed1c999cf temp hack the integration test cases 2018-11-01 17:47:11 +08:00
Yanzhen Yu
a89e71e5e7 fix order of continuous append 2018-11-01 17:16:54 +08:00
Yanzhen Yu
86ad633080 add travis build 2018-11-01 14:58:37 +08:00
Yanzhen Yu
25cd87ddf7 bump 0.5.0 2018-11-01 13:32:26 +08:00
Yanzhen Yu
e9add18029 Implement #2: simulate hover event 2018-11-01 13:31:09 +08:00
Yanzhen Yu
cb3c842a12 bump 0.5.6 2018-11-01 13:29:23 +08:00
Yanzhen Yu
216d03dae3 Fix the regexp performance issue
Also move the addHoverClass implementation into the rebuild stage.
So if there is still some corner case we have not handled, it will
only affect the replayer part of rrweb.
2018-11-01 11:36:25 +08:00
Yanzhen Yu
5904050cd2 departed 0.5.4 and bump 0.5.5 2018-10-31 19:07:27 +08:00
Yanzhen Yu
65236bf3d1 bump 0.5.4 2018-10-31 19:04:43 +08:00
Yanzhen Yu
7f806128ed add hover class to :hover related css rules 2018-10-31 19:02:26 +08:00
Yanzhen Yu
77dcfd8360 add select2.html snapshot test 2018-10-31 16:58:08 +08:00
Yanzhen Yu
8f22a1b92f implement pause which has a better performance than play at some time offset 2018-10-31 16:43:49 +08:00
Yanzhen Yu
b3c8e2a8d6 bump 0.4.3 2018-10-31 12:26:26 +08:00
Yanzhen Yu
cff1617959 fix mutation filter in recorder and change the order of apply mutations in replayer
This change include two critical fix for both recorder and replayer.

In the recorder, previously we filter text and attribute mutations by check its target id,
but this was a wrong approach because removed node also has id at the callback moment.
We corrected this by checking whether the mirror map still has the target id in its keys.

In the replayer side, the issue was we got exceptions when calling insertBefore which says
the ref node was not the child node of the caller node. This will happen when the previous
or next sibling has been removed in the same callback but the previousId or nextId was
recorded.
After apply remove node mutations before add node mutations, we can make sure the removed
siblings will not exist in the mirror map when apply add node mutations. When we get node
from mirror map with an removed id, we will get null and pass it to insertBefore which
is valid.
As a side note, this apply order is safe because we ensured all the remove node mutations
do not include removing newly added nodes in the same callback.
2018-10-31 12:06:41 +08:00
Yanzhen Yu
8acf670a99 add a has method to mirror for checking whether an id is in the map 2018-10-31 12:06:32 +08:00
Yanzhen Yu
0d2479f5f1 bundle player as an component 2018-10-23 19:00:21 +08:00
Yanzhen Yu
33b58c7717 add speed setter and option for display controller or not 2018-10-23 18:59:29 +08:00
Yanzhen Yu
7b9e57bd6c filter text and attributes mutations which target tot a removed node 2018-10-23 11:48:48 +08:00
Yanzhen Yu
68949a08c3 check added nodes from removed nodes and dropped nodes 2018-10-23 11:28:15 +08:00
Yanzhen Yu
d588f738b8 rewrite mutation observer handler with lazy child list calculation 2018-10-22 23:08:05 +08:00
Yanzhen Yu
689c788669 bump 0.5.3 2018-10-22 23:05:21 +08:00
Yanzhen Yu
2a50fff366 allow skip child when serialize node and rebuild node 2018-10-22 23:03:10 +08:00
Yanzhen Yu
e5dba6a986 remove local test code 2018-10-22 10:50:57 +08:00
Yanzhen Yu
a88a79d821 add meta event and fix childList observer, also update related replayer 2018-10-22 10:48:56 +08:00
Yanzhen Yu
5934cc71f2 bump 0.5.2 2018-10-22 10:36:40 +08:00
Yanzhen Yu
508bbdfc26 refactor rebuild implementation which mount DOM onto the target document object 2018-10-22 10:34:23 +08:00
Yanzhen Yu
202a674636 use document object from params instead of the one in the current scope 2018-10-21 22:36:07 +08:00
Yanzhen Yu
416c1eec9a fix style content url normalizer and add some tests 2018-10-18 19:42:01 +08:00
Yanzhen Yu
6c8cf5c379 implemented the play any offset feature 2018-10-18 16:24:01 +08:00
Yanzhen Yu
43b2290f5f export reset id function 2018-10-18 16:13:59 +08:00
Yanzhen Yu
0f7fa67871 impl controller play, pause and speed 2018-10-18 15:21:51 +08:00
Yanzhen Yu
e99bd3245f add player controller 2018-10-17 19:10:45 +08:00
Yanzhen Yu
8186f05e1c export more props of replayer to the UI 2018-10-17 17:47:38 +08:00
Yanzhen Yu
f97c829a7d attach the scaled iframe into player 2018-10-17 15:45:02 +08:00
Yanzhen Yu
904cc493db add eslint 2018-10-17 14:14:44 +08:00
Yanzhen Yu
2eed038e6b init repo 2018-10-17 12:06:18 +08:00
Yanzhen Yu
72beb51110 fix npm package files and bump version 2018-10-16 18:09:51 +08:00
Yanzhen Yu
fade2df5d4 bump 0.4.0 2018-10-16 18:04:54 +08:00
Yanzhen Yu
71932ee530 update README and add travis 2018-10-16 17:57:11 +08:00
Yanzhen Yu
d827fdc947 impl dynamic config and pause. Bump 0.3.0 2018-10-16 15:31:56 +08:00
Yanzhen Yu
49cd7b4db3 align id map by skip extra added nodes 2018-10-16 15:29:52 +08:00