2021-01-03 14:25:43 +05:30
|
|
|
import { queryToObject } from '~/lib/utils/url_utility';
|
|
|
|
import createStore from './store';
|
2021-01-29 00:20:46 +05:30
|
|
|
import { initSidebar } from './sidebar';
|
|
|
|
import initGroupFilter from './group_filter';
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
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) });
|
2021-01-03 14:25:43 +05:30
|
|
|
|
2021-01-29 00:20:46 +05:30
|
|
|
initSidebar(store);
|
|
|
|
initGroupFilter(store);
|
2021-01-03 14:25:43 +05:30
|
|
|
};
|