@tarojs/plugin-platform-harmony-ets 4.0.0-beta.7 → 4.0.0-beta.70
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/apis/base/system.ts +73 -20
- package/dist/apis/canvas/index.ts +10 -1
- package/dist/apis/device/clipboard.ts +9 -1
- package/dist/apis/framework/index.ts +1 -5
- package/dist/apis/index.ts +27 -17
- package/dist/apis/network/request.ts +5 -5
- package/dist/apis/route/index.ts +15 -0
- package/dist/apis/storage/index.ts +146 -78
- package/dist/apis/ui/animation/animation.ts +71 -29
- package/dist/apis/ui/background.ts +2 -1
- package/dist/apis/ui/interaction/index.ts +42 -59
- package/dist/apis/ui/navigation-bar/index.ts +1 -1
- package/dist/apis/ui/scroll/index.ts +1 -1
- package/dist/apis/utils/index.ts +1 -1
- package/dist/apis/wxml/IntersectionObserver.ts +18 -10
- package/dist/apis/wxml/index.ts +2 -0
- package/dist/apis/wxml/selectorQuery.ts +24 -11
- package/dist/components-harmony-ets/button.ets +48 -34
- package/dist/components-harmony-ets/canvas.ets +51 -0
- package/dist/components-harmony-ets/checkbox.ets +69 -61
- package/dist/components-harmony-ets/form.ets +51 -29
- package/dist/components-harmony-ets/icon.ets +31 -19
- package/dist/components-harmony-ets/image.ets +34 -14
- package/dist/components-harmony-ets/index.ets +92 -0
- package/dist/components-harmony-ets/innerHtml.ets +11 -6
- package/dist/components-harmony-ets/input.ets +45 -41
- package/dist/components-harmony-ets/label.ets +69 -42
- package/dist/components-harmony-ets/listView.ets +26 -0
- package/dist/components-harmony-ets/movableArea.ets +126 -0
- package/dist/components-harmony-ets/movableView.ets +77 -0
- package/dist/components-harmony-ets/navigationBar.ets +65 -0
- package/dist/components-harmony-ets/pageMeta.ets +94 -0
- package/dist/components-harmony-ets/picker.ets +42 -38
- package/dist/components-harmony-ets/progress.ets +52 -0
- package/dist/components-harmony-ets/pseudo.ets +80 -0
- package/dist/components-harmony-ets/radio.ets +71 -64
- package/dist/components-harmony-ets/richText.ets +14 -30
- package/dist/components-harmony-ets/scrollList.ets +94 -0
- package/dist/components-harmony-ets/scrollView.ets +61 -57
- package/dist/components-harmony-ets/slider.ets +15 -14
- package/dist/components-harmony-ets/stickySection.ets +42 -0
- package/dist/components-harmony-ets/style.ets +372 -130
- package/dist/components-harmony-ets/swiper.ets +61 -20
- package/dist/components-harmony-ets/switch.ets +30 -28
- package/dist/components-harmony-ets/{index.ts → tag.ts} +6 -0
- package/dist/components-harmony-ets/text.ets +135 -49
- package/dist/components-harmony-ets/textArea.ets +47 -35
- package/dist/components-harmony-ets/utils/AttributeManager.ets +1 -1
- package/dist/components-harmony-ets/utils/DynamicCenter.ts +1 -1
- package/dist/components-harmony-ets/utils/flexManager.ets +47 -19
- package/dist/components-harmony-ets/utils/helper.ets +18 -5
- package/dist/components-harmony-ets/utils/htmlParser/HarmonyHTMLParser.ts +1 -2
- package/dist/components-harmony-ets/utils/htmlParser/index.ts +1 -1
- package/dist/components-harmony-ets/utils/index.ts +54 -50
- package/dist/components-harmony-ets/utils/styles.ets +170 -93
- package/dist/components-harmony-ets/video.ets +34 -21
- package/dist/components-harmony-ets/view.ets +63 -52
- package/dist/components-harmony-ets/webView.ets +40 -34
- package/dist/index.d.ts +152 -0
- package/dist/index.js +85 -42
- package/dist/index.js.map +1 -1
- package/dist/runtime-ets/bom/document.ts +6 -4
- package/dist/runtime-ets/bom/getComputedStyle.ts +2 -2
- package/dist/runtime-ets/bom/window.ts +7 -0
- package/dist/runtime-ets/current.ts +3 -0
- package/dist/runtime-ets/dom/bind.ts +28 -12
- package/dist/runtime-ets/dom/class-list.ts +2 -2
- package/dist/runtime-ets/dom/cssNesting.ts +409 -0
- package/dist/runtime-ets/dom/cssStyleDeclaration.ts +28 -42
- package/dist/runtime-ets/dom/document.ts +22 -8
- package/dist/runtime-ets/dom/element/canvas.ts +136 -0
- package/dist/runtime-ets/dom/element/element.ts +334 -58
- package/dist/runtime-ets/dom/element/form.ts +23 -26
- package/dist/runtime-ets/dom/element/index.ts +25 -2
- package/dist/runtime-ets/dom/element/movableArea.ts +11 -0
- package/dist/runtime-ets/dom/element/movableView.ts +209 -0
- package/dist/runtime-ets/dom/element/normal.ts +35 -8
- package/dist/runtime-ets/dom/element/progress.ts +11 -0
- package/dist/runtime-ets/dom/element/scrollView.ts +1 -0
- package/dist/runtime-ets/dom/element/text.ts +1 -8
- package/dist/runtime-ets/dom/element/video.ts +5 -4
- package/dist/runtime-ets/dom/element/webView.ts +12 -5
- package/dist/runtime-ets/dom/event.ts +2 -4
- package/dist/runtime-ets/dom/eventTarget.ts +2 -3
- package/dist/runtime-ets/dom/node.ts +49 -28
- package/dist/runtime-ets/dom/stylesheet/covertWeb2Hm.ts +416 -235
- package/dist/runtime-ets/dom/stylesheet/index.ts +29 -311
- package/dist/runtime-ets/dom/stylesheet/type.ts +49 -9
- package/dist/runtime-ets/dom/stylesheet/util.ts +33 -27
- package/dist/runtime-ets/index.ts +2 -1
- package/dist/runtime-ets/interface/event.ts +1 -1
- package/dist/runtime-ets/utils/index.ts +69 -13
- package/dist/runtime-ets/utils/info.ts +2 -2
- package/dist/runtime-framework/react/app.ts +7 -2
- package/dist/runtime-framework/react/hooks.ts +0 -1
- package/dist/runtime-framework/react/index.ts +0 -2
- package/dist/runtime-framework/react/native-page.ts +32 -14
- package/dist/runtime-framework/react/page.ts +3 -8
- package/dist/runtime-framework/solid/app.ts +25 -45
- package/dist/runtime-framework/solid/connect.ts +21 -3
- package/dist/runtime-framework/solid/hooks.ts +16 -11
- package/dist/runtime-framework/solid/index.ts +6 -2
- package/dist/runtime-framework/solid/page.ts +84 -30
- package/dist/runtime-framework/solid/reconciler/props.ts +70 -25
- package/dist/runtime-framework/solid/reconciler/render.ts +16 -6
- package/dist/runtime-framework/solid/reconciler/use.ts +0 -1
- package/dist/runtime-framework/solid/utils/index.ts +0 -2
- package/dist/runtime-utils.d.ts +827 -0
- package/dist/runtime-utils.js +425 -200
- package/dist/runtime-utils.js.map +1 -1
- package/dist/runtime.d.ts +1 -0
- package/dist/runtime.js +425 -200
- package/dist/runtime.js.map +1 -1
- package/index.js +3 -1
- package/package.json +13 -13
- package/static/media/cancel.svg +1 -1
- package/static/media/circle.svg +1 -1
- package/static/media/clear.svg +1 -1
- package/static/media/download.svg +1 -1
- package/static/media/info.svg +1 -1
- package/static/media/info_circle.svg +1 -1
- package/static/media/search.svg +1 -1
- package/static/media/success.svg +1 -1
- package/static/media/success_no_circle.svg +1 -1
- package/static/media/warn.svg +1 -1
- package/types/harmony.d.ts +4 -0
- package/types/index.d.ts +4 -0
- /package/dist/runtime-framework/solid/{contant.ts → constant.ts} +0 -0
|
@@ -0,0 +1,136 @@
|
|
|
1
|
+
import { eventSource, TaroAny, TaroNode } from '@tarojs/runtime'
|
|
2
|
+
|
|
3
|
+
import { TaroElement } from './element'
|
|
4
|
+
|
|
5
|
+
import type { CanvasProps, CanvasTouchEvent } from '@tarojs/components/types'
|
|
6
|
+
|
|
7
|
+
export class CanvasRenderingContext2DWXAdapter extends CanvasRenderingContext2D {
|
|
8
|
+
// constructor(settings?: RenderingContextSetting) {
|
|
9
|
+
// super(settings)
|
|
10
|
+
// }
|
|
11
|
+
|
|
12
|
+
createCircularGradient() {
|
|
13
|
+
// Not supported now
|
|
14
|
+
}
|
|
15
|
+
|
|
16
|
+
draw(cb?: (...args: any[]) => any) {
|
|
17
|
+
typeof cb === 'function' && cb()
|
|
18
|
+
// Not supported now
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
setFillStyle(fillStyle: typeof this.fillStyle) {
|
|
22
|
+
this.fillStyle = fillStyle
|
|
23
|
+
}
|
|
24
|
+
|
|
25
|
+
setFontSize(fontSize: number) {
|
|
26
|
+
const font = this.font.split(' ')
|
|
27
|
+
font[2] = `${fontSize}`
|
|
28
|
+
this.font = font.join(' ')
|
|
29
|
+
}
|
|
30
|
+
|
|
31
|
+
setGlobalAlpha(globalAlpha: typeof this.globalAlpha) {
|
|
32
|
+
this.globalAlpha = globalAlpha
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
setLineCap(lineCap: typeof this.lineCap) {
|
|
36
|
+
this.lineCap = lineCap
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
setLineJoin(lineJoin: typeof this.lineJoin) {
|
|
40
|
+
this.lineJoin = lineJoin
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
setLineWidth(lineWidth: typeof this.lineWidth) {
|
|
44
|
+
this.lineWidth = lineWidth
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
setMiterLimit(miterLimit: typeof this.miterLimit) {
|
|
48
|
+
this.miterLimit = miterLimit
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
setShadow(offsetX: number, offsetY: number, blur: number, color: string) {
|
|
52
|
+
this.shadowOffsetX = offsetX
|
|
53
|
+
this.shadowOffsetY = offsetY
|
|
54
|
+
this.shadowBlur = blur
|
|
55
|
+
this.shadowColor = color
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
setStrokeStyle(strokeStyle: typeof this.strokeStyle) {
|
|
59
|
+
this.strokeStyle = strokeStyle
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
setTextAlign(textAlign: typeof this.textAlign) {
|
|
63
|
+
this.textAlign = textAlign
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
setTextBaseline(textBaseline: typeof this.textBaseline) {
|
|
67
|
+
this.textBaseline = textBaseline
|
|
68
|
+
}
|
|
69
|
+
}
|
|
70
|
+
function getContextKey(obj) {
|
|
71
|
+
let currentObj = obj
|
|
72
|
+
let res = []
|
|
73
|
+
while (currentObj) {
|
|
74
|
+
if (currentObj instanceof CanvasRenderingContext2D) {
|
|
75
|
+
res = [...res, ...Object.getOwnPropertyNames(currentObj)]
|
|
76
|
+
}
|
|
77
|
+
currentObj = Object.getPrototypeOf(currentObj)
|
|
78
|
+
}
|
|
79
|
+
return res
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
@Observed
|
|
83
|
+
export class TaroCanvasElement extends TaroElement<CanvasProps, CanvasTouchEvent> {
|
|
84
|
+
_drawList: {
|
|
85
|
+
key: string
|
|
86
|
+
value: TaroAny
|
|
87
|
+
}[] = []
|
|
88
|
+
|
|
89
|
+
settings: RenderingContextSettings
|
|
90
|
+
_context: CanvasRenderingContext2D
|
|
91
|
+
_contextProxy: CanvasRenderingContext2D
|
|
92
|
+
|
|
93
|
+
constructor() {
|
|
94
|
+
super('Canvas')
|
|
95
|
+
this.settings = new RenderingContextSettings(true)
|
|
96
|
+
const context = new CanvasRenderingContext2DWXAdapter(this.settings) as CanvasRenderingContext2D
|
|
97
|
+
this._context = context
|
|
98
|
+
|
|
99
|
+
const proxyObj = getContextKey(context).reduce((obj, key) => {
|
|
100
|
+
if (typeof context[key] === 'function') {
|
|
101
|
+
obj[key] = new Proxy(context[key], {
|
|
102
|
+
apply: (target, thisArg, argumentsList) => {
|
|
103
|
+
this._drawList.push({
|
|
104
|
+
key,
|
|
105
|
+
value: argumentsList,
|
|
106
|
+
})
|
|
107
|
+
},
|
|
108
|
+
})
|
|
109
|
+
} else {
|
|
110
|
+
obj[key] = context[key]
|
|
111
|
+
}
|
|
112
|
+
return obj
|
|
113
|
+
}, {})
|
|
114
|
+
|
|
115
|
+
this._contextProxy = new Proxy(proxyObj, {
|
|
116
|
+
set: (_, property, value) => {
|
|
117
|
+
this._drawList.push({
|
|
118
|
+
key: property,
|
|
119
|
+
value,
|
|
120
|
+
})
|
|
121
|
+
return true
|
|
122
|
+
},
|
|
123
|
+
})
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
get context() {
|
|
127
|
+
return this._contextProxy
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
public setAttribute(name: string, value: TaroAny): void {
|
|
131
|
+
if (name === 'canvasId') {
|
|
132
|
+
eventSource.set(`canvasId-${value}`, this as TaroNode)
|
|
133
|
+
}
|
|
134
|
+
super.setAttribute(name, value)
|
|
135
|
+
}
|
|
136
|
+
}
|
|
@@ -1,67 +1,90 @@
|
|
|
1
|
-
import { eventSource } from '@tarojs/runtime/dist/runtime.esm'
|
|
1
|
+
import { eventCenter, eventSource } from '@tarojs/runtime/dist/runtime.esm'
|
|
2
|
+
import { EMPTY_OBJ, toCamelCase } from '@tarojs/shared'
|
|
2
3
|
|
|
3
4
|
import { ATTRIBUTES_CALLBACK_TRIGGER_MAP, ID } from '../../constant'
|
|
5
|
+
import { Current } from '../../current'
|
|
4
6
|
import { findChildNodeWithDFS } from '../../utils'
|
|
5
7
|
import { initComponentNodeInfo, triggerAttributesCallback } from '../../utils/info'
|
|
6
8
|
import { bindAnimation } from '../bind'
|
|
7
9
|
import { ClassList } from '../class-list'
|
|
10
|
+
import { type ICSSStyleDeclaration, createCSSStyleDeclaration } from '../cssStyleDeclaration'
|
|
8
11
|
import { NodeType, TaroNode } from '../node'
|
|
9
|
-
import StyleSheet from '../stylesheet'
|
|
12
|
+
import StyleSheet, { HarmonyStyle, TaroStyleType } from '../stylesheet'
|
|
10
13
|
|
|
11
|
-
import type { StandardProps } from '@tarojs/components/types'
|
|
14
|
+
import type { BaseTouchEvent, ITouchEvent, StandardProps } from '@tarojs/components/types'
|
|
12
15
|
import type { TaroAny } from '../../utils'
|
|
13
|
-
import type { ICSSStyleDeclaration } from '../cssStyleDeclaration'
|
|
14
16
|
|
|
15
|
-
type NamedNodeMap =
|
|
17
|
+
type NamedNodeMap = { name: string, value: string }[]
|
|
16
18
|
|
|
17
19
|
export interface TaroExtraProps {
|
|
18
20
|
compileMode?: string | boolean
|
|
19
21
|
compileIf?: boolean
|
|
20
22
|
disabled?: boolean
|
|
23
|
+
__hmStyle?: TaroStyleType
|
|
21
24
|
}
|
|
22
25
|
|
|
23
|
-
|
|
24
|
-
|
|
26
|
+
export class TaroElement<
|
|
27
|
+
T extends StandardProps<any, U> = StandardProps,
|
|
28
|
+
U extends BaseTouchEvent<any> = ITouchEvent
|
|
29
|
+
> extends TaroNode {
|
|
25
30
|
public _innerHTML = ''
|
|
26
|
-
public _nodeInfo: TaroAny = {
|
|
31
|
+
public _nodeInfo: TaroAny = {
|
|
32
|
+
layer: 0 // 渲染层级
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
public hm_instance: TaroAny
|
|
36
|
+
|
|
37
|
+
public get _instance () {
|
|
38
|
+
return this.hm_instance
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
public set _instance (value) {
|
|
42
|
+
this.hm_instance = value
|
|
43
|
+
if (this._nodeInfo.aboutToAppear) {
|
|
44
|
+
let task
|
|
45
|
+
// eslint-disable-next-line no-cond-assign
|
|
46
|
+
while (task = this._nodeInfo.aboutToAppear.shift()) {
|
|
47
|
+
task()
|
|
48
|
+
}
|
|
49
|
+
}
|
|
50
|
+
}
|
|
51
|
+
|
|
27
52
|
public readonly tagName: string
|
|
53
|
+
public dataset: Record<string, unknown> = EMPTY_OBJ
|
|
28
54
|
public _attrs: T & TaroExtraProps = {} as T & TaroExtraProps
|
|
29
55
|
|
|
30
|
-
_client?: Area
|
|
31
|
-
_scroll?: Area
|
|
32
|
-
|
|
33
56
|
constructor(tagName: string) {
|
|
34
57
|
super(tagName.replace(new RegExp('(?<=.)([A-Z])', 'g'), '-$1').toUpperCase(), NodeType.ELEMENT_NODE)
|
|
35
58
|
this.tagName = this.nodeName
|
|
36
|
-
|
|
59
|
+
this._style = createCSSStyleDeclaration(this)
|
|
37
60
|
initComponentNodeInfo(this)
|
|
38
61
|
bindAnimation(this)
|
|
39
62
|
}
|
|
40
63
|
|
|
41
|
-
public set id
|
|
64
|
+
public set id(value: string) {
|
|
42
65
|
this.setAttribute('id', value)
|
|
43
66
|
}
|
|
44
67
|
|
|
45
|
-
public get id
|
|
68
|
+
public get id(): string {
|
|
46
69
|
return this.getAttribute('id') || this._nid
|
|
47
70
|
}
|
|
48
71
|
|
|
49
|
-
public set className
|
|
72
|
+
public set className(value: string) {
|
|
50
73
|
this.setAttribute('class', value)
|
|
51
74
|
}
|
|
52
75
|
|
|
53
|
-
public get className
|
|
76
|
+
public get className(): string {
|
|
54
77
|
return this.getAttribute('class') || ''
|
|
55
78
|
}
|
|
56
79
|
|
|
57
|
-
public get classList
|
|
80
|
+
public get classList(): ClassList {
|
|
58
81
|
return new ClassList(this.className, this)
|
|
59
82
|
}
|
|
60
83
|
|
|
61
|
-
public get attributes
|
|
84
|
+
public get attributes(): NamedNodeMap {
|
|
62
85
|
const list: NamedNodeMap = []
|
|
63
86
|
|
|
64
|
-
Object.keys(this._attrs).forEach(name => {
|
|
87
|
+
Object.keys(this._attrs).forEach((name) => {
|
|
65
88
|
const value: TaroAny = this._attrs[name]
|
|
66
89
|
|
|
67
90
|
list.push({ name, value })
|
|
@@ -70,73 +93,107 @@ export class TaroElement<T extends StandardProps = StandardProps> extends TaroNo
|
|
|
70
93
|
return list
|
|
71
94
|
}
|
|
72
95
|
|
|
73
|
-
public get children
|
|
74
|
-
return this.childNodes.filter(node => node.nodeType === NodeType.ELEMENT_NODE) as TaroElement[]
|
|
96
|
+
public get children(): TaroElement[] {
|
|
97
|
+
return this.childNodes.filter((node) => node.nodeType === NodeType.ELEMENT_NODE) as TaroElement[]
|
|
75
98
|
}
|
|
76
99
|
|
|
77
|
-
public setAttribute
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
100
|
+
public setAttribute(name: string, value: TaroAny): void {
|
|
101
|
+
switch (name) {
|
|
102
|
+
case ID:
|
|
103
|
+
eventSource.delete(this._attrs.id)
|
|
104
|
+
eventSource.set(value, this as TaroAny)
|
|
105
|
+
break
|
|
106
|
+
default:
|
|
107
|
+
if (name.startsWith('data-')) {
|
|
108
|
+
if (this.dataset === EMPTY_OBJ) {
|
|
109
|
+
this.dataset = Object.create(null)
|
|
110
|
+
}
|
|
111
|
+
this.dataset[toCamelCase(name.replace(/^data-/, ''))] = value
|
|
112
|
+
}
|
|
113
|
+
break
|
|
81
114
|
}
|
|
82
115
|
|
|
83
116
|
this._attrs[name] = value
|
|
84
117
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
118
|
+
if (['PAGE-META', 'NAVIGATION-BAR'].includes(this.tagName)) {
|
|
119
|
+
// FIXME 等 Harmony 支持更细粒度的 @Watch 方法后移出
|
|
120
|
+
eventCenter.trigger('__taroComponentAttributeUpdate', {
|
|
121
|
+
id: this._nid,
|
|
122
|
+
tagName: this.tagName,
|
|
123
|
+
attribute: name,
|
|
124
|
+
value
|
|
125
|
+
})
|
|
126
|
+
} else {
|
|
127
|
+
const attributeTriggerValue: TaroAny = ATTRIBUTES_CALLBACK_TRIGGER_MAP[name]
|
|
128
|
+
if (attributeTriggerValue) {
|
|
129
|
+
const triggerName: TaroAny = attributeTriggerValue.triggerName
|
|
130
|
+
const valueInspect: TaroAny = attributeTriggerValue.valueInspect
|
|
89
131
|
|
|
90
|
-
|
|
132
|
+
if (valueInspect && !valueInspect(value)) return
|
|
91
133
|
|
|
92
|
-
|
|
134
|
+
triggerAttributesCallback(this, triggerName)
|
|
135
|
+
}
|
|
93
136
|
}
|
|
94
137
|
}
|
|
95
138
|
|
|
96
|
-
public getAttribute
|
|
139
|
+
public getAttribute(name: string): string {
|
|
97
140
|
return this._attrs[name]
|
|
98
141
|
}
|
|
99
142
|
|
|
100
|
-
public removeAttribute
|
|
143
|
+
public removeAttribute(name: string): void {
|
|
101
144
|
this._attrs[name] = null
|
|
102
145
|
}
|
|
103
146
|
|
|
104
|
-
public hasAttribute
|
|
147
|
+
public hasAttribute(name: string): boolean {
|
|
105
148
|
return !!this._attrs[name]
|
|
106
149
|
}
|
|
107
150
|
|
|
108
|
-
public hasAttributes
|
|
151
|
+
public hasAttributes(): boolean {
|
|
109
152
|
return Object.keys(this._attrs).length > 0
|
|
110
153
|
}
|
|
111
154
|
|
|
112
|
-
public getElementById<T extends TaroElement = TaroElement>
|
|
113
|
-
return findChildNodeWithDFS<T>(
|
|
114
|
-
|
|
115
|
-
|
|
155
|
+
public getElementById<T extends TaroElement = TaroElement>(id: string | undefined | null) {
|
|
156
|
+
return findChildNodeWithDFS<T>(
|
|
157
|
+
this as TaroAny,
|
|
158
|
+
(el) => {
|
|
159
|
+
return el.id === id
|
|
160
|
+
},
|
|
161
|
+
false
|
|
162
|
+
)
|
|
116
163
|
}
|
|
117
164
|
|
|
118
|
-
public getElementsByTagName<T extends TaroElement = TaroElement>
|
|
119
|
-
return
|
|
120
|
-
|
|
121
|
-
|
|
165
|
+
public getElementsByTagName<T extends TaroElement = TaroElement>(tagName: string) {
|
|
166
|
+
return (
|
|
167
|
+
findChildNodeWithDFS<T>(
|
|
168
|
+
this as TaroAny,
|
|
169
|
+
(el) => {
|
|
170
|
+
return el.nodeName === tagName || (tagName === '*' && (this as TaroAny) !== el)
|
|
171
|
+
},
|
|
172
|
+
true
|
|
173
|
+
) || []
|
|
174
|
+
)
|
|
122
175
|
}
|
|
123
176
|
|
|
124
|
-
public getElementsByClassName<T extends TaroElement = TaroElement>
|
|
177
|
+
public getElementsByClassName<T extends TaroElement = TaroElement>(className: string) {
|
|
125
178
|
const classNames = className.trim().split(new RegExp('\\s+'))
|
|
126
179
|
|
|
127
|
-
return
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
180
|
+
return (
|
|
181
|
+
findChildNodeWithDFS<T>(
|
|
182
|
+
this as TaroAny,
|
|
183
|
+
(el) => {
|
|
184
|
+
const classList = el.classList
|
|
185
|
+
return classNames.every((c) => {
|
|
186
|
+
const bool = classList.contains(c)
|
|
187
|
+
|
|
188
|
+
return bool
|
|
189
|
+
})
|
|
190
|
+
},
|
|
191
|
+
true
|
|
192
|
+
) || []
|
|
193
|
+
)
|
|
135
194
|
}
|
|
136
195
|
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
public set innerHTML (value: string) {
|
|
196
|
+
public set innerHTML(value: string) {
|
|
140
197
|
if (this.nodeType === NodeType.ELEMENT_NODE && this.ownerDocument) {
|
|
141
198
|
const ele = this.ownerDocument.createElement('inner-html')
|
|
142
199
|
ele._innerHTML = value
|
|
@@ -144,20 +201,239 @@ export class TaroElement<T extends StandardProps = StandardProps> extends TaroNo
|
|
|
144
201
|
}
|
|
145
202
|
}
|
|
146
203
|
|
|
147
|
-
public get innerHTML
|
|
204
|
+
public get innerHTML(): string {
|
|
148
205
|
return this._innerHTML
|
|
149
206
|
}
|
|
150
207
|
|
|
208
|
+
// 存放的样式,获取其实跟获取style是一样的,只不过这里取的更快捷,不需要走style的get方法进到cssStyleDeclaration
|
|
151
209
|
public _st = new StyleSheet()
|
|
152
210
|
|
|
153
211
|
// 经转换后的鸿蒙样式
|
|
154
|
-
public get hmStyle
|
|
212
|
+
public get hmStyle() {
|
|
155
213
|
return this._st.hmStyle
|
|
156
214
|
}
|
|
157
215
|
|
|
158
216
|
public _style: ICSSStyleDeclaration | null = null
|
|
159
217
|
|
|
160
|
-
public get style
|
|
218
|
+
public get style(): ICSSStyleDeclaration | null {
|
|
161
219
|
return this._style
|
|
162
220
|
}
|
|
221
|
+
|
|
222
|
+
// 伪元素,不存在style动态设置,均已被转换为鸿蒙样式
|
|
223
|
+
// 可根据实际情况,迁移到具体的组件中,如View、ScrollView中,Text\Image其实是不需要的
|
|
224
|
+
public _pseudo_before: StyleSheet | null = null
|
|
225
|
+
|
|
226
|
+
public set_pseudo_before(value: HarmonyStyle | null) {
|
|
227
|
+
if (value) {
|
|
228
|
+
if (!this._pseudo_before) {
|
|
229
|
+
this._pseudo_before = new StyleSheet()
|
|
230
|
+
}
|
|
231
|
+
Object.keys(value).forEach(key => {
|
|
232
|
+
this._pseudo_before!.hmStyle[key] = value[key]
|
|
233
|
+
})
|
|
234
|
+
} else {
|
|
235
|
+
this._pseudo_before = null
|
|
236
|
+
}
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
public _pseudo_after: StyleSheet | null = null
|
|
240
|
+
|
|
241
|
+
public set_pseudo_after(value: HarmonyStyle | null) {
|
|
242
|
+
if (value) {
|
|
243
|
+
if (!this._pseudo_after) {
|
|
244
|
+
this._pseudo_after = new StyleSheet()
|
|
245
|
+
}
|
|
246
|
+
Object.keys(value).forEach(key => {
|
|
247
|
+
this._pseudo_after!.hmStyle[key] = value[key]
|
|
248
|
+
})
|
|
249
|
+
} else {
|
|
250
|
+
this._pseudo_after = null
|
|
251
|
+
}
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// 伪类,在获取的时候根据dom和parent的关系,动态设置
|
|
255
|
+
public _pseudo_class: Record<string, StyleSheet | null> = {
|
|
256
|
+
// ["::first-child"]: new StyleSheet(),
|
|
257
|
+
}
|
|
258
|
+
|
|
259
|
+
public set_pseudo_class(name: string, value: HarmonyStyle | null) {
|
|
260
|
+
if (value) {
|
|
261
|
+
if (!this._pseudo_class[name]) {
|
|
262
|
+
this._pseudo_class[name] = new StyleSheet()
|
|
263
|
+
}
|
|
264
|
+
Object.keys(value).forEach(key => {
|
|
265
|
+
this._pseudo_class[name]!.hmStyle[key] = value[key]
|
|
266
|
+
})
|
|
267
|
+
} else {
|
|
268
|
+
this._pseudo_class[name] = null
|
|
269
|
+
}
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
get currentLayerNode () {
|
|
273
|
+
if (!Current.page) return null
|
|
274
|
+
if (typeof Current.page.tabBarCurrentIndex !== 'undefined') {
|
|
275
|
+
Current.page.layerNode ||= []
|
|
276
|
+
Current.page.layerNode[Current.page.tabBarCurrentIndex] ||= Current.createHarmonyElement('VIEW')
|
|
277
|
+
// Tabbar
|
|
278
|
+
return Current.page.layerNode[Current.page.tabBarCurrentIndex]
|
|
279
|
+
} else {
|
|
280
|
+
Current.page.layerNode ||= Current.createHarmonyElement('VIEW')
|
|
281
|
+
return Current.page.layerNode
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
|
|
285
|
+
get currentLayerParents () {
|
|
286
|
+
if (!Current.page) return null
|
|
287
|
+
if (typeof Current.page.tabBarCurrentIndex !== 'undefined') {
|
|
288
|
+
Current.page.layerParents ||= []
|
|
289
|
+
Current.page.layerParents[Current.page.tabBarCurrentIndex] ||= []
|
|
290
|
+
// Tabbar
|
|
291
|
+
return Current.page.layerParents[Current.page.tabBarCurrentIndex]
|
|
292
|
+
} else {
|
|
293
|
+
Current.page.layerParents ||= []
|
|
294
|
+
return Current.page.layerParents
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// 设置渲染层级,0为正常层级,大于0为固定层级
|
|
299
|
+
// 1、appendChild的时候会判断是否需要设置层级
|
|
300
|
+
// 2、taro-react的setProperty,在处理属性变化的时候,会判断是否需要设置层级
|
|
301
|
+
// 3、removeChild的时候,会判断是否需要移除层级
|
|
302
|
+
public setLayer (value: number) {
|
|
303
|
+
if (!this.parentNode) return // 没有父节点,不需要设置层级关系
|
|
304
|
+
this._nodeInfo.layer = value
|
|
305
|
+
|
|
306
|
+
const currentLayerNode = this.currentLayerNode
|
|
307
|
+
const currentLayerParents = this.currentLayerParents
|
|
308
|
+
if (!currentLayerNode || !currentLayerParents) return
|
|
309
|
+
if (value > 0) {
|
|
310
|
+
// 插入到固定浮层
|
|
311
|
+
currentLayerNode.childNodes.push(this)
|
|
312
|
+
currentLayerNode.notifyDataAdd(currentLayerNode.childNodes.length - 1)
|
|
313
|
+
// 绑定祖先的节点id,建立关系,方便在祖先卸载(removeChild)的时候,能够找到该节点使其卸载
|
|
314
|
+
const _parentRecord = {}
|
|
315
|
+
generateLayerParentIds(_parentRecord, this)
|
|
316
|
+
currentLayerParents[this._nid] = _parentRecord
|
|
317
|
+
} else {
|
|
318
|
+
const idx = currentLayerNode.childNodes.findIndex(n => n._nid === this._nid)
|
|
319
|
+
currentLayerNode.childNodes.splice(idx, 1)
|
|
320
|
+
currentLayerNode.notifyDataDelete(idx)
|
|
321
|
+
|
|
322
|
+
delete currentLayerParents[this._nid]
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
if (this.parentNode) {
|
|
326
|
+
this.parentNode.notifyDataChange(this.parentNode.findIndex(this))
|
|
327
|
+
this.updateComponent()
|
|
328
|
+
}
|
|
329
|
+
}
|
|
330
|
+
|
|
331
|
+
protected toggleLayer(add: boolean) {
|
|
332
|
+
if (add) {
|
|
333
|
+
if (this._st?.hmStyle.position === 'fixed') {
|
|
334
|
+
this.setLayer(1)
|
|
335
|
+
}
|
|
336
|
+
} else {
|
|
337
|
+
const currentLayerParents = this.currentLayerParents
|
|
338
|
+
if (!currentLayerParents) return
|
|
339
|
+
// 识别Current.page.layerParents里面是否有需要移除的固定元素
|
|
340
|
+
if (this._nodeInfo?.layer > 0) {
|
|
341
|
+
delete currentLayerParents[this._nid]
|
|
342
|
+
this.setLayer(0)
|
|
343
|
+
} else {
|
|
344
|
+
Object.keys(currentLayerParents).forEach(fixedId => {
|
|
345
|
+
const parentIds = currentLayerParents[fixedId]
|
|
346
|
+
if (parentIds[this._nid]) {
|
|
347
|
+
// 需要移除fixedId
|
|
348
|
+
delete currentLayerParents[fixedId]
|
|
349
|
+
const fixedNode = eventSource.get(fixedId) as unknown as TaroElement
|
|
350
|
+
if (fixedNode) {
|
|
351
|
+
fixedNode.setLayer(0)
|
|
352
|
+
}
|
|
353
|
+
}
|
|
354
|
+
})
|
|
355
|
+
}
|
|
356
|
+
}
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
// 设置动画
|
|
360
|
+
public setAnimation (playing) {
|
|
361
|
+
if (!this._instance) {
|
|
362
|
+
if (!this._nodeInfo.aboutToAppear) {
|
|
363
|
+
this._nodeInfo.aboutToAppear = []
|
|
364
|
+
}
|
|
365
|
+
this._nodeInfo.aboutToAppear.push(() => {
|
|
366
|
+
this.setAnimation(playing)
|
|
367
|
+
})
|
|
368
|
+
return
|
|
369
|
+
}
|
|
370
|
+
|
|
371
|
+
const keyframes = this._st.hmStyle.animationName
|
|
372
|
+
|
|
373
|
+
// 防止动画闪烁,需要把第一帧的内容先设置上去设置初始样式
|
|
374
|
+
if (playing && keyframes && keyframes[0] && keyframes[0].percentage === 0) {
|
|
375
|
+
this._instance.overwriteStyle = keyframes[0].event
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
// 首次设置,不用实例替换
|
|
379
|
+
if (!this._nodeInfo.hasAnimation) {
|
|
380
|
+
this._nodeInfo.hasAnimation = true
|
|
381
|
+
// 下一帧播放,等节点样式首次设置上去在进行覆盖
|
|
382
|
+
setTimeout(() => {
|
|
383
|
+
if (playing) {
|
|
384
|
+
this.playAnimation()
|
|
385
|
+
}
|
|
386
|
+
}, 0)
|
|
387
|
+
} else if (this.parentNode) {
|
|
388
|
+
const idx = this.parentNode.findIndex(this)
|
|
389
|
+
// Note: 因为keyframeAnimateTo无法暂停,华为没有支持,只能临时先换掉实例,重新创建ark节点,使得原本的keyframeAnimateTo失效
|
|
390
|
+
// remove
|
|
391
|
+
this.parentNode.childNodes.splice(idx, 1)
|
|
392
|
+
this.parentNode.notifyDataDelete(idx)
|
|
393
|
+
|
|
394
|
+
// 下一帧播放,等实例被移除掉,再重新插入
|
|
395
|
+
setTimeout(() => {
|
|
396
|
+
// insert
|
|
397
|
+
this.parentNode?.childNodes.splice(idx, 0, this)
|
|
398
|
+
this.parentNode?.notifyDataAdd(idx)
|
|
399
|
+
|
|
400
|
+
// 执行动画
|
|
401
|
+
if (playing) {
|
|
402
|
+
this.playAnimation()
|
|
403
|
+
}
|
|
404
|
+
}, 0)
|
|
405
|
+
}
|
|
406
|
+
}
|
|
407
|
+
|
|
408
|
+
private playAnimation () {
|
|
409
|
+
const {
|
|
410
|
+
animationDuration = 0, animationDelay = 0, animationIterationCount = 1, animationName: keyframes,
|
|
411
|
+
animationTimingFunction
|
|
412
|
+
} = this._st.hmStyle
|
|
413
|
+
|
|
414
|
+
if (keyframes) {
|
|
415
|
+
let cur_percentage = 0
|
|
416
|
+
this._instance.getUIContext()?.keyframeAnimateTo({
|
|
417
|
+
delay: animationDelay,
|
|
418
|
+
iterations: animationIterationCount,
|
|
419
|
+
}, keyframes.map(item => {
|
|
420
|
+
const duration = (item.percentage - cur_percentage) * animationDuration
|
|
421
|
+
cur_percentage = item.percentage
|
|
422
|
+
return {
|
|
423
|
+
duration: duration,
|
|
424
|
+
curve: item.event.animationTimingFunction || animationTimingFunction,
|
|
425
|
+
event: () => {
|
|
426
|
+
this._instance.overwriteStyle = item.event
|
|
427
|
+
}
|
|
428
|
+
}
|
|
429
|
+
}))
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
434
|
+
function generateLayerParentIds(ids: Record<string, true>, node?: TaroElement) {
|
|
435
|
+
if (node?.parentElement) {
|
|
436
|
+
ids[node.parentElement._nid] = true
|
|
437
|
+
generateLayerParentIds(ids, node.parentElement)
|
|
438
|
+
}
|
|
163
439
|
}
|