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

ui_development_kit.js « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f503076715cfd483ab41fcb4bfcab77587f3caa0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import Api from './api';

document.addEventListener('DOMContentLoaded', () => {
  $('#js-project-dropdown').glDropdown({
    data: (term, callback) => {
      Api.projects(term, {
        order_by: 'last_activity_at',
      }, (data) => {
        callback(data);
      });
    },
    text: project => (project.name_with_namespace || project.name),
    selectable: true,
    fieldName: 'author_id',
    filterable: true,
    search: {
      fields: ['name_with_namespace'],
    },
    id: data => data.id,
    isSelected: data => (data.id === 2),
  });
});