aboutsummaryrefslogtreecommitdiffstats
path: root/src/features/communityRecipes/store.ts
blob: 5488675284a114636946230071811bf156ce3231 (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
30
31
32
33
34
35
36
37
38
39
40
import { computed } from 'mobx';
import FeatureStore from '../utils/FeatureStore';

const debug = require('../../preload-safe-debug')(
  'Ferdium:feature:communityRecipes:store',
);

export class CommunityRecipesStore extends FeatureStore {
  stores: any;

  actions: any;

  start(stores: any, actions: any) {
    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(
      (recipePreview: { isDevRecipe: boolean; author: any[] }) => {
        // TODO: Need to figure out if this is even necessary/used
        // eslint-disable-next-line no-param-reassign
        recipePreview.isDevRecipe = !!recipePreview.author.some(
          (author: { email: string }) =>
            author.email === this.stores.user.data.email,
        );

        return recipePreview;
      },
    );
  }
}