testing WAP support

This commit is contained in:
nick-delirium 2025-06-06 15:26:49 +02:00
parent 8b568ee027
commit 345d099d8c
No known key found for this signature in database
GPG key ID: 93ABD695DF5FDBA0
20 changed files with 213 additions and 8 deletions

View file

@ -10,5 +10,5 @@ func IsMobileType(id int) bool {
} }
func IsDOMType(id int) bool { func IsDOMType(id int) bool {
return 0 == id || 4 == id || 5 == id || 6 == id || 7 == id || 8 == id || 9 == id || 10 == id || 11 == id || 12 == id || 13 == id || 14 == id || 15 == id || 16 == id || 18 == id || 19 == id || 20 == id || 34 == id || 35 == id || 37 == id || 38 == id || 49 == id || 50 == id || 51 == id || 43 == id || 52 == id || 54 == id || 55 == id || 57 == id || 58 == id || 59 == id || 60 == id || 61 == id || 65 == id || 67 == id || 68 == id || 69 == id || 70 == id || 71 == id || 72 == id || 73 == id || 74 == id || 75 == id || 76 == id || 77 == id || 113 == id || 114 == id || 117 == id || 118 == id || 119 == id || 122 == id || 93 == id || 96 == id || 100 == id || 101 == id || 102 == id || 103 == id || 104 == id || 105 == id || 106 == id || 111 == id return 0 == id || 4 == id || 5 == id || 6 == id || 7 == id || 8 == id || 9 == id || 10 == id || 11 == id || 12 == id || 13 == id || 14 == id || 15 == id || 16 == id || 18 == id || 19 == id || 20 == id || 34 == id || 35 == id || 36 == id || 37 == id || 38 == id || 49 == id || 50 == id || 51 == id || 43 == id || 52 == id || 54 == id || 55 == id || 57 == id || 58 == id || 59 == id || 60 == id || 61 == id || 65 == id || 67 == id || 68 == id || 69 == id || 70 == id || 71 == id || 72 == id || 73 == id || 74 == id || 75 == id || 76 == id || 77 == id || 113 == id || 114 == id || 117 == id || 118 == id || 119 == id || 122 == id || 93 == id || 96 == id || 100 == id || 101 == id || 102 == id || 103 == id || 104 == id || 105 == id || 106 == id || 111 == id
} }

View file

@ -37,6 +37,7 @@ const (
MsgPageEvent = 33 MsgPageEvent = 33
MsgStringDictGlobal = 34 MsgStringDictGlobal = 34
MsgSetNodeAttributeDictGlobal = 35 MsgSetNodeAttributeDictGlobal = 35
MsgNodeAnimationResult = 36
MsgCSSInsertRule = 37 MsgCSSInsertRule = 37
MsgCSSDeleteRule = 38 MsgCSSDeleteRule = 38
MsgFetch = 39 MsgFetch = 39
@ -1069,6 +1070,29 @@ func (msg *SetNodeAttributeDictGlobal) TypeID() int {
return 35 return 35
} }
type NodeAnimationResult struct {
message
ID uint64
Styles string
}
func (msg *NodeAnimationResult) Encode() []byte {
buf := make([]byte, 21+len(msg.Styles))
buf[0] = 36
p := 1
p = WriteUint(msg.ID, buf, p)
p = WriteString(msg.Styles, buf, p)
return buf[:p]
}
func (msg *NodeAnimationResult) Decode() Message {
return msg
}
func (msg *NodeAnimationResult) TypeID() int {
return 36
}
type CSSInsertRule struct { type CSSInsertRule struct {
message message
ID uint64 ID uint64

View file

@ -633,6 +633,18 @@ func DecodeSetNodeAttributeDictGlobal(reader BytesReader) (Message, error) {
return msg, err return msg, err
} }
func DecodeNodeAnimationResult(reader BytesReader) (Message, error) {
var err error = nil
msg := &NodeAnimationResult{}
if msg.ID, err = reader.ReadUint(); err != nil {
return nil, err
}
if msg.Styles, err = reader.ReadString(); err != nil {
return nil, err
}
return msg, err
}
func DecodeCSSInsertRule(reader BytesReader) (Message, error) { func DecodeCSSInsertRule(reader BytesReader) (Message, error) {
var err error = nil var err error = nil
msg := &CSSInsertRule{} msg := &CSSInsertRule{}
@ -2262,6 +2274,8 @@ func ReadMessage(t uint64, reader BytesReader) (Message, error) {
return DecodeStringDictGlobal(reader) return DecodeStringDictGlobal(reader)
case 35: case 35:
return DecodeSetNodeAttributeDictGlobal(reader) return DecodeSetNodeAttributeDictGlobal(reader)
case 36:
return DecodeNodeAnimationResult(reader)
case 37: case 37:
return DecodeCSSInsertRule(reader) return DecodeCSSInsertRule(reader)
case 38: case 38:

View file

@ -356,6 +356,14 @@ class SetNodeAttributeDictGlobal(Message):
self.value = value self.value = value
class NodeAnimationResult(Message):
__id__ = 36
def __init__(self, id, styles):
self.id = id
self.styles = styles
class CSSInsertRule(Message): class CSSInsertRule(Message):
__id__ = 37 __id__ = 37

View file

@ -535,6 +535,17 @@ cdef class SetNodeAttributeDictGlobal(PyMessage):
self.value = value self.value = value
cdef class NodeAnimationResult(PyMessage):
cdef public int __id__
cdef public unsigned long id
cdef public str styles
def __init__(self, unsigned long id, str styles):
self.__id__ = 36
self.id = id
self.styles = styles
cdef class CSSInsertRule(PyMessage): cdef class CSSInsertRule(PyMessage):
cdef public int __id__ cdef public int __id__
cdef public unsigned long id cdef public unsigned long id

View file

@ -373,6 +373,12 @@ class MessageCodec(Codec):
value=self.read_uint(reader) value=self.read_uint(reader)
) )
if message_id == 36:
return NodeAnimationResult(
id=self.read_uint(reader),
styles=self.read_string(reader)
)
if message_id == 37: if message_id == 37:
return CSSInsertRule( return CSSInsertRule(
id=self.read_uint(reader), id=self.read_uint(reader),

View file

@ -471,6 +471,12 @@ cdef class MessageCodec:
value=self.read_uint(reader) value=self.read_uint(reader)
) )
if message_id == 36:
return NodeAnimationResult(
id=self.read_uint(reader),
styles=self.read_string(reader)
)
if message_id == 37: if message_id == 37:
return CSSInsertRule( return CSSInsertRule(
id=self.read_uint(reader), id=self.read_uint(reader),

View file

@ -255,6 +255,16 @@ export default class RawMessageReader extends PrimitiveReader {
}; };
} }
case 36: {
const id = this.readUint(); if (id === null) { return resetPointer() }
const styles = this.readString(); if (styles === null) { return resetPointer() }
return {
tp: MType.NodeAnimationResult,
id,
styles,
};
}
case 37: { case 37: {
const id = this.readUint(); if (id === null) { return resetPointer() } const id = this.readUint(); if (id === null) { return resetPointer() }
const rule = this.readString(); if (rule === null) { return resetPointer() } const rule = this.readString(); if (rule === null) { return resetPointer() }

View file

@ -4,7 +4,7 @@
import { MType } from './raw.gen' import { MType } from './raw.gen'
const IOS_TYPES = [90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,110,111] const IOS_TYPES = [90,91,92,93,94,95,96,97,98,100,101,102,103,104,105,106,107,110,111]
const DOM_TYPES = [0,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,34,35,37,38,49,50,51,43,52,54,55,57,58,59,60,61,65,67,68,69,70,71,72,73,74,75,76,77,113,114,117,118,119,122] const DOM_TYPES = [0,4,5,6,7,8,9,10,11,12,13,14,15,16,18,19,20,34,35,36,37,38,49,50,51,43,52,54,55,57,58,59,60,61,65,67,68,69,70,71,72,73,74,75,76,77,113,114,117,118,119,122]
export function isDOMType(t: MType) { export function isDOMType(t: MType) {
return DOM_TYPES.includes(t) return DOM_TYPES.includes(t)
} }

View file

@ -25,6 +25,7 @@ import type {
RawConsoleLog, RawConsoleLog,
RawStringDictGlobal, RawStringDictGlobal,
RawSetNodeAttributeDictGlobal, RawSetNodeAttributeDictGlobal,
RawNodeAnimationResult,
RawCssInsertRule, RawCssInsertRule,
RawCssDeleteRule, RawCssDeleteRule,
RawFetch, RawFetch,
@ -133,6 +134,8 @@ export type StringDictGlobal = RawStringDictGlobal & Timed
export type SetNodeAttributeDictGlobal = RawSetNodeAttributeDictGlobal & Timed export type SetNodeAttributeDictGlobal = RawSetNodeAttributeDictGlobal & Timed
export type NodeAnimationResult = RawNodeAnimationResult & Timed
export type CssInsertRule = RawCssInsertRule & Timed export type CssInsertRule = RawCssInsertRule & Timed
export type CssDeleteRule = RawCssDeleteRule & Timed export type CssDeleteRule = RawCssDeleteRule & Timed

View file

@ -23,6 +23,7 @@ export const enum MType {
ConsoleLog = 22, ConsoleLog = 22,
StringDictGlobal = 34, StringDictGlobal = 34,
SetNodeAttributeDictGlobal = 35, SetNodeAttributeDictGlobal = 35,
NodeAnimationResult = 36,
CssInsertRule = 37, CssInsertRule = 37,
CssDeleteRule = 38, CssDeleteRule = 38,
Fetch = 39, Fetch = 39,
@ -226,6 +227,12 @@ export interface RawSetNodeAttributeDictGlobal {
value: number, value: number,
} }
export interface RawNodeAnimationResult {
tp: MType.NodeAnimationResult,
id: number,
styles: string,
}
export interface RawCssInsertRule { export interface RawCssInsertRule {
tp: MType.CssInsertRule, tp: MType.CssInsertRule,
id: number, id: number,
@ -710,4 +717,4 @@ export interface RawMobileIssueEvent {
} }
export type RawMessage = RawTimestamp | RawSetPageLocationDeprecated | RawSetViewportSize | RawSetViewportScroll | RawCreateDocument | RawCreateElementNode | RawCreateTextNode | RawMoveNode | RawRemoveNode | RawSetNodeAttribute | RawRemoveNodeAttribute | RawSetNodeData | RawSetCssData | RawSetNodeScroll | RawSetInputValue | RawSetInputChecked | RawMouseMove | RawNetworkRequestDeprecated | RawConsoleLog | RawStringDictGlobal | RawSetNodeAttributeDictGlobal | RawCssInsertRule | RawCssDeleteRule | RawFetch | RawProfiler | RawOTable | RawReduxDeprecated | RawVuex | RawMobX | RawNgRx | RawGraphQlDeprecated | RawPerformanceTrack | RawStringDictDeprecated | RawSetNodeAttributeDictDeprecated | RawStringDict | RawSetNodeAttributeDict | RawResourceTimingDeprecatedDeprecated | RawConnectionInformation | RawSetPageVisibility | RawLoadFontFace | RawSetNodeFocus | RawLongTask | RawSetNodeAttributeURLBased | RawSetCssDataURLBased | RawSetNodeSlot | RawCssInsertRuleURLBased | RawMouseClick | RawMouseClickDeprecated | RawCreateIFrameDocument | RawAdoptedSsReplaceURLBased | RawAdoptedSsReplace | RawAdoptedSsInsertRuleURLBased | RawAdoptedSsInsertRule | RawAdoptedSsDeleteRule | RawAdoptedSsAddOwner | RawAdoptedSsRemoveOwner | RawZustand | RawNetworkRequest | RawWsChannel | RawResourceTiming | RawIncident | RawLongAnimationTask | RawSelectionChange | RawMouseThrashing | RawResourceTimingDeprecated | RawTabChange | RawTabData | RawCanvasNode | RawTagTrigger | RawRedux | RawSetPageLocation | RawGraphQl | RawMobileEvent | RawMobileScreenChanges | RawMobileClickEvent | RawMobileInputEvent | RawMobilePerformanceEvent | RawMobileLog | RawMobileInternalError | RawMobileNetworkCall | RawMobileSwipeEvent | RawMobileIssueEvent; export type RawMessage = RawTimestamp | RawSetPageLocationDeprecated | RawSetViewportSize | RawSetViewportScroll | RawCreateDocument | RawCreateElementNode | RawCreateTextNode | RawMoveNode | RawRemoveNode | RawSetNodeAttribute | RawRemoveNodeAttribute | RawSetNodeData | RawSetCssData | RawSetNodeScroll | RawSetInputValue | RawSetInputChecked | RawMouseMove | RawNetworkRequestDeprecated | RawConsoleLog | RawStringDictGlobal | RawSetNodeAttributeDictGlobal | RawNodeAnimationResult | RawCssInsertRule | RawCssDeleteRule | RawFetch | RawProfiler | RawOTable | RawReduxDeprecated | RawVuex | RawMobX | RawNgRx | RawGraphQlDeprecated | RawPerformanceTrack | RawStringDictDeprecated | RawSetNodeAttributeDictDeprecated | RawStringDict | RawSetNodeAttributeDict | RawResourceTimingDeprecatedDeprecated | RawConnectionInformation | RawSetPageVisibility | RawLoadFontFace | RawSetNodeFocus | RawLongTask | RawSetNodeAttributeURLBased | RawSetCssDataURLBased | RawSetNodeSlot | RawCssInsertRuleURLBased | RawMouseClick | RawMouseClickDeprecated | RawCreateIFrameDocument | RawAdoptedSsReplaceURLBased | RawAdoptedSsReplace | RawAdoptedSsInsertRuleURLBased | RawAdoptedSsInsertRule | RawAdoptedSsDeleteRule | RawAdoptedSsAddOwner | RawAdoptedSsRemoveOwner | RawZustand | RawNetworkRequest | RawWsChannel | RawResourceTiming | RawIncident | RawLongAnimationTask | RawSelectionChange | RawMouseThrashing | RawResourceTimingDeprecated | RawTabChange | RawTabData | RawCanvasNode | RawTagTrigger | RawRedux | RawSetPageLocation | RawGraphQl | RawMobileEvent | RawMobileScreenChanges | RawMobileClickEvent | RawMobileInputEvent | RawMobilePerformanceEvent | RawMobileLog | RawMobileInternalError | RawMobileNetworkCall | RawMobileSwipeEvent | RawMobileIssueEvent;

View file

@ -24,6 +24,7 @@ export const TP_MAP = {
22: MType.ConsoleLog, 22: MType.ConsoleLog,
34: MType.StringDictGlobal, 34: MType.StringDictGlobal,
35: MType.SetNodeAttributeDictGlobal, 35: MType.SetNodeAttributeDictGlobal,
36: MType.NodeAnimationResult,
37: MType.CssInsertRule, 37: MType.CssInsertRule,
38: MType.CssDeleteRule, 38: MType.CssDeleteRule,
39: MType.Fetch, 39: MType.Fetch,

View file

@ -186,6 +186,12 @@ type TrSetNodeAttributeDictGlobal = [
value: number, value: number,
] ]
type TrNodeAnimationResult = [
type: 36,
id: number,
styles: string,
]
type TrCSSInsertRule = [ type TrCSSInsertRule = [
type: 37, type: 37,
id: number, id: number,
@ -627,7 +633,7 @@ type TrWebVitals = [
] ]
export type TrackerMessage = TrTimestamp | TrSetPageLocationDeprecated | TrSetViewportSize | TrSetViewportScroll | TrCreateDocument | TrCreateElementNode | TrCreateTextNode | TrMoveNode | TrRemoveNode | TrSetNodeAttribute | TrRemoveNodeAttribute | TrSetNodeData | TrSetNodeScroll | TrSetInputTarget | TrSetInputValue | TrSetInputChecked | TrMouseMove | TrNetworkRequestDeprecated | TrConsoleLog | TrPageLoadTiming | TrPageRenderTiming | TrCustomEvent | TrUserID | TrUserAnonymousID | TrMetadata | TrStringDictGlobal | TrSetNodeAttributeDictGlobal | TrCSSInsertRule | TrCSSDeleteRule | TrFetch | TrProfiler | TrOTable | TrStateAction | TrReduxDeprecated | TrVuex | TrMobX | TrNgRx | TrGraphQLDeprecated | TrPerformanceTrack | TrStringDictDeprecated | TrSetNodeAttributeDictDeprecated | TrStringDict | TrSetNodeAttributeDict | TrResourceTimingDeprecatedDeprecated | TrConnectionInformation | TrSetPageVisibility | TrLoadFontFace | TrSetNodeFocus | TrLongTask | TrSetNodeAttributeURLBased | TrSetCSSDataURLBased | TrTechnicalInfo | TrCustomIssue | TrSetNodeSlot | TrCSSInsertRuleURLBased | TrMouseClick | TrMouseClickDeprecated | TrCreateIFrameDocument | TrAdoptedSSReplaceURLBased | TrAdoptedSSInsertRuleURLBased | TrAdoptedSSDeleteRule | TrAdoptedSSAddOwner | TrAdoptedSSRemoveOwner | TrJSException | TrZustand | TrBatchMetadata | TrPartitionedMessage | TrNetworkRequest | TrWSChannel | TrResourceTiming | TrIncident | TrLongAnimationTask | TrInputChange | TrSelectionChange | TrMouseThrashing | TrUnbindNodes | TrResourceTimingDeprecated | TrTabChange | TrTabData | TrCanvasNode | TrTagTrigger | TrRedux | TrSetPageLocation | TrGraphQL | TrWebVitals export type TrackerMessage = TrTimestamp | TrSetPageLocationDeprecated | TrSetViewportSize | TrSetViewportScroll | TrCreateDocument | TrCreateElementNode | TrCreateTextNode | TrMoveNode | TrRemoveNode | TrSetNodeAttribute | TrRemoveNodeAttribute | TrSetNodeData | TrSetNodeScroll | TrSetInputTarget | TrSetInputValue | TrSetInputChecked | TrMouseMove | TrNetworkRequestDeprecated | TrConsoleLog | TrPageLoadTiming | TrPageRenderTiming | TrCustomEvent | TrUserID | TrUserAnonymousID | TrMetadata | TrStringDictGlobal | TrSetNodeAttributeDictGlobal | TrNodeAnimationResult | TrCSSInsertRule | TrCSSDeleteRule | TrFetch | TrProfiler | TrOTable | TrStateAction | TrReduxDeprecated | TrVuex | TrMobX | TrNgRx | TrGraphQLDeprecated | TrPerformanceTrack | TrStringDictDeprecated | TrSetNodeAttributeDictDeprecated | TrStringDict | TrSetNodeAttributeDict | TrResourceTimingDeprecatedDeprecated | TrConnectionInformation | TrSetPageVisibility | TrLoadFontFace | TrSetNodeFocus | TrLongTask | TrSetNodeAttributeURLBased | TrSetCSSDataURLBased | TrTechnicalInfo | TrCustomIssue | TrSetNodeSlot | TrCSSInsertRuleURLBased | TrMouseClick | TrMouseClickDeprecated | TrCreateIFrameDocument | TrAdoptedSSReplaceURLBased | TrAdoptedSSInsertRuleURLBased | TrAdoptedSSDeleteRule | TrAdoptedSSAddOwner | TrAdoptedSSRemoveOwner | TrJSException | TrZustand | TrBatchMetadata | TrPartitionedMessage | TrNetworkRequest | TrWSChannel | TrResourceTiming | TrIncident | TrLongAnimationTask | TrInputChange | TrSelectionChange | TrMouseThrashing | TrUnbindNodes | TrResourceTimingDeprecated | TrTabChange | TrTabData | TrCanvasNode | TrTagTrigger | TrRedux | TrSetPageLocation | TrGraphQL | TrWebVitals
export default function translate(tMsg: TrackerMessage): RawMessage | null { export default function translate(tMsg: TrackerMessage): RawMessage | null {
switch(tMsg[0]) { switch(tMsg[0]) {
@ -805,6 +811,14 @@ export default function translate(tMsg: TrackerMessage): RawMessage | null {
} }
} }
case 36: {
return {
tp: MType.NodeAnimationResult,
id: tMsg[1],
styles: tMsg[2],
}
}
case 37: { case 37: {
return { return {
tp: MType.CssInsertRule, tp: MType.CssInsertRule,

View file

@ -220,6 +220,11 @@ message 35, 'SetNodeAttributeDictGlobal' do
uint 'Value' uint 'Value'
end end
message 36, 'NodeAnimationResult' do
uint 'ID'
string 'Styles'
end
# DEPRECATED since 4.0.2 in favor of AdoptedSSInsertRule + AdoptedSSAddOwner # DEPRECATED since 4.0.2 in favor of AdoptedSSInsertRule + AdoptedSSAddOwner
message 37, 'CSSInsertRule' do message 37, 'CSSInsertRule' do
uint 'ID' uint 'ID'
@ -662,4 +667,4 @@ message 127, 'SessionSearch', :tracker => false, :replayer => false do
uint 'Partition' uint 'Partition'
end end
# FREE 2, 35, 36, 87, 88, 89 # FREE 2, 87, 88, 89

View file

@ -1,7 +1,7 @@
{ {
"name": "@openreplay/tracker", "name": "@openreplay/tracker",
"description": "The OpenReplay tracker main package", "description": "The OpenReplay tracker main package",
"version": "17.1.0", "version": "17.1.0-beta.11",
"keywords": [ "keywords": [
"logging", "logging",
"replay" "replay"

View file

@ -29,6 +29,7 @@ export declare const enum Type {
Metadata = 30, Metadata = 30,
StringDictGlobal = 34, StringDictGlobal = 34,
SetNodeAttributeDictGlobal = 35, SetNodeAttributeDictGlobal = 35,
NodeAnimationResult = 36,
CSSInsertRule = 37, CSSInsertRule = 37,
CSSDeleteRule = 38, CSSDeleteRule = 38,
Fetch = 39, Fetch = 39,
@ -271,6 +272,12 @@ export type SetNodeAttributeDictGlobal = [
/*value:*/ number, /*value:*/ number,
] ]
export type NodeAnimationResult = [
/*type:*/ Type.NodeAnimationResult,
/*id:*/ number,
/*styles:*/ string,
]
export type CSSInsertRule = [ export type CSSInsertRule = [
/*type:*/ Type.CSSInsertRule, /*type:*/ Type.CSSInsertRule,
/*id:*/ number, /*id:*/ number,
@ -712,5 +719,5 @@ export type WebVitals = [
] ]
type Message = Timestamp | SetPageLocationDeprecated | SetViewportSize | SetViewportScroll | CreateDocument | CreateElementNode | CreateTextNode | MoveNode | RemoveNode | SetNodeAttribute | RemoveNodeAttribute | SetNodeData | SetNodeScroll | SetInputTarget | SetInputValue | SetInputChecked | MouseMove | NetworkRequestDeprecated | ConsoleLog | PageLoadTiming | PageRenderTiming | CustomEvent | UserID | UserAnonymousID | Metadata | StringDictGlobal | SetNodeAttributeDictGlobal | CSSInsertRule | CSSDeleteRule | Fetch | Profiler | OTable | StateAction | ReduxDeprecated | Vuex | MobX | NgRx | GraphQLDeprecated | PerformanceTrack | StringDictDeprecated | SetNodeAttributeDictDeprecated | StringDict | SetNodeAttributeDict | ResourceTimingDeprecatedDeprecated | ConnectionInformation | SetPageVisibility | LoadFontFace | SetNodeFocus | LongTask | SetNodeAttributeURLBased | SetCSSDataURLBased | TechnicalInfo | CustomIssue | SetNodeSlot | CSSInsertRuleURLBased | MouseClick | MouseClickDeprecated | CreateIFrameDocument | AdoptedSSReplaceURLBased | AdoptedSSInsertRuleURLBased | AdoptedSSDeleteRule | AdoptedSSAddOwner | AdoptedSSRemoveOwner | JSException | Zustand | BatchMetadata | PartitionedMessage | NetworkRequest | WSChannel | ResourceTiming | Incident | LongAnimationTask | InputChange | SelectionChange | MouseThrashing | UnbindNodes | ResourceTimingDeprecated | TabChange | TabData | CanvasNode | TagTrigger | Redux | SetPageLocation | GraphQL | WebVitals type Message = Timestamp | SetPageLocationDeprecated | SetViewportSize | SetViewportScroll | CreateDocument | CreateElementNode | CreateTextNode | MoveNode | RemoveNode | SetNodeAttribute | RemoveNodeAttribute | SetNodeData | SetNodeScroll | SetInputTarget | SetInputValue | SetInputChecked | MouseMove | NetworkRequestDeprecated | ConsoleLog | PageLoadTiming | PageRenderTiming | CustomEvent | UserID | UserAnonymousID | Metadata | StringDictGlobal | SetNodeAttributeDictGlobal | NodeAnimationResult | CSSInsertRule | CSSDeleteRule | Fetch | Profiler | OTable | StateAction | ReduxDeprecated | Vuex | MobX | NgRx | GraphQLDeprecated | PerformanceTrack | StringDictDeprecated | SetNodeAttributeDictDeprecated | StringDict | SetNodeAttributeDict | ResourceTimingDeprecatedDeprecated | ConnectionInformation | SetPageVisibility | LoadFontFace | SetNodeFocus | LongTask | SetNodeAttributeURLBased | SetCSSDataURLBased | TechnicalInfo | CustomIssue | SetNodeSlot | CSSInsertRuleURLBased | MouseClick | MouseClickDeprecated | CreateIFrameDocument | AdoptedSSReplaceURLBased | AdoptedSSInsertRuleURLBased | AdoptedSSDeleteRule | AdoptedSSAddOwner | AdoptedSSRemoveOwner | JSException | Zustand | BatchMetadata | PartitionedMessage | NetworkRequest | WSChannel | ResourceTiming | Incident | LongAnimationTask | InputChange | SelectionChange | MouseThrashing | UnbindNodes | ResourceTimingDeprecated | TabChange | TabData | CanvasNode | TagTrigger | Redux | SetPageLocation | GraphQL | WebVitals
export default Message export default Message

View file

@ -340,6 +340,17 @@ export function SetNodeAttributeDictGlobal(
] ]
} }
export function NodeAnimationResult(
id: number,
styles: string,
): Messages.NodeAnimationResult {
return [
Messages.Type.NodeAnimationResult,
id,
styles,
]
}
export function CSSInsertRule( export function CSSInsertRule(
id: number, id: number,
rule: string, rule: string,

View file

@ -29,9 +29,11 @@ import ConstructedStyleSheets from './modules/constructedStyleSheets.js'
import Selection from './modules/selection.js' import Selection from './modules/selection.js'
import Tabs from './modules/tabs.js' import Tabs from './modules/tabs.js'
import LongAnimationTask from "./modules/longAnimationTask.js"; import LongAnimationTask from "./modules/longAnimationTask.js";
import FeatureFlags, { IFeatureFlag } from './modules/featureFlags.js'
import WebAnimations from './modules/webAnimations.js'
import { IN_BROWSER, deprecationWarn, DOCS_HOST, inIframe } from './utils.js' import { IN_BROWSER, deprecationWarn, DOCS_HOST, inIframe } from './utils.js'
import FeatureFlags, { IFeatureFlag } from './modules/featureFlags.js'
import type { Options as AppOptions } from './app/index.js' import type { Options as AppOptions } from './app/index.js'
import type { Options as ConsoleOptions } from './modules/console.js' import type { Options as ConsoleOptions } from './modules/console.js'
import type { Options as ExceptionOptions } from './modules/exception.js' import type { Options as ExceptionOptions } from './modules/exception.js'
@ -43,6 +45,7 @@ import type { MouseHandlerOptions } from './modules/mouse.js'
import type { SessionInfo } from './app/session.js' import type { SessionInfo } from './app/session.js'
import type { CssRulesOptions } from './modules/cssrules.js' import type { CssRulesOptions } from './modules/cssrules.js'
import type { LATOptions } from './modules/longAnimationTask.js' import type { LATOptions } from './modules/longAnimationTask.js'
import type { Options as WapOptions } from './modules/webAnimations.js'
import type { StartOptions } from './app/index.js' import type { StartOptions } from './app/index.js'
//TODO: unique options init //TODO: unique options init
@ -71,6 +74,7 @@ export type Options = Partial<
// dev only // dev only
__DISABLE_SECURE_MODE?: boolean __DISABLE_SECURE_MODE?: boolean
css: CssRulesOptions css: CssRulesOptions
webAnimations?: WapOptions
} }
const DOCS_SETUP = '/en/sdk' const DOCS_SETUP = '/en/sdk'
@ -217,6 +221,7 @@ export default class API {
Network(app, options.network) Network(app, options.network)
} }
Selection(app) Selection(app)
WebAnimations(app, options.webAnimations)
;(window as any).__OPENREPLAY__ = this ;(window as any).__OPENREPLAY__ = this
if (options.flags && options.flags.onFlagsLoad) { if (options.flags && options.flags.onFlagsLoad) {

View file

@ -0,0 +1,69 @@
import type App from '../app/index.js'
import { NodeAnimationResult } from '../app/messages.gen.js'
/**
* this will only work for custom elements by default (because of ionic)
*/
export interface Options {
allElements?: boolean
}
const toIgnore = ["composite", "computedOffset", "easing", "offset"]
function webAnimations(app: App, options: Options = {}) {
const { allElements = false } = options
let listening = new WeakSet<Node>()
let handled = new WeakSet()
function wire(anim, el, nodeId) {
if (handled.has(anim)) return
handled.add(anim)
anim.addEventListener(
'finish',
() => {
const lastKF = anim.effect.getKeyframes().at(-1)
const computedStyle = getComputedStyle(el)
const keys = Object.keys(lastKF).filter((p) => !toIgnore.includes(p))
// @ts-ignore
const finalStyle = {}
keys.forEach((key) => {
finalStyle[key] = computedStyle[key]
})
app.send(NodeAnimationResult(nodeId, JSON.stringify(finalStyle)))
},
{ once: true },
)
}
function scanElement(el, nodeId) {
el.getAnimations({ subtree: false }).forEach((anim) => wire(anim, el, nodeId))
}
app.nodes.attachNodeCallback((node) => {
if ((allElements || node.nodeName.includes('-')) && 'getAnimations' in node) {
const animations = (node as Element).getAnimations({ subtree: false })
const id = app.nodes.getID(node)
if (animations.length > 0 && !listening.has(node) && id) {
listening.add(node)
scanElement(node, id)
node.addEventListener('animationstart', () => scanElement(node, id))
}
}
})
const origAnimate = Element.prototype.animate
Element.prototype.animate = function (...args) {
const anim = origAnimate.apply(this, args)
wire(anim, this)
return anim
}
app.attachStopCallback(() => {
Element.prototype.animate = origAnimate // Restore original animate method
listening = new WeakSet<Node>()
handled = new WeakSet()
})
}
export default webAnimations

View file

@ -118,6 +118,10 @@ export default class MessageEncoder extends PrimitiveEncoder {
return this.uint(msg[1]) && this.uint(msg[2]) && this.uint(msg[3]) return this.uint(msg[1]) && this.uint(msg[2]) && this.uint(msg[3])
break break
case Messages.Type.NodeAnimationResult:
return this.uint(msg[1]) && this.string(msg[2])
break
case Messages.Type.CSSInsertRule: case Messages.Type.CSSInsertRule:
return this.uint(msg[1]) && this.string(msg[2]) && this.uint(msg[3]) return this.uint(msg[1]) && this.string(msg[2]) && this.uint(msg[3])
break break