Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.js « actions « profile « users « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e1f9352966bc278f8e26a6ef5186707e05a9d193 (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
37
import Vue from 'vue';
import { GlToast } from '@gitlab/ui';
import UserActionsApp from './components/user_actions_app.vue';

export const initUserActionsApp = () => {
  const mountingEl = document.querySelector('.js-user-profile-actions');

  if (!mountingEl) return false;

  const {
    userId,
    rssSubscriptionPath,
    reportAbusePath,
    reportedUserId,
    reportedFromUrl,
  } = mountingEl.dataset;

  Vue.use(GlToast);

  return new Vue({
    el: mountingEl,
    name: 'UserActionsRoot',
    provide: {
      reportAbusePath,
    },
    render(createElement) {
      return createElement(UserActionsApp, {
        props: {
          userId,
          rssSubscriptionPath,
          reportedUserId: reportedUserId ? parseInt(reportedUserId, 10) : null,
          reportedFromUrl,
        },
      });
    },
  });
};