mirror of
https://github.com/odoo/owl.git
synced 2025-10-06 19:59:41 +07:00
@@ -55,6 +55,7 @@ function compileValueNode(value: any, node: Element, qweb: QWeb, ctx: Context) {
|
|||||||
ctx.rootContext.rootNode = nodeID;
|
ctx.rootContext.rootNode = nodeID;
|
||||||
ctx.rootContext.parentTextNode = nodeID;
|
ctx.rootContext.parentTextNode = nodeID;
|
||||||
ctx.addLine(`var vn${nodeID} = {text: ${exprID}};`);
|
ctx.addLine(`var vn${nodeID} = {text: ${exprID}};`);
|
||||||
|
ctx.addLine(`result = vn${nodeID}`);
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let fragID = ctx.generateID();
|
let fragID = ctx.generateID();
|
||||||
|
|||||||
+4
-1
@@ -19,7 +19,7 @@ export class Context {
|
|||||||
shouldDefineParent: boolean = false;
|
shouldDefineParent: boolean = false;
|
||||||
shouldDefineQWeb: boolean = false;
|
shouldDefineQWeb: boolean = false;
|
||||||
shouldDefineUtils: boolean = false;
|
shouldDefineUtils: boolean = false;
|
||||||
shouldDefineResult: boolean = false;
|
shouldDefineResult: boolean = true;
|
||||||
shouldProtectContext: boolean = false;
|
shouldProtectContext: boolean = false;
|
||||||
shouldTrackScope: boolean = false;
|
shouldTrackScope: boolean = false;
|
||||||
inLoop: boolean = false;
|
inLoop: boolean = false;
|
||||||
@@ -93,6 +93,9 @@ export class Context {
|
|||||||
if (!this.rootContext.rootNode) {
|
if (!this.rootContext.rootNode) {
|
||||||
this.rootContext.rootNode = node;
|
this.rootContext.rootNode = node;
|
||||||
}
|
}
|
||||||
|
if (!this.parentNode) {
|
||||||
|
this.addLine(`result = vn${node};`);
|
||||||
|
}
|
||||||
return this.subContext("parentNode", node);
|
return this.subContext("parentNode", node);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -333,6 +333,7 @@ export class QWeb extends EventBus {
|
|||||||
ctx.parentNode = parentContext.parentNode!;
|
ctx.parentNode = parentContext.parentNode!;
|
||||||
ctx.allowMultipleRoots = true;
|
ctx.allowMultipleRoots = true;
|
||||||
ctx.hasParentWidget = true;
|
ctx.hasParentWidget = true;
|
||||||
|
ctx.shouldDefineResult = false;
|
||||||
ctx.addLine(`let c${ctx.parentNode} = extra.parentNode;`);
|
ctx.addLine(`let c${ctx.parentNode} = extra.parentNode;`);
|
||||||
|
|
||||||
for (let v in parentContext.variables) {
|
for (let v in parentContext.variables) {
|
||||||
@@ -405,6 +406,7 @@ export class QWeb extends EventBus {
|
|||||||
// template rendering.
|
// template rendering.
|
||||||
let nodeID = ctx.generateID();
|
let nodeID = ctx.generateID();
|
||||||
ctx.addLine(`var vn${nodeID} = {text: \`${text}\`};`);
|
ctx.addLine(`var vn${nodeID} = {text: \`${text}\`};`);
|
||||||
|
ctx.addLine(`result = vn${nodeID};`);
|
||||||
ctx.rootContext.rootNode = nodeID;
|
ctx.rootContext.rootNode = nodeID;
|
||||||
ctx.rootContext.parentTextNode = nodeID;
|
ctx.rootContext.parentTextNode = nodeID;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ exports[`animations t-transition combined with component 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -40,7 +42,7 @@ exports[`animations t-transition combined with component 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -51,9 +53,11 @@ exports[`animations t-transition combined with t-component and t-if 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['state'].display) {
|
if (context['state'].display) {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -86,7 +90,7 @@ exports[`animations t-transition combined with t-component and t-if 1`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -94,9 +98,11 @@ exports[`animations t-transition with no delay/duration 1`] = `
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let utils = this.constructor.utils;
|
let utils = this.constructor.utils;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('span', p1, c1);
|
var vn1 = h('span', p1, c1);
|
||||||
|
result = vn1;
|
||||||
p1.hook = {
|
p1.hook = {
|
||||||
insert: vn => {
|
insert: vn => {
|
||||||
utils.transitionInsert(vn, 'jupiler');
|
utils.transitionInsert(vn, 'jupiler');
|
||||||
@@ -106,7 +112,7 @@ exports[`animations t-transition with no delay/duration 1`] = `
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
c1.push({text: \`blue\`});
|
c1.push({text: \`blue\`});
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -114,9 +120,11 @@ exports[`animations t-transition, on a simple node (insert) 1`] = `
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let utils = this.constructor.utils;
|
let utils = this.constructor.utils;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('span', p1, c1);
|
var vn1 = h('span', p1, c1);
|
||||||
|
result = vn1;
|
||||||
p1.hook = {
|
p1.hook = {
|
||||||
insert: vn => {
|
insert: vn => {
|
||||||
utils.transitionInsert(vn, 'chimay');
|
utils.transitionInsert(vn, 'chimay');
|
||||||
@@ -126,6 +134,6 @@ exports[`animations t-transition, on a simple node (insert) 1`] = `
|
|||||||
},
|
},
|
||||||
};
|
};
|
||||||
c1.push({text: \`blue\`});
|
c1.push({text: \`blue\`});
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ exports[`async rendering delayed component with t-asyncroot directive 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('button', p2, c2);
|
var vn2 = h('button', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -78,7 +80,7 @@ exports[`async rendering delayed component with t-asyncroot directive 1`] = `
|
|||||||
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
||||||
}
|
}
|
||||||
def10.then(w11.__applyPatchQueue.bind(w11, patchQueue11));
|
def10.then(w11.__applyPatchQueue.bind(w11, patchQueue11));
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -89,9 +91,11 @@ exports[`async rendering fast component with t-asyncroot directive 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('button', p2, c2);
|
var vn2 = h('button', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -160,7 +164,7 @@ exports[`async rendering fast component with t-asyncroot directive 1`] = `
|
|||||||
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def10);
|
extra.promises.push(def10);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -171,9 +175,11 @@ exports[`async rendering t-component with t-asyncroot directive: mixed re-render
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('button', p2, c2);
|
var vn2 = h('button', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -242,7 +248,7 @@ exports[`async rendering t-component with t-asyncroot directive: mixed re-render
|
|||||||
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
def10 = def10.then(()=>{if (w11.__owl__.isDestroyed) {return};let pvnode=w11.__owl__.pvnode;c5[_9_index]=pvnode;});
|
||||||
}
|
}
|
||||||
def10.then(w11.__applyPatchQueue.bind(w11, patchQueue11));
|
def10.then(w11.__applyPatchQueue.bind(w11, patchQueue11));
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -253,9 +259,11 @@ exports[`class and style attributes with t-component dynamic t-att-style is prop
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
const _5 = context['state'].style;
|
const _5 = context['state'].style;
|
||||||
@@ -284,7 +292,7 @@ exports[`class and style attributes with t-component dynamic t-att-style is prop
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};w4.el.style=_5;let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};w4.el.style=_5;let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -295,9 +303,11 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
const ref5 = \`child\`;
|
const ref5 = \`child\`;
|
||||||
@@ -329,7 +339,7 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
}
|
}
|
||||||
w4.__owl__.classObj=_6;
|
w4.__owl__.classObj=_6;
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -337,12 +347,14 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let utils = this.constructor.utils;
|
let utils = this.constructor.utils;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let _2 = {'c':true};
|
let _2 = {'c':true};
|
||||||
Object.assign(_2, utils.toObj({d:context['state'].d}))
|
Object.assign(_2, utils.toObj({d:context['state'].d}))
|
||||||
let c3 = [], p3 = {key:3,class:_2};
|
let c3 = [], p3 = {key:3,class:_2};
|
||||||
var vn3 = h('span', p3, c3);
|
var vn3 = h('span', p3, c3);
|
||||||
return vn3;
|
result = vn3;
|
||||||
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -353,9 +365,11 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
const ref5 = \`child\`;
|
const ref5 = \`child\`;
|
||||||
@@ -387,7 +401,7 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
}
|
}
|
||||||
w4.__owl__.classObj=_6;
|
w4.__owl__.classObj=_6;
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -395,12 +409,14 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let utils = this.constructor.utils;
|
let utils = this.constructor.utils;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let _2 = {'c':true};
|
let _2 = {'c':true};
|
||||||
Object.assign(_2, utils.toObj(context['state'].d?'d':''))
|
Object.assign(_2, utils.toObj(context['state'].d?'d':''))
|
||||||
let c3 = [], p3 = {key:3,class:_2};
|
let c3 = [], p3 = {key:3,class:_2};
|
||||||
var vn3 = h('span', p3, c3);
|
var vn3 = h('span', p3, c3);
|
||||||
return vn3;
|
result = vn3;
|
||||||
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -411,9 +427,11 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let _5 = {a:context['state'].a,b:context['state'].b};
|
let _5 = {a:context['state'].a,b:context['state'].b};
|
||||||
@@ -443,7 +461,7 @@ exports[`class and style attributes with t-component t-att-class is properly add
|
|||||||
}
|
}
|
||||||
w4.__owl__.classObj=_5;
|
w4.__owl__.classObj=_5;
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -454,9 +472,11 @@ exports[`composition sub components dom state with t-keepalive is preserved 1`]
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['state'].ok) {
|
if (context['state'].ok) {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -486,7 +506,7 @@ exports[`composition sub components dom state with t-keepalive is preserved 1`]
|
|||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -497,10 +517,12 @@ exports[`composition sub components with some state rendered in a loop 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
context = Object.create(context);
|
context = Object.create(context);
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
var _2 = context['state'].numbers;
|
var _2 = context['state'].numbers;
|
||||||
if (!_2) { throw new Error('QWeb error: Invalid loop expression')}
|
if (!_2) { throw new Error('QWeb error: Invalid loop expression')}
|
||||||
var _3 = _4 = _2;
|
var _3 = _4 = _2;
|
||||||
@@ -545,7 +567,7 @@ exports[`composition sub components with some state rendered in a loop 1`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def6);
|
extra.promises.push(def6);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -556,9 +578,11 @@ exports[`composition t-component with dynamic value 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -586,7 +610,7 @@ exports[`composition t-component with dynamic value 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -597,9 +621,11 @@ exports[`composition t-component with dynamic value 2 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -627,7 +653,7 @@ exports[`composition t-component with dynamic value 2 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -638,9 +664,11 @@ exports[`lifecycle hooks willPatch/patched hook with t-keepalive 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['state'].flag) {
|
if (context['state'].flag) {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -670,7 +698,7 @@ exports[`lifecycle hooks willPatch/patched hook with t-keepalive 1`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -681,9 +709,11 @@ exports[`other directives with t-component t-on with handler bound to argument 1
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -711,7 +741,7 @@ exports[`other directives with t-component t-on with handler bound to argument 1
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -722,9 +752,11 @@ exports[`other directives with t-component t-on with handler bound to empty obje
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -752,7 +784,7 @@ exports[`other directives with t-component t-on with handler bound to empty obje
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -763,9 +795,11 @@ exports[`other directives with t-component t-on with handler bound to empty obje
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -793,7 +827,7 @@ exports[`other directives with t-component t-on with handler bound to empty obje
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -804,9 +838,11 @@ exports[`other directives with t-component t-on with handler bound to object 1`]
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -834,7 +870,7 @@ exports[`other directives with t-component t-on with handler bound to object 1`]
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -845,9 +881,11 @@ exports[`other directives with t-component t-on with prevent and self modifiers
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -875,7 +913,7 @@ exports[`other directives with t-component t-on with prevent and self modifiers
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -886,9 +924,11 @@ exports[`other directives with t-component t-on with self and prevent modifiers
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -916,7 +956,7 @@ exports[`other directives with t-component t-on with self and prevent modifiers
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -927,9 +967,11 @@ exports[`other directives with t-component t-on with self modifier 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -957,7 +999,7 @@ exports[`other directives with t-component t-on with self modifier 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -968,9 +1010,11 @@ exports[`other directives with t-component t-on with stop and/or prevent modifie
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -998,7 +1042,7 @@ exports[`other directives with t-component t-on with stop and/or prevent modifie
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1009,9 +1053,11 @@ exports[`random stuff/miscellaneous snapshotting compiled code 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let key5 = 'key' + 'somestring';
|
let key5 = 'key' + 'somestring';
|
||||||
let def3;
|
let def3;
|
||||||
@@ -1041,7 +1087,7 @@ exports[`random stuff/miscellaneous snapshotting compiled code 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1052,10 +1098,12 @@ exports[`random stuff/miscellaneous t-on with handler bound to dynamic argument
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
context = Object.create(context);
|
context = Object.create(context);
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
var _2 = context['props'].items;
|
var _2 = context['props'].items;
|
||||||
if (!_2) { throw new Error('QWeb error: Invalid loop expression')}
|
if (!_2) { throw new Error('QWeb error: Invalid loop expression')}
|
||||||
var _3 = _4 = _2;
|
var _3 = _4 = _2;
|
||||||
@@ -1101,16 +1149,18 @@ exports[`random stuff/miscellaneous t-on with handler bound to dynamic argument
|
|||||||
}
|
}
|
||||||
extra.promises.push(def6);
|
extra.promises.push(def6);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive .lazy modifier 1`] = `
|
exports[`t-model directive .lazy modifier 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('input', p2, c2);
|
var vn2 = h('input', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1124,16 +1174,18 @@ exports[`t-model directive .lazy modifier 1`] = `
|
|||||||
if (_4 || _4 === 0) {
|
if (_4 || _4 === 0) {
|
||||||
c3.push({text: _4});
|
c3.push({text: _4});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive basic use, on an input 1`] = `
|
exports[`t-model directive basic use, on an input 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('input', p2, c2);
|
var vn2 = h('input', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1147,16 +1199,18 @@ exports[`t-model directive basic use, on an input 1`] = `
|
|||||||
if (_4 || _4 === 0) {
|
if (_4 || _4 === 0) {
|
||||||
c3.push({text: _4});
|
c3.push({text: _4});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive on a select 1`] = `
|
exports[`t-model directive on a select 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('select', p2, c2);
|
var vn2 = h('select', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1191,16 +1245,18 @@ exports[`t-model directive on a select 1`] = `
|
|||||||
if (_10 || _10 === 0) {
|
if (_10 || _10 === 0) {
|
||||||
c9.push({text: _10});
|
c9.push({text: _10});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive on a sub state key 1`] = `
|
exports[`t-model directive on a sub state key 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2,on:{}};
|
let c2 = [], p2 = {key:2,on:{}};
|
||||||
var vn2 = h('input', p2, c2);
|
var vn2 = h('input', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1214,16 +1270,18 @@ exports[`t-model directive on a sub state key 1`] = `
|
|||||||
if (_4 || _4 === 0) {
|
if (_4 || _4 === 0) {
|
||||||
c3.push({text: _4});
|
c3.push({text: _4});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive on an input type=radio 1`] = `
|
exports[`t-model directive on an input type=radio 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
var _2 = 'radio';
|
var _2 = 'radio';
|
||||||
var _3 = 'one';
|
var _3 = 'one';
|
||||||
var _4 = 'One';
|
var _4 = 'One';
|
||||||
@@ -1250,16 +1308,18 @@ exports[`t-model directive on an input type=radio 1`] = `
|
|||||||
if (_11 || _11 === 0) {
|
if (_11 || _11 === 0) {
|
||||||
c10.push({text: _11});
|
c10.push({text: _11});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
exports[`t-model directive on an input, type=checkbox 1`] = `
|
exports[`t-model directive on an input, type=checkbox 1`] = `
|
||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
var _2 = 'checkbox';
|
var _2 = 'checkbox';
|
||||||
let c3 = [], p3 = {key:3,attrs:{type: _2},on:{}};
|
let c3 = [], p3 = {key:3,attrs:{type: _2},on:{}};
|
||||||
var vn3 = h('input', p3, c3);
|
var vn3 = h('input', p3, c3);
|
||||||
@@ -1276,7 +1336,7 @@ exports[`t-model directive on an input, type=checkbox 1`] = `
|
|||||||
else {
|
else {
|
||||||
c4.push({text: \`no\`});
|
c4.push({text: \`no\`});
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1287,9 +1347,11 @@ exports[`t-slot directive can define and call slots 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -1318,7 +1380,7 @@ exports[`t-slot directive can define and call slots 1`] = `
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1326,9 +1388,11 @@ exports[`t-slot directive can define and call slots 2`] = `
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2};
|
let c2 = [], p2 = {key:2};
|
||||||
var vn2 = h('div', p2, c2);
|
var vn2 = h('div', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1343,7 +1407,7 @@ exports[`t-slot directive can define and call slots 2`] = `
|
|||||||
if (slot5) {
|
if (slot5) {
|
||||||
slot5.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c4, vars: extra.vars, parent: owner}));
|
slot5.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c4, vars: extra.vars, parent: owner}));
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1478,15 +1542,17 @@ exports[`t-slot directive slots are rendered with proper context, part 2 1`] = `
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
var _1 = context['props'].to;
|
var _1 = context['props'].to;
|
||||||
let c2 = [], p2 = {key:2,attrs:{href: _1}};
|
let c2 = [], p2 = {key:2,attrs:{href: _1}};
|
||||||
var vn2 = h('a', p2, c2);
|
var vn2 = h('a', p2, c2);
|
||||||
|
result = vn2;
|
||||||
const slot3 = this.slots[context.__owl__.slotId + '_' + 'default'];
|
const slot3 = this.slots[context.__owl__.slotId + '_' + 'default'];
|
||||||
if (slot3) {
|
if (slot3) {
|
||||||
slot3.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c2, vars: extra.vars, parent: owner}));
|
slot3.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c2, vars: extra.vars, parent: owner}));
|
||||||
}
|
}
|
||||||
return vn2;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1497,11 +1563,13 @@ exports[`t-slot directive slots are rendered with proper context, part 2 2`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
context = Object.create(context);
|
context = Object.create(context);
|
||||||
const scope = Object.create(null);
|
const scope = Object.create(null);
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2};
|
let c2 = [], p2 = {key:2};
|
||||||
var vn2 = h('u', p2, c2);
|
var vn2 = h('u', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1558,7 +1626,7 @@ exports[`t-slot directive slots are rendered with proper context, part 2 2`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def8);
|
extra.promises.push(def8);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1580,15 +1648,17 @@ exports[`t-slot directive slots are rendered with proper context, part 3 1`] = `
|
|||||||
"function anonymous(context,extra
|
"function anonymous(context,extra
|
||||||
) {
|
) {
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
var _1 = context['props'].to;
|
var _1 = context['props'].to;
|
||||||
let c2 = [], p2 = {key:2,attrs:{href: _1}};
|
let c2 = [], p2 = {key:2,attrs:{href: _1}};
|
||||||
var vn2 = h('a', p2, c2);
|
var vn2 = h('a', p2, c2);
|
||||||
|
result = vn2;
|
||||||
const slot3 = this.slots[context.__owl__.slotId + '_' + 'default'];
|
const slot3 = this.slots[context.__owl__.slotId + '_' + 'default'];
|
||||||
if (slot3) {
|
if (slot3) {
|
||||||
slot3.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c2, vars: extra.vars, parent: owner}));
|
slot3.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c2, vars: extra.vars, parent: owner}));
|
||||||
}
|
}
|
||||||
return vn2;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1599,11 +1669,13 @@ exports[`t-slot directive slots are rendered with proper context, part 3 2`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
context = Object.create(context);
|
context = Object.create(context);
|
||||||
const scope = Object.create(null);
|
const scope = Object.create(null);
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
let c2 = [], p2 = {key:2};
|
let c2 = [], p2 = {key:2};
|
||||||
var vn2 = h('u', p2, c2);
|
var vn2 = h('u', p2, c2);
|
||||||
c1.push(vn2);
|
c1.push(vn2);
|
||||||
@@ -1661,7 +1733,7 @@ exports[`t-slot directive slots are rendered with proper context, part 3 2`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def9);
|
extra.promises.push(def9);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -1685,9 +1757,11 @@ exports[`t-slot directive slots are rendered with proper context, part 4 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
var _2 = 'User '+context['state'].user.name;
|
var _2 = 'User '+context['state'].user.name;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def4;
|
let def4;
|
||||||
@@ -1717,7 +1791,7 @@ exports[`t-slot directive slots are rendered with proper context, part 4 1`] = `
|
|||||||
def4 = def4.then(()=>{if (w5.__owl__.isDestroyed) {return};let pvnode=w5.__owl__.pvnode;c1[_3_index]=pvnode;});
|
def4 = def4.then(()=>{if (w5.__owl__.isDestroyed) {return};let pvnode=w5.__owl__.pvnode;c1[_3_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def4);
|
extra.promises.push(def4);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
|
|||||||
@@ -11,9 +11,11 @@ exports[`props validation props are validated in dev mode (code snapshot) 1`] =
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
let w4 = 4 in parent.__owl__.cmap ? parent.__owl__.children[parent.__owl__.cmap[4]] : false;
|
||||||
@@ -43,6 +45,6 @@ exports[`props validation props are validated in dev mode (code snapshot) 1`] =
|
|||||||
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
def3 = def3.then(()=>{if (w4.__owl__.isDestroyed) {return};let pvnode=w4.__owl__.pvnode;c1[_2_index]=pvnode;});
|
||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -4271,3 +4271,91 @@ describe("unmounting and remounting", () => {
|
|||||||
expect(fixture.innerHTML).toBe("<div>3</div>");
|
expect(fixture.innerHTML).toBe("<div>3</div>");
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
|
describe("dynamic root nodes", () => {
|
||||||
|
test("template with t-if, part 1", async () => {
|
||||||
|
env.qweb.addTemplates(`
|
||||||
|
<templates>
|
||||||
|
<t t-name="TestWidget">
|
||||||
|
<t t-if="true"><span>hey</span></t>
|
||||||
|
<t t-if="false"><div>abc</div></t>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
`);
|
||||||
|
class TestWidget extends Widget {}
|
||||||
|
|
||||||
|
const widget = new TestWidget(env);
|
||||||
|
await widget.mount(fixture);
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<span>hey</span>");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("template with t-if, part 2", async () => {
|
||||||
|
env.qweb.addTemplates(`
|
||||||
|
<templates>
|
||||||
|
<t t-name="TestWidget">
|
||||||
|
<t t-if="false"><span>hey</span></t>
|
||||||
|
<t t-if="true"><div>abc</div></t>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
`);
|
||||||
|
class TestWidget extends Widget {}
|
||||||
|
|
||||||
|
const widget = new TestWidget(env);
|
||||||
|
await widget.mount(fixture);
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<div>abc</div>");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("switching between sub branches dynamically", async () => {
|
||||||
|
env.qweb.addTemplates(`
|
||||||
|
<templates>
|
||||||
|
<t t-name="TestWidget">
|
||||||
|
<t t-if="state.flag"><span>hey</span></t>
|
||||||
|
<t t-if="!state.flag"><div>abc</div></t>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
`);
|
||||||
|
class TestWidget extends Widget {
|
||||||
|
state = {flag: true};
|
||||||
|
}
|
||||||
|
|
||||||
|
const widget = new TestWidget(env);
|
||||||
|
await widget.mount(fixture);
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<span>hey</span>");
|
||||||
|
widget.state.flag = false;
|
||||||
|
await nextTick();
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<div>abc</div>");
|
||||||
|
});
|
||||||
|
|
||||||
|
test("switching between sub components dynamically", async () => {
|
||||||
|
env.qweb.addTemplates(`
|
||||||
|
<templates>
|
||||||
|
<t t-name="ChildA"><span>hey</span></t>
|
||||||
|
<t t-name="ChildB"><div>abc</div></t>
|
||||||
|
<t t-name="TestWidget">
|
||||||
|
<t t-if="state.flag"><ChildA/></t>
|
||||||
|
<t t-if="!state.flag"><ChildB/></t>
|
||||||
|
</t>
|
||||||
|
</templates>
|
||||||
|
`);
|
||||||
|
class ChildA extends Widget {}
|
||||||
|
class ChildB extends Widget {}
|
||||||
|
class TestWidget extends Widget {
|
||||||
|
static components = {ChildA, ChildB};
|
||||||
|
state = {flag: true};
|
||||||
|
}
|
||||||
|
|
||||||
|
const widget = new TestWidget(env);
|
||||||
|
await widget.mount(fixture);
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<span>hey</span>");
|
||||||
|
widget.state.flag = false;
|
||||||
|
await nextTick();
|
||||||
|
|
||||||
|
expect(fixture.innerHTML).toBe("<div>abc</div>");
|
||||||
|
});
|
||||||
|
|
||||||
|
});
|
||||||
File diff suppressed because it is too large
Load Diff
@@ -5,11 +5,13 @@ exports[`Link component can render simple cases 1`] = `
|
|||||||
) {
|
) {
|
||||||
let utils = this.constructor.utils;
|
let utils = this.constructor.utils;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let _1 = utils.toObj({'router-link-active':context['isActive']});
|
let _1 = utils.toObj({'router-link-active':context['isActive']});
|
||||||
var _2 = context['href'];
|
var _2 = context['href'];
|
||||||
let c3 = [], p3 = {key:3,attrs:{href: _2},class:_1,on:{}};
|
let c3 = [], p3 = {key:3,attrs:{href: _2},class:_1,on:{}};
|
||||||
var vn3 = h('a', p3, c3);
|
var vn3 = h('a', p3, c3);
|
||||||
|
result = vn3;
|
||||||
if (!context['navigate']) {
|
if (!context['navigate']) {
|
||||||
throw new Error('Missing handler \\\\'' + 'navigate' + \`\\\\' when evaluating template '__owl__-router-link'\`)
|
throw new Error('Missing handler \\\\'' + 'navigate' + \`\\\\' when evaluating template '__owl__-router-link'\`)
|
||||||
}
|
}
|
||||||
@@ -19,6 +21,6 @@ exports[`Link component can render simple cases 1`] = `
|
|||||||
if (slot4) {
|
if (slot4) {
|
||||||
slot4.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c3, vars: extra.vars, parent: owner}));
|
slot4.call(this, context.__owl__.parent, Object.assign({}, extra, {parentNode: c3, vars: extra.vars, parent: owner}));
|
||||||
}
|
}
|
||||||
return vn3;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|||||||
@@ -7,9 +7,11 @@ exports[`router directive t-routecomponent can render parameterized route 1`] =
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['env'].router.currentRouteName==='book') {
|
if (context['env'].router.currentRouteName==='book') {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -39,7 +41,7 @@ exports[`router directive t-routecomponent can render parameterized route 1`] =
|
|||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -50,9 +52,11 @@ exports[`router directive t-routecomponent can render parameterized route with s
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['env'].router.currentRouteName==='book') {
|
if (context['env'].router.currentRouteName==='book') {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -82,7 +86,7 @@ exports[`router directive t-routecomponent can render parameterized route with s
|
|||||||
}
|
}
|
||||||
extra.promises.push(def3);
|
extra.promises.push(def3);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|
||||||
@@ -93,9 +97,11 @@ exports[`router directive t-routecomponent can render simple cases 1`] = `
|
|||||||
let QWeb = this.constructor;
|
let QWeb = this.constructor;
|
||||||
let parent = context;
|
let parent = context;
|
||||||
let owner = context;
|
let owner = context;
|
||||||
|
let result;
|
||||||
var h = this.h;
|
var h = this.h;
|
||||||
let c1 = [], p1 = {key:1};
|
let c1 = [], p1 = {key:1};
|
||||||
var vn1 = h('div', p1, c1);
|
var vn1 = h('div', p1, c1);
|
||||||
|
result = vn1;
|
||||||
if (context['env'].router.currentRouteName==='about') {
|
if (context['env'].router.currentRouteName==='about') {
|
||||||
//COMPONENT
|
//COMPONENT
|
||||||
let def3;
|
let def3;
|
||||||
@@ -154,6 +160,6 @@ exports[`router directive t-routecomponent can render simple cases 1`] = `
|
|||||||
}
|
}
|
||||||
extra.promises.push(def6);
|
extra.promises.push(def6);
|
||||||
}
|
}
|
||||||
return vn1;
|
return result;
|
||||||
}"
|
}"
|
||||||
`;
|
`;
|
||||||
|
|||||||
Reference in New Issue
Block a user