BigW Consortium Gitlab

ui_development_kit.js 556 Bytes
Newer Older
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),
  });
});