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

index.js « router « design_management_legacy « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 28a81ed02783bcd58f4bed5391b1e0d66ecf7f56 (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
import $ from 'jquery';
import Vue from 'vue';
import VueRouter from 'vue-router';
import routes from './routes';
import { DESIGN_ROUTE_NAME } from './constants';
import { getPageLayoutElement } from '~/design_management_legacy/utils/design_management_utils';
import { DESIGN_DETAIL_LAYOUT_CLASSLIST } from '../constants';

Vue.use(VueRouter);

export default function createRouter(base) {
  const router = new VueRouter({
    base,
    mode: 'history',
    routes,
  });
  const pageEl = getPageLayoutElement();

  router.beforeEach(({ meta: { el }, name }, _, next) => {
    $(`#${el}`).tab('show');

    // apply a fullscreen layout style in Design View (a.k.a design detail)
    if (pageEl) {
      if (name === DESIGN_ROUTE_NAME) {
        pageEl.classList.add(...DESIGN_DETAIL_LAYOUT_CLASSLIST);
      } else {
        pageEl.classList.remove(...DESIGN_DETAIL_LAYOUT_CLASSLIST);
      }
    }

    next();
  });

  return router;
}