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

index.js « search « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d2bb1ccfc445abf9eb15ab3dee5507613e95285e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import { queryToObject } from '~/lib/utils/url_utility';
import createStore from './store';
import { initTopbar } from './topbar';
import { initSidebar } from './sidebar';

export const initSearchApp = () => {
  // Similar to url_utility.decodeUrlParameter
  // Our query treats + as %20.  This replaces the query + symbols with %20.
  const sanitizedSearch = window.location.search.replace(/\+/g, '%20');
  const store = createStore({ query: queryToObject(sanitizedSearch) });

  initTopbar(store);
  initSidebar(store);
};