aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/store.js
blob: b115a53e1df971e013d7386c879a0ed1dbfdd2a4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import { computed } from 'mobx';
import { FeatureStore } from '../utils/FeatureStore';

const debug = require('debug')('Ferdi:feature:communityRecipes:store');

export class CommunityRecipesStore extends FeatureStore {
  start(stores, actions) {
    debug('start');
    this.stores = stores;
    this.actions = actions;
  }

  stop() {
    debug('stop');
    super.stop();
  }

  @computed get communityRecipes() {
    if (!this.stores) return [];

    return this.stores.recipePreviews.dev.map((r) => {
      r.isDevRecipe = !!r.author.find((a) => a.email === this.stores.user.data.email);

      return r;
    });
  }
}

export default CommunityRecipesStore;