[NGXS] Select - 1

1. Selet piece of state from Store:

This is useful when you just want to get state from the store directly. Of course that global state should contain the data you want to get.

复制代码
import { Select } from '@ngxs/store';
import { ZooState, ZooStateModel } from './zoo.state';

@Component({ ... })
export class ZooComponent {
  // Reads the name of the state from the state class
  @Select(ZooState) animals$: Observable<string[]>;

  // Uses the pandas memoized selector to only return pandas
  @Select(ZooState.pandas) pandas$: Observable<string[]>;

  // Also accepts a function like our select method
  @Select(state => state.zoo.animals) animals$: Observable<string[]>;

  // Reads the name of the state from the parameter
  @Select() zoo$: Observable<ZooStateModel>;
}
复制代码

 

2. Select state which is not part of global state directly

For example you have state:

state = {
    birds: [
        { type: 'bird': color: 'green' , categories: [...]},
        { type: 'bird': color: 'red' , categories: [...]},
        { type: 'bird': color: 'black' , categories: [...]},    
     ]
}

If you only want to get the bird with color: 'red':

复制代码
import { State, Selector } from '@ngxs/store';
...

@State<string[]>({
  name: 'birds',
  defaults: []
})
export class ZooState {
  @Selector()
  static redBirds(state: Bird[]) {
    return state.filter(s => s.color === 'red');
  }
}
复制代码

From component:

@Component({...})
export class AppComponent {
  @Select(ZooState.redBirds) birds$: Observable<string[]>;
}

 

3. Dynamic selectors

Using previous example, it is a little bit unconvenient to define different color bird one by one. It would be better to pass an arguement directly to the select() to tell what color of bird we need.

复制代码
import { Store } from '@ngxs/store';
import { map } from 'rxjs/operators';

@Component({ ... })
export class ZooComponent {

  @Select(ZooState.colorBirds('red'))
  redBirds$: Observable<string[]>;

  @Select(ZooState.colorBirds('green'))
  greenBirds$: Observable<string[]>;

}
复制代码

To do that we need dynamic selector:

复制代码
@State<string[]>({
  name: 'birds',
  defaults: []
})
export class ZooState {
  static colorBirds(color: string) {
    return createSelector(
      [ZooState],
      (state: string[]) => {
        return state.filter(s => s.color === color);
      }
    );
  }
}
复制代码

 

4. Lazy Selector:

To create a lazy selector all that you need to do is return a function from the selector. The function returned by the selector will be memoized automatically and the logic inside this function will be evaluated at a later stage when the consumer of the selector executes the function. Note that this function can take any number of arguments (or zero arguments) as it is the consumer's responsibility to supply them.

For instance, I can have a Lazy Selector that will filter my pandas to the provided type of panda.

复制代码
@State<string[]>({
  name: 'animals',
  defaults: []
})
export class ZooState {
  @Selector()
  static pandas(state: string[]) {
    return (type: string) => {
      return state.filter(s => s.indexOf('panda') > -1).filter(s => s.indexOf(type) > -1);
    };
  }
}
复制代码

 

posted @   Zhentiw  阅读(343)  评论(0编辑  收藏  举报
编辑推荐:
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
· AI与.NET技术实操系列(二):开始使用ML.NET
· 记一次.NET内存居高不下排查解决与启示
· 探究高空视频全景AR技术的实现原理
阅读排行:
· 阿里最新开源QwQ-32B,效果媲美deepseek-r1满血版,部署成本又又又降低了!
· Manus重磅发布:全球首款通用AI代理技术深度解析与实战指南
· 开源Multi-agent AI智能体框架aevatar.ai,欢迎大家贡献代码
· 被坑几百块钱后,我竟然真的恢复了删除的微信聊天记录!
· AI技术革命,工作效率10个最佳AI工具
历史上的今天:
2019-01-16 [Spring Boot] Adding JPA and Spring Data JPA
2019-01-16 [Javascript] Multiply Two Arrays over a Function in JavaScript
2019-01-16 [HTML5] Render Hello World Text with Custom Elements
2019-01-16 [Javascript] Conditionally spread entries to a JavaScript object
2018-01-16 [Javascript] Transduce over any Iteratable Collection
2018-01-16 [Javascript] Improve Composition with the Compose Combinator
2017-01-16 [Angular Directive] Create a Template Storage Service in Angular 2
点击右上角即可分享
微信分享提示