UNPKG

@revoloo/cypress6

Version:

Cypress.io end to end testing tool

33 lines (25 loc) 559 B
import _ from 'lodash' import { observable, action } from 'mobx' import Org from './organization-model' export class Orgs { @observable orgs = [] @observable error = null @observable isLoading = false @observable isLoaded = false @action setOrgs (orgs) { this.orgs = _.map(orgs, (org) => { return ( new Org(org) ) }) this.isLoading = false this.isLoaded = true } @action setError (err) { this.error = err } getOrgById (id) { return _.find(this.orgs, { id }) } } export default new Orgs()