Skip to content

Commit 0bf0cbe

Browse files
Hanks10100yyx990803
authored andcommitted
revert(weex): remove the "receiveTasks" api and support component hook (#7053)
1 parent 0c11aa8 commit 0bf0cbe

File tree

4 files changed

+14
-100
lines changed

4 files changed

+14
-100
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@
125125
"typescript": "^2.6.1",
126126
"uglify-js": "^3.0.15",
127127
"webpack": "^3.10.0",
128-
"weex-js-runtime": "^0.23.0",
128+
"weex-js-runtime": "^0.23.1",
129129
"weex-styler": "^0.3.0"
130130
},
131131
"config": {

src/platforms/weex/entry-framework.js

-47
Original file line numberDiff line numberDiff line change
@@ -113,53 +113,6 @@ export function getRoot (instanceId) {
113113
return instance.app.$el.toJSON()
114114
}
115115

116-
const jsHandlers = {
117-
fireEvent: (id, ...args) => {
118-
return fireEvent(instances[id], ...args)
119-
},
120-
callback: (id, ...args) => {
121-
return callback(instances[id], ...args)
122-
}
123-
}
124-
125-
function fireEvent (instance, nodeId, type, e, domChanges, params) {
126-
const el = instance.document.getRef(nodeId)
127-
if (el) {
128-
return instance.document.fireEvent(el, type, e, domChanges, params)
129-
}
130-
return new Error(`invalid element reference "${nodeId}"`)
131-
}
132-
133-
function callback (instance, callbackId, data, ifKeepAlive) {
134-
const result = instance.document.taskCenter.callback(callbackId, data, ifKeepAlive)
135-
instance.document.taskCenter.send('dom', { action: 'updateFinish' }, [])
136-
return result
137-
}
138-
139-
/**
140-
* Accept calls from native (event or callback).
141-
*
142-
* @param {string} id
143-
* @param {array} tasks list with `method` and `args`
144-
*/
145-
export function receiveTasks (id, tasks) {
146-
const instance = instances[id]
147-
if (instance && Array.isArray(tasks)) {
148-
const results = []
149-
tasks.forEach((task) => {
150-
const handler = jsHandlers[task.method]
151-
const args = [...task.args]
152-
/* istanbul ignore else */
153-
if (typeof handler === 'function') {
154-
args.unshift(id)
155-
results.push(handler(...args))
156-
}
157-
})
158-
return results
159-
}
160-
return new Error(`invalid instance id "${id}" or tasks`)
161-
}
162-
163116
/**
164117
* Create a fresh instance of Vue for each Weex instance.
165118
*/

src/platforms/weex/util/index.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/* globals document */
22

33
import { makeMap } from 'shared/util'
4+
import { warn } from 'core/util/index'
45

56
export const isReservedTag = makeMap(
67
'template,script,style,element,content,slot,link,meta,svg,view,' +
@@ -20,7 +21,7 @@ export const canBeLeftOpenTag = makeMap(
2021
)
2122

2223
export const isRuntimeComponent = makeMap(
23-
'richtext,trisition,trisition-group',
24+
'richtext,transition,transition-group',
2425
true
2526
)
2627

@@ -40,3 +41,14 @@ export function query (el, document) {
4041
document.documentElement.appendChild(placeholder)
4142
return placeholder
4243
}
44+
45+
export function registerHook (cid, type, hook, fn) {
46+
if (!document || !document.taskCenter) {
47+
warn(`Can't find available "document" or "taskCenter".`)
48+
return
49+
}
50+
if (typeof document.taskCenter.registerHook === 'function') {
51+
return document.taskCenter.registerHook(cid, type, hook, fn)
52+
}
53+
warn(`Not support to register component hook "${type}@${hook}#${cid}".`)
54+
}

test/weex/runtime/framework.spec.js

-51
Original file line numberDiff line numberDiff line change
@@ -152,57 +152,6 @@ describe('framework APIs', () => {
152152
expect(root).toMatch(/not found/)
153153
})
154154

155-
// TODO: deprecated, move to weex-js-runtime
156-
it('receiveTasks: fireEvent', (done) => {
157-
const id = String(Date.now() * Math.random())
158-
const instance = createInstance(id, `
159-
new Vue({
160-
data: {
161-
x: 'Hello'
162-
},
163-
methods: {
164-
update: function (e) {
165-
this.x = 'World'
166-
}
167-
},
168-
render: function (createElement) {
169-
return createElement('div', {}, [
170-
createElement('text', { attrs: { value: this.x }, on: { click: this.update }}, [])
171-
])
172-
},
173-
el: "body"
174-
})
175-
`)
176-
expect(getRoot(instance)).toEqual({
177-
type: 'div',
178-
children: [{
179-
type: 'text',
180-
attr: { value: 'Hello' },
181-
event: ['click']
182-
}]
183-
})
184-
const textRef = framework.getRoot(id).children[0].ref
185-
framework.receiveTasks(id, [
186-
{ method: 'fireEvent', args: [textRef, 'click'] }
187-
])
188-
setTimeout(() => {
189-
expect(getRoot(instance)).toEqual({
190-
type: 'div',
191-
children: [{
192-
type: 'text',
193-
attr: { value: 'World' },
194-
event: ['click']
195-
}]
196-
})
197-
framework.destroyInstance(id)
198-
const result = framework.receiveTasks(id, [
199-
{ method: 'fireEvent', args: [textRef, 'click'] }
200-
])
201-
expect(result instanceof Error).toBe(true)
202-
done()
203-
})
204-
})
205-
206155
it('vm.$getConfig', () => {
207156
const id = String(Date.now() * Math.random())
208157
global.WXEnvironment = {

0 commit comments

Comments
 (0)