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

projects_list.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 913b62ba26d2b528b5d343eb92d2e8cb76da54ad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import ProjectsFilterableList from './projects/projects_filterable_list';

/**
 * Makes search request for projects when user types a value in the search input.
 * Updates the html content of the page with the received one.
 */
export default class ProjectsList {
  constructor() {
    const form = document.querySelector('form#project-filter-form');
    const filter = document.querySelector('.js-projects-list-filter');
    const holder = document.querySelector('.js-projects-list-holder');

    if (form && filter && holder) {
      const list = new ProjectsFilterableList(form, filter, holder);
      list.initSearch();
    }
  }
}