admin管理员组文章数量:1344189
I want to fire .subscribe()
for my oberservable if one of three object keys have changed.
it works, if I copy & paste the method for each key:
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.relations; })
.subscribe(updatedData => {
console.log("relations changed",updatedData);
});
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.parent; })
.subscribe(updatedData => {
console.log("parent changed",updatedData);
});
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.children; })
.subscribe(updatedData => {
console.log("children changed",updatedData);
});
if I set the distinctUntilChanged
parer to return the whole updatedData
object, my subscribe never fires.
How can I bine the three dinstinctUntilChanged
into one reducer?
I want to fire .subscribe()
for my oberservable if one of three object keys have changed.
it works, if I copy & paste the method for each key:
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.relations; })
.subscribe(updatedData => {
console.log("relations changed",updatedData);
});
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.parent; })
.subscribe(updatedData => {
console.log("parent changed",updatedData);
});
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData.children; })
.subscribe(updatedData => {
console.log("children changed",updatedData);
});
if I set the distinctUntilChanged
parer to return the whole updatedData
object, my subscribe never fires.
How can I bine the three dinstinctUntilChanged
into one reducer?
4 Answers
Reset to default 7I ended up doing:
.distinctUntilChanged((a, b) => a.key1 === b.key1 && a.key2 === b.key2);
One way:
const data$ = this.myService.loadData(this.dataContainer.id, true);
Observable
.bineLatest(
$data.distinctUntilChanged(data => updatedData.relations),
$data.distinctUntilChanged(data => updatedData.parent),
$data.distinctUntilChanged(data => updatedData.children),
data => data
)
.subscribe(updatedData => {
console.log("relation|parent|children changed", updatedData);
});
Another option might be to return all of the data in the selector, and in the parison function, pare the different properties:
this.myService.loadData(this.dataContainer.id, true)
.distinctUntilChanged((updatedData) => { return updatedData; }, (a, b) => {
return a.relations === b.relations && a.parent === b.parent && a.children === b.children;
})
.subscribe(updatedData => {
console.log("updatedData", updatedData);
});
Yet another approach with a bit from lodash: (pick
+ isEqual
)
dashboardMessages$ = this.user$.pipe(
map((user: User) => pick(user, 'subscriptionStatus', 'payoutsEnabled')),
distinctUntilChanged(isEqual),
map((user: Pick<User, 'subscriptionStatus' | 'payoutsEnabled'>) => {
// there you go... with your partial user model
}),
);
本文标签: javascriptRXJSdinstinctUntilChange with multiple keysStack Overflow
版权声明:本文标题:javascript - RXJS - dinstinctUntilChange with multiple keys - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743659017a2517626.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论