summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/frequent_items/components/frequent_items_mixin.js
blob: 704dc83ca8ec011e5ed1127eb5fb9d8bb2883b27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { TRANSLATION_KEYS } from '../constants';

export default {
  props: {
    namespace: {
      type: String,
      required: true,
    },
  },
  methods: {
    getTranslations(keys) {
      const translationStrings = keys.reduce(
        (acc, key) => ({
          ...acc,
          [key]: TRANSLATION_KEYS[this.namespace][key],
        }),
        {},
      );

      return translationStrings;
    },
  },
};