|
1 |
| -/* globals document */ |
| 1 | +/* @flow */ |
| 2 | +declare var document: Object; |
2 | 3 |
|
3 | 4 | import { makeMap } from 'shared/util'
|
4 | 5 | import { warn } from 'core/util/index'
|
@@ -30,25 +31,50 @@ export const isUnaryTag = makeMap(
|
30 | 31 | true
|
31 | 32 | )
|
32 | 33 |
|
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 | +} |
36 | 43 |
|
37 |
| -export function query (el, document) { |
| 44 | +export function query (el: string | Element, document: Object) { |
38 | 45 | // document is injected by weex factory wrapper
|
39 | 46 | const placeholder = document.createComment('root')
|
40 | 47 | placeholder.hasAttribute = placeholder.removeAttribute = function () {} // hack for patch
|
41 | 48 | document.documentElement.appendChild(placeholder)
|
42 | 49 | return placeholder
|
43 | 50 | }
|
44 | 51 |
|
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 | +) { |
46 | 60 | if (!document || !document.taskCenter) {
|
47 | 61 | warn(`Can't find available "document" or "taskCenter".`)
|
48 | 62 | return
|
49 | 63 | }
|
50 | 64 | 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) |
52 | 78 | }
|
53 |
| - warn(`Not support to register component hook "${type}@${hook}#${cid}".`) |
| 79 | + warn(`Failed to update component data (${componentId}).`) |
54 | 80 | }
|
0 commit comments