import { Action } from '@ngrx/store';

import { RPCClientError } from '@loafer/ng-rpc';
import { NoAuthProbe } from '@overflow/commons-typescript/model/noauth';
import { MetaMemberStatus } from '@overflow/commons-typescript/model/meta';

export enum ActionType {
  ReadAll = '[meta.meta-member-status] ReadAll',
  ReadAllSuccess = '[meta.meta-member-status] ReadAllSuccess',
  ReadAllFailure = '[meta.meta-member-status] ReadAllFailure',
}

export class ReadAll implements Action {
  readonly type = ActionType.ReadAll;
}

export class ReadAllSuccess implements Action {
  readonly type = ActionType.ReadAllSuccess;

  constructor(public payload: MetaMemberStatus[]) {}
}

export class ReadAllFailure implements Action {
  readonly type = ActionType.ReadAllFailure;

  constructor(public payload: RPCClientError) {}
}

export type Actions =
  | ReadAll
  | ReadAllSuccess
  | ReadAllFailure
;