码迷,mamicode.com
首页 > 其他好文 > 详细

[Angular 2] Using a Reducer to Change an Object's Property Inside an Array

时间:2016-04-28 07:00:48      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

Reducers are also often used for changing a single property inside of other reducers. This lesson shows how a type can enter the people reducer, but then the people reducer can use a different type to call the clock reducer and get a value back.

 

So the logic is when we click on each person, the person‘s time will increase 3 hours:

 

First, add click event and yield the person object:

        <ul>
            <li (click)="person$.next(person)" *ngFor="#person of people | async">
                {{person.name}} is in {{person.time | date : jms}} 
            </li>
        </ul>

...

    person$ = new Subject()
        .map( (person) => ({type: ADVANCE, payload: person}));

 

Then subscribe the person$, dispatch the action:

        Observable.merge(
            this.click$,
            this.seconds$,
            this.person$
            )
            .subscribe(store.dispatch.bind(store))

 

In the reducer, we change the person‘s time by using clock() reducer:

export const people = (state = defaultPeople, {type, payload}) => {
    switch(type){
        case ADVANCE:
            return state.map( (person) => {
                if(person === payload){
                    return {
                        name: person.name,
                        time: clock(payload.time, {type: HOUR, payload: 3})
                    }
                }

                return person;
            });
        default:
            return state;
    }
};

 

 

------------

[Angular 2] Using a Reducer to Change an Object's Property Inside an Array

标签:

原文地址:http://www.cnblogs.com/Answer1215/p/5441169.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!