Browse Source
Merge in VISUAL/fineui from ~DAILER/fineui:master to master * commit '15c19bdf901cf8fbe63f440f77f637448fc73e0c': 无JIRA任务 chore: update demo Revert "DEC-15325 fix: 解决click-blur popup挂在body上和IE11子元素触发blur场景" 无JIRA任务 chore: update demo DEC-15325 fix: 解决click-blur popup挂在body上和IE11子元素触发blur场景es6
Dailer|翠屏山最速下山传说
4 years ago
3 changed files with 115 additions and 4 deletions
@ -0,0 +1,102 @@ |
|||||||
|
(function () { |
||||||
|
var ParentStore = BI.inherit(Fix.Model, { |
||||||
|
state: function () { |
||||||
|
return { |
||||||
|
context: { |
||||||
|
one: { |
||||||
|
key: "one.key" |
||||||
|
} |
||||||
|
} |
||||||
|
}; |
||||||
|
}, |
||||||
|
childContext: ["context"], |
||||||
|
|
||||||
|
actions: { |
||||||
|
changeContext: function () { |
||||||
|
this.model.context = { |
||||||
|
two: { |
||||||
|
key: "two.key" |
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.model("demo.model.inject.parent_store", ParentStore); |
||||||
|
|
||||||
|
var ChildStore = BI.inherit(Fix.Model, { |
||||||
|
inject: ["context"], |
||||||
|
computed: { |
||||||
|
currContext: function () { |
||||||
|
return this.model.context.one.key; |
||||||
|
} |
||||||
|
}, |
||||||
|
actions: { |
||||||
|
changeContext: function () { |
||||||
|
this.model.context = { |
||||||
|
one: { |
||||||
|
key: "one.changed_key" |
||||||
|
} |
||||||
|
}; |
||||||
|
} |
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.model("demo.model.inject.child_store", ChildStore); |
||||||
|
|
||||||
|
var Child = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return BI.Models.getModel("demo.model.inject.child_store"); |
||||||
|
}, |
||||||
|
watch: { |
||||||
|
currContext: function (val) { |
||||||
|
this.button.setText(val); |
||||||
|
} |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.button", |
||||||
|
ref: function () { |
||||||
|
self.button = this; |
||||||
|
}, |
||||||
|
text: this.model.currContext, |
||||||
|
handler: function () { |
||||||
|
self.store.changeContext(); |
||||||
|
} |
||||||
|
}; |
||||||
|
}, |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix_inject_child", Child); |
||||||
|
|
||||||
|
var Parent = BI.inherit(BI.Widget, { |
||||||
|
_store: function () { |
||||||
|
return BI.Models.getModel("demo.model.inject.parent_store"); |
||||||
|
}, |
||||||
|
render: function () { |
||||||
|
var self = this; |
||||||
|
return { |
||||||
|
type: "bi.vertical", |
||||||
|
items: [{ |
||||||
|
el: { |
||||||
|
type: "demo.fix_inject_child" |
||||||
|
} |
||||||
|
}, { |
||||||
|
el: { |
||||||
|
type: "bi.button", |
||||||
|
text: "点击修改parent state", |
||||||
|
handler: function () { |
||||||
|
self.store.changeContext(); |
||||||
|
} |
||||||
|
} |
||||||
|
}] |
||||||
|
}; |
||||||
|
}, |
||||||
|
mounted: function () { |
||||||
|
|
||||||
|
} |
||||||
|
}); |
||||||
|
|
||||||
|
BI.shortcut("demo.fix_inject", Parent); |
||||||
|
}()); |
Loading…
Reference in new issue