Skip to content

Commit 3b32652

Browse files
Hanks10100yyx990803
authored andcommitted
feat(weex): update weex utils (#7115)
Add flow type annotations. Add the "registerComponentHook" and the "updateComponentData" api.
1 parent e5da1da commit 3b32652

File tree

1 file changed

+34
-8
lines changed

1 file changed

+34
-8
lines changed

src/platforms/weex/util/index.js

+34-8
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
/* globals document */
1+
/* @flow */
2+
declare var document: Object;
23

34
import { makeMap } from 'shared/util'
45
import { warn } from 'core/util/index'
@@ -30,25 +31,50 @@ export const isUnaryTag = makeMap(
3031
true
3132
)
3233

33-
export function mustUseProp () { /* console.log('mustUseProp') */ }
34-
export function getTagNamespace () { /* console.log('getTagNamespace') */ }
35-
export function isUnknownElement () { /* console.log('isUnknownElement') */ }
34+
export function mustUseProp (tag: string, type: ?string, name: string): boolean {
35+
return false
36+
}
37+
38+
export function getTagNamespace (tag?: string): string | void { }
39+
40+
export function isUnknownElement (tag?: string): boolean {
41+
return false
42+
}
3643

37-
export function query (el, document) {
44+
export function query (el: string | Element, document: Object) {
3845
// document is injected by weex factory wrapper
3946
const placeholder = document.createComment('root')
4047
placeholder.hasAttribute = placeholder.removeAttribute = function () {} // hack for patch
4148
document.documentElement.appendChild(placeholder)
4249
return placeholder
4350
}
4451

45-
export function registerHook (cid, type, hook, fn) {
52+
// Register the component hook to weex native render engine.
53+
// The hook will be triggered by native, not javascript.
54+
export function registerComponentHook (
55+
componentId: string,
56+
type: string, // hook type, could be "lifecycle" or "instance"
57+
hook: string, // hook name
58+
fn: Function
59+
) {
4660
if (!document || !document.taskCenter) {
4761
warn(`Can't find available "document" or "taskCenter".`)
4862
return
4963
}
5064
if (typeof document.taskCenter.registerHook === 'function') {
51-
return document.taskCenter.registerHook(cid, type, hook, fn)
65+
return document.taskCenter.registerHook(componentId, type, hook, fn)
66+
}
67+
warn(`Failed to register component hook "${type}@${hook}#${componentId}".`)
68+
}
69+
70+
// Updates the state of the component to weex native render engine.
71+
export function updateComponentData (componentId: string, newData: Object) {
72+
if (!document || !document.taskCenter) {
73+
warn(`Can't find available "document" or "taskCenter".`)
74+
return
75+
}
76+
if (typeof document.taskCenter.updateData === 'function') {
77+
return document.taskCenter.updateData(componentId, newData)
5278
}
53-
warn(`Not support to register component hook "${type}@${hook}#${cid}".`)
79+
warn(`Failed to update component data (${componentId}).`)
5480
}

0 commit comments

Comments
 (0)