gitlab-org--gitlab-foss/app/assets/javascripts/project.js

132 lines
4.3 KiB
JavaScript
Raw Normal View History

2017-01-12 03:49:57 +00:00
/* eslint-disable func-names, space-before-function-paren, wrap-iife, no-var, quotes, consistent-return, no-new, prefer-arrow-callback, no-return-assign, one-var, one-var-declaration-per-line, object-shorthand, comma-dangle, no-else-return, newline-per-chained-call, no-shadow, vars-on-top, prefer-template, max-len */
/* global ProjectSelect */
2017-03-11 06:45:34 +00:00
import Cookies from 'js-cookie';
2016-07-24 20:45:11 +00:00
(function() {
this.Project = (function() {
function Project() {
$('ul.clone-options-dropdown a').click(function() {
var url;
if ($(this).hasClass('active')) {
return;
}
$('.active').not($(this)).removeClass('active');
$(this).toggleClass('active');
url = $("#project_clone").val();
$('#project_clone').val(url);
return $('.clone').text(url);
// Git protocol switcher
// Remove the active class for all buttons (ssh, http, kerberos if shown)
// Add the active class for the clicked button
// Update the input field
// Update the command line instructions
2016-07-24 20:45:11 +00:00
});
// Ref switcher
2016-07-24 20:45:11 +00:00
this.initRefSwitcher();
$('.project-refs-select').on('change', function() {
return $(this).parents('form').submit();
});
$('.hide-no-ssh-message').on('click', function(e) {
Cookies.set('hide_no_ssh_message', 'false');
2016-07-24 20:45:11 +00:00
$(this).parents('.no-ssh-key-message').remove();
return e.preventDefault();
});
$('.hide-no-password-message').on('click', function(e) {
Cookies.set('hide_no_password_message', 'false');
2016-07-24 20:45:11 +00:00
$(this).parents('.no-password-message').remove();
return e.preventDefault();
});
this.projectSelectDropdown();
}
Project.prototype.projectSelectDropdown = function() {
new ProjectSelect();
$('.project-item-select').on('click', (function(_this) {
return function(e) {
return _this.changeProject($(e.currentTarget).val());
};
})(this));
return $('.js-projects-dropdown-toggle').on('click', function(e) {
e.preventDefault();
return $('.js-projects-dropdown').select2('open');
});
};
Project.prototype.changeProject = function(url) {
return window.location = url;
};
Project.prototype.initRefSwitcher = function() {
2017-02-03 17:53:36 +00:00
var refListItem = document.createElement('li');
var refLink = document.createElement('a');
2016-11-02 11:31:00 +00:00
refLink.href = '#';
2016-07-24 20:45:11 +00:00
return $('.js-project-refs-dropdown').each(function() {
var $dropdown, selected;
$dropdown = $(this);
selected = $dropdown.data('selected');
return $dropdown.glDropdown({
data: function(term, callback) {
return $.ajax({
url: $dropdown.data('refs-url'),
data: {
ref: $dropdown.data('ref'),
search: term
},
dataType: "json"
2016-07-24 20:45:11 +00:00
}).done(function(refs) {
return callback(refs);
});
},
selectable: true,
filterable: true,
filterRemote: true,
2016-07-24 20:45:11 +00:00
filterByText: true,
fieldName: $dropdown.data('field-name'),
2016-07-24 20:45:11 +00:00
renderRow: function(ref) {
2016-11-02 11:31:00 +00:00
var li = refListItem.cloneNode(false);
2016-07-24 20:45:11 +00:00
if (ref.header != null) {
li.className = 'dropdown-header';
li.textContent = ref.header;
2016-07-24 20:45:11 +00:00
} else {
2016-11-02 11:31:00 +00:00
var link = refLink.cloneNode(false);
if (ref === selected) {
2016-11-02 11:31:00 +00:00
link.className = 'is-active';
}
link.textContent = ref;
link.dataset.ref = ref;
li.appendChild(link);
2016-07-24 20:45:11 +00:00
}
2016-11-02 11:31:00 +00:00
return li;
2016-07-24 20:45:11 +00:00
},
id: function(obj, $el) {
return $el.attr('data-ref');
},
toggleLabel: function(obj, $el) {
return $el.text().trim();
},
clicked: function(options) {
const { e } = options;
e.preventDefault();
if ($('input[name="ref"]').length) {
2017-01-12 03:49:57 +00:00
var $form = $dropdown.closest('form');
var action = $form.attr('action');
var divider = action.indexOf('?') === -1 ? '?' : '&';
2017-01-13 21:54:16 +00:00
gl.utils.visitUrl(action + '' + divider + '' + $form.serialize());
}
2016-07-24 20:45:11 +00:00
}
});
});
};
return Project;
})();
}).call(window);