summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/whats_new/index.js
blob: 2b9e7a2815ea87bc26f966f844a7f3c662e65e29 (plain)
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
import Vue from 'vue';
import { mapState } from 'vuex';
import App from './components/app.vue';
import store from './store';
import { getStorageKey, setNotification } from './utils/notification';

let whatsNewApp;

export default el => {
  if (whatsNewApp) {
    store.dispatch('openDrawer');
  } else {
    const storageKey = getStorageKey(el);

    whatsNewApp = new Vue({
      el,
      store,
      components: {
        App,
      },
      computed: {
        ...mapState(['open']),
      },
      watch: {
        open() {
          setNotification(el);
        },
      },
      render(createElement) {
        return createElement('app', {
          props: { storageKey },
        });
      },
    });
  }
};