2015-08-05 09:24:26 +02:00
|
|
|
'use strict';
|
|
|
|
|
2015-07-24 17:13:42 +02:00
|
|
|
var csrf;
|
2015-09-06 12:57:25 +02:00
|
|
|
var suburl;
|
2015-07-24 17:13:42 +02:00
|
|
|
|
2015-08-19 22:31:28 +02:00
|
|
|
function initCommentPreviewTab($form) {
|
2016-08-18 01:10:07 +02:00
|
|
|
var $tabMenu = $form.find('.tabular.menu');
|
|
|
|
$tabMenu.find('.item').tab();
|
|
|
|
$tabMenu.find('.item[data-tab="' + $tabMenu.data('preview') + '"]').click(function () {
|
2015-08-10 12:57:57 +02:00
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"mode": "gfm",
|
|
|
|
"context": $this.data('context'),
|
2016-08-18 01:10:07 +02:00
|
|
|
"text": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val()
|
2015-08-10 12:57:57 +02:00
|
|
|
},
|
|
|
|
function (data) {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $previewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('preview') + '"]');
|
|
|
|
$previewPanel.html(data);
|
|
|
|
emojify.run($previewPanel[0]);
|
|
|
|
$('pre code', $previewPanel[0]).each(function (i, block) {
|
2016-02-01 20:52:47 +01:00
|
|
|
hljs.highlightBlock(block);
|
|
|
|
});
|
2015-08-10 12:57:57 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2015-11-11 22:19:28 +01:00
|
|
|
|
|
|
|
buttonsClickOnEnter();
|
2015-08-19 22:31:28 +02:00
|
|
|
}
|
|
|
|
|
2016-08-12 11:29:29 +02:00
|
|
|
var previewFileModes;
|
2016-08-11 14:48:08 +02:00
|
|
|
|
|
|
|
function initEditPreviewTab($form) {
|
2016-08-18 01:10:07 +02:00
|
|
|
var $tabMenu = $form.find('.tabular.menu');
|
|
|
|
$tabMenu.find('.item').tab();
|
|
|
|
var $previewTab = $tabMenu.find('.item[data-tab="' + $tabMenu.data('preview') + '"]');
|
|
|
|
if ($previewTab.length) {
|
|
|
|
previewFileModes = $previewTab.data('preview-file-modes').split(',');
|
|
|
|
$previewTab.click(function () {
|
2016-08-11 14:48:08 +02:00
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"mode": "gfm",
|
|
|
|
"context": $this.data('context'),
|
2016-08-18 01:10:07 +02:00
|
|
|
"text": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val()
|
2016-08-11 14:48:08 +02:00
|
|
|
},
|
|
|
|
function (data) {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $previewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('preview') + '"]');
|
|
|
|
$previewPanel.html(data);
|
|
|
|
emojify.run($previewPanel[0]);
|
|
|
|
$('pre code', $previewPanel[0]).each(function (i, block) {
|
2016-08-11 14:48:08 +02:00
|
|
|
hljs.highlightBlock(block);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
function initEditDiffTab($form) {
|
2016-08-18 01:10:07 +02:00
|
|
|
var $tabMenu = $form.find('.tabular.menu');
|
|
|
|
$tabMenu.find('.item').tab();
|
|
|
|
$tabMenu.find('.item[data-tab="' + $tabMenu.data('diff') + '"]').click(function () {
|
2016-08-11 14:48:08 +02:00
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"context": $this.data('context'),
|
2016-08-18 01:10:07 +02:00
|
|
|
"content": $form.find('.tab.segment[data-tab="' + $tabMenu.data('write') + '"] textarea').val()
|
2016-08-11 14:48:08 +02:00
|
|
|
},
|
|
|
|
function (data) {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $diffPreviewPanel = $form.find('.tab.segment[data-tab="' + $tabMenu.data('diff') + '"]');
|
|
|
|
$diffPreviewPanel.html(data);
|
|
|
|
emojify.run($diffPreviewPanel[0]);
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
2016-08-18 01:10:07 +02:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
|
2016-08-18 01:10:07 +02:00
|
|
|
|
|
|
|
function initEditForm() {
|
|
|
|
if ($('.edit.form').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
initEditPreviewTab($('.edit.form'));
|
|
|
|
initEditDiffTab($('.edit.form'));
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
|
2016-08-18 01:10:07 +02:00
|
|
|
|
2017-03-15 02:10:35 +01:00
|
|
|
function updateIssuesMeta(url, action, issueIds, elementId, afterSuccess) {
|
|
|
|
$.ajax({
|
|
|
|
type: "POST",
|
|
|
|
url: url,
|
|
|
|
data: {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"action": action,
|
|
|
|
"issue_ids": issueIds,
|
|
|
|
"id": elementId
|
|
|
|
},
|
|
|
|
success: afterSuccess
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2015-08-19 22:31:28 +02:00
|
|
|
function initCommentForm() {
|
|
|
|
if ($('.comment.form').length == 0) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
initCommentPreviewTab($('.comment.form'));
|
2015-08-10 12:57:57 +02:00
|
|
|
|
|
|
|
// Labels
|
|
|
|
var $list = $('.ui.labels.list');
|
2016-08-18 07:44:07 +02:00
|
|
|
var $noSelect = $list.find('.no-select');
|
|
|
|
var $labelMenu = $('.select-label .menu');
|
|
|
|
var hasLabelUpdateAction = $labelMenu.data('action') == 'update';
|
2015-08-14 18:42:43 +02:00
|
|
|
|
2017-01-30 13:46:45 +01:00
|
|
|
$('.select-label').dropdown('setting', 'onHide', function(){
|
2017-01-30 15:21:17 +01:00
|
|
|
if (hasLabelUpdateAction) {
|
|
|
|
location.reload();
|
|
|
|
}
|
2017-01-30 13:46:45 +01:00
|
|
|
});
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
$labelMenu.find('.item:not(.no-select)').click(function () {
|
2015-08-10 12:57:57 +02:00
|
|
|
if ($(this).hasClass('checked')) {
|
2015-09-05 20:11:05 +02:00
|
|
|
$(this).removeClass('checked');
|
|
|
|
$(this).find('.octicon').removeClass('octicon-check');
|
2016-08-18 07:44:07 +02:00
|
|
|
if (hasLabelUpdateAction) {
|
2017-03-15 02:10:35 +01:00
|
|
|
updateIssuesMeta(
|
|
|
|
$labelMenu.data('update-url'),
|
|
|
|
"detach",
|
|
|
|
$labelMenu.data('issue-id'),
|
|
|
|
$(this).data('id')
|
|
|
|
);
|
2015-08-14 18:42:43 +02:00
|
|
|
}
|
2015-08-10 12:57:57 +02:00
|
|
|
} else {
|
2015-09-05 20:11:05 +02:00
|
|
|
$(this).addClass('checked');
|
|
|
|
$(this).find('.octicon').addClass('octicon-check');
|
2016-08-18 07:44:07 +02:00
|
|
|
if (hasLabelUpdateAction) {
|
2017-03-15 02:10:35 +01:00
|
|
|
updateIssuesMeta(
|
|
|
|
$labelMenu.data('update-url'),
|
|
|
|
"attach",
|
|
|
|
$labelMenu.data('issue-id'),
|
|
|
|
$(this).data('id')
|
|
|
|
);
|
2015-08-14 18:42:43 +02:00
|
|
|
}
|
2015-08-10 12:57:57 +02:00
|
|
|
}
|
|
|
|
|
2017-01-10 14:57:03 +01:00
|
|
|
var labelIds = [];
|
2015-08-10 12:57:57 +02:00
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
if ($(this).hasClass('checked')) {
|
2017-01-10 14:57:03 +01:00
|
|
|
labelIds.push($(this).data('id'));
|
2015-08-10 12:57:57 +02:00
|
|
|
$($(this).data('id-selector')).removeClass('hide');
|
|
|
|
} else {
|
|
|
|
$($(this).data('id-selector')).addClass('hide');
|
|
|
|
}
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
if (labelIds.length == 0) {
|
|
|
|
$noSelect.removeClass('hide');
|
2015-08-10 12:57:57 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$noSelect.addClass('hide');
|
2015-08-10 12:57:57 +02:00
|
|
|
}
|
2017-01-10 14:57:03 +01:00
|
|
|
$($(this).parent().data('id')).val(labelIds.join(","));
|
2015-08-10 12:57:57 +02:00
|
|
|
return false;
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$labelMenu.find('.no-select.item').click(function () {
|
|
|
|
if (hasLabelUpdateAction) {
|
2017-03-15 02:10:35 +01:00
|
|
|
updateIssuesMeta(
|
|
|
|
$labelMenu.data('update-url'),
|
|
|
|
"clear",
|
|
|
|
$labelMenu.data('issue-id'),
|
|
|
|
""
|
|
|
|
);
|
2015-08-14 18:42:43 +02:00
|
|
|
}
|
|
|
|
|
2015-08-10 12:57:57 +02:00
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
$(this).removeClass('checked');
|
|
|
|
$(this).find('.octicon').removeClass('octicon-check');
|
|
|
|
});
|
|
|
|
|
|
|
|
$list.find('.item').each(function () {
|
|
|
|
$(this).addClass('hide');
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$noSelect.removeClass('hide');
|
2015-08-10 12:57:57 +02:00
|
|
|
$($(this).parent().data('id')).val('');
|
|
|
|
});
|
|
|
|
|
2015-08-10 15:47:23 +02:00
|
|
|
function selectItem(select_id, input_id) {
|
|
|
|
var $menu = $(select_id + ' .menu');
|
2015-09-05 20:11:05 +02:00
|
|
|
var $list = $('.ui' + select_id + '.list');
|
2016-08-18 07:44:07 +02:00
|
|
|
var hasUpdateAction = $menu.data('action') == 'update';
|
2015-08-14 18:42:43 +02:00
|
|
|
|
2015-08-10 15:47:23 +02:00
|
|
|
$menu.find('.item:not(.no-select)').click(function () {
|
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
$(this).removeClass('selected active')
|
|
|
|
});
|
|
|
|
|
|
|
|
$(this).addClass('selected active');
|
2016-08-18 07:44:07 +02:00
|
|
|
if (hasUpdateAction) {
|
2017-03-15 02:10:35 +01:00
|
|
|
updateIssuesMeta(
|
|
|
|
$menu.data('update-url'),
|
|
|
|
"",
|
|
|
|
$menu.data('issue-id'),
|
2017-06-28 10:55:28 +02:00
|
|
|
$(this).data('id'),
|
|
|
|
function() { location.reload(); }
|
2017-03-15 02:10:35 +01:00
|
|
|
);
|
2015-08-14 18:42:43 +02:00
|
|
|
}
|
2015-08-10 15:47:23 +02:00
|
|
|
switch (input_id) {
|
|
|
|
case '#milestone_id':
|
|
|
|
$list.find('.selected').html('<a class="item" href=' + $(this).data('href') + '>' +
|
|
|
|
$(this).text() + '</a>');
|
|
|
|
break;
|
|
|
|
case '#assignee_id':
|
|
|
|
$list.find('.selected').html('<a class="item" href=' + $(this).data('href') + '>' +
|
|
|
|
'<img class="ui avatar image" src=' + $(this).data('avatar') + '>' +
|
|
|
|
$(this).text() + '</a>');
|
|
|
|
}
|
|
|
|
$('.ui' + select_id + '.list .no-select').addClass('hide');
|
|
|
|
$(input_id).val($(this).data('id'));
|
2015-08-10 12:57:57 +02:00
|
|
|
});
|
2015-08-10 15:47:23 +02:00
|
|
|
$menu.find('.no-select.item').click(function () {
|
|
|
|
$(this).parent().find('.item:not(.no-select)').each(function () {
|
|
|
|
$(this).removeClass('selected active')
|
|
|
|
});
|
2015-08-10 12:57:57 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
if (hasUpdateAction) {
|
2017-03-15 02:10:35 +01:00
|
|
|
updateIssuesMeta(
|
|
|
|
$menu.data('update-url'),
|
|
|
|
"",
|
|
|
|
$menu.data('issue-id'),
|
2017-06-28 10:55:28 +02:00
|
|
|
$(this).data('id'),
|
|
|
|
function() { location.reload(); }
|
2017-03-15 02:10:35 +01:00
|
|
|
);
|
2015-08-14 18:42:43 +02:00
|
|
|
}
|
|
|
|
|
2015-08-10 15:47:23 +02:00
|
|
|
$list.find('.selected').html('');
|
|
|
|
$list.find('.no-select').removeClass('hide');
|
|
|
|
$(input_id).val('');
|
2015-08-10 12:57:57 +02:00
|
|
|
});
|
2015-08-10 15:47:23 +02:00
|
|
|
}
|
2015-08-10 12:57:57 +02:00
|
|
|
|
2015-08-10 15:47:23 +02:00
|
|
|
// Milestone and assignee
|
|
|
|
selectItem('.select-milestone', '#milestone_id');
|
|
|
|
selectItem('.select-assignee', '#assignee_id');
|
2015-08-10 12:57:57 +02:00
|
|
|
}
|
|
|
|
|
2015-07-07 19:09:03 +02:00
|
|
|
function initInstall() {
|
|
|
|
if ($('.install').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2017-01-09 10:16:10 +01:00
|
|
|
if ($('#db_host').val()=="") {
|
|
|
|
$('#db_host').val("127.0.0.1:3306");
|
|
|
|
$('#db_user').val("gitea");
|
|
|
|
$('#db_name').val("gitea");
|
|
|
|
}
|
|
|
|
|
2015-07-07 19:09:03 +02:00
|
|
|
// Database type change detection.
|
|
|
|
$("#db_type").change(function () {
|
2016-11-07 14:26:13 +01:00
|
|
|
var sqliteDefault = 'data/gitea.db';
|
|
|
|
var tidbDefault = 'data/gitea_tidb';
|
2015-09-13 15:51:51 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var dbType = $(this).val();
|
|
|
|
if (dbType === "SQLite3" || dbType === "TiDB") {
|
2015-07-07 19:09:03 +02:00
|
|
|
$('#sql_settings').hide();
|
|
|
|
$('#pgsql_settings').hide();
|
|
|
|
$('#sqlite_settings').show();
|
2015-09-13 15:51:51 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
if (dbType === "SQLite3" && $('#db_path').val() == tidbDefault) {
|
|
|
|
$('#db_path').val(sqliteDefault);
|
|
|
|
} else if (dbType === "TiDB" && $('#db_path').val() == sqliteDefault) {
|
|
|
|
$('#db_path').val(tidbDefault);
|
2015-09-13 15:51:51 +02:00
|
|
|
}
|
2015-07-07 19:09:03 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-12-24 02:37:35 +01:00
|
|
|
var dbDefaults = {
|
|
|
|
"MySQL": "127.0.0.1:3306",
|
|
|
|
"PostgreSQL": "127.0.0.1:5432",
|
|
|
|
"MSSQL": "127.0.0.1:1433"
|
|
|
|
};
|
2015-07-07 19:09:03 +02:00
|
|
|
|
|
|
|
$('#sqlite_settings').hide();
|
|
|
|
$('#sql_settings').show();
|
2016-12-24 02:37:35 +01:00
|
|
|
|
|
|
|
$('#pgsql_settings').toggle(dbType === "PostgreSQL");
|
|
|
|
$.each(dbDefaults, function(type, defaultHost) {
|
|
|
|
if ($('#db_host').val() == defaultHost) {
|
|
|
|
$('#db_host').val(dbDefaults[dbType]);
|
|
|
|
return false;
|
2015-07-07 19:09:03 +02:00
|
|
|
}
|
2016-12-24 02:37:35 +01:00
|
|
|
});
|
2015-07-07 19:09:03 +02:00
|
|
|
});
|
2015-08-29 18:22:26 +02:00
|
|
|
|
2016-08-07 20:01:47 +02:00
|
|
|
// TODO: better handling of exclusive relations.
|
2015-08-29 18:22:26 +02:00
|
|
|
$('#offline-mode input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('#disable-gravatar').checkbox('check');
|
2016-08-07 20:01:47 +02:00
|
|
|
$('#federated-avatar-lookup').checkbox('uncheck');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#disable-gravatar input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('#federated-avatar-lookup').checkbox('uncheck');
|
|
|
|
} else {
|
|
|
|
$('#offline-mode').checkbox('uncheck');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#federated-avatar-lookup input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('#disable-gravatar').checkbox('uncheck');
|
|
|
|
$('#offline-mode').checkbox('uncheck');
|
2015-08-29 18:22:26 +02:00
|
|
|
}
|
|
|
|
});
|
2015-09-13 18:14:32 +02:00
|
|
|
$('#disable-registration input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('#enable-captcha').checkbox('uncheck');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#enable-captcha input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('#disable-registration').checkbox('uncheck');
|
|
|
|
}
|
|
|
|
});
|
2015-09-05 20:11:05 +02:00
|
|
|
}
|
2015-07-07 19:09:03 +02:00
|
|
|
|
2015-07-24 17:13:42 +02:00
|
|
|
function initRepository() {
|
2015-07-24 15:02:49 +02:00
|
|
|
if ($('.repository').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-11-14 10:34:01 +01:00
|
|
|
function initFilterSearchDropdown(selector) {
|
|
|
|
var $dropdown = $(selector);
|
|
|
|
$dropdown.dropdown({
|
|
|
|
fullTextSearch: true,
|
|
|
|
onChange: function (text, value, $choice) {
|
|
|
|
window.location.href = $choice.data('url');
|
|
|
|
console.log($choice.data('url'))
|
|
|
|
},
|
|
|
|
message: {noResults: $dropdown.data('no-results')}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-12-09 06:14:54 +01:00
|
|
|
// File list and commits
|
|
|
|
if ($('.repository.file.list').length > 0 ||
|
2015-12-11 01:52:06 +01:00
|
|
|
('.repository.commits').length > 0) {
|
2015-11-14 10:34:01 +01:00
|
|
|
initFilterSearchDropdown('.choose.reference .dropdown');
|
|
|
|
|
|
|
|
$('.reference.column').click(function () {
|
|
|
|
$('.choose.reference .scrolling.menu').css('display', 'none');
|
|
|
|
$('.choose.reference .text').removeClass('black');
|
|
|
|
$($(this).data('target')).css('display', 'block');
|
|
|
|
$(this).find('.text').addClass('black');
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-27 07:50:38 +01:00
|
|
|
// Wiki
|
|
|
|
if ($('.repository.wiki.view').length > 0) {
|
|
|
|
initFilterSearchDropdown('.choose.page .dropdown');
|
|
|
|
}
|
|
|
|
|
2015-08-31 07:36:31 +02:00
|
|
|
// Options
|
|
|
|
if ($('.repository.settings.options').length > 0) {
|
|
|
|
$('#repo_name').keyup(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $prompt = $('#repo-name-change-prompt');
|
2015-09-01 15:37:41 +02:00
|
|
|
if ($(this).val().toString().toLowerCase() != $(this).data('repo-name').toString().toLowerCase()) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.show();
|
2015-08-31 10:10:28 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.hide();
|
2015-08-31 07:36:31 +02:00
|
|
|
}
|
|
|
|
});
|
2016-07-30 19:26:43 +02:00
|
|
|
|
|
|
|
// Enable or select internal/external wiki system and issue tracker.
|
|
|
|
$('.enable-system').change(function () {
|
|
|
|
if (this.checked) {
|
|
|
|
$($(this).data('target')).removeClass('disabled');
|
|
|
|
} else {
|
|
|
|
$($(this).data('target')).addClass('disabled');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('.enable-system-radio').change(function () {
|
|
|
|
if (this.value == 'false') {
|
|
|
|
$($(this).data('target')).addClass('disabled');
|
|
|
|
} else if (this.value == 'true') {
|
|
|
|
$($(this).data('target')).removeClass('disabled');
|
|
|
|
}
|
|
|
|
});
|
2015-08-31 07:36:31 +02:00
|
|
|
}
|
|
|
|
|
2015-07-24 17:13:42 +02:00
|
|
|
// Labels
|
2015-08-05 09:24:26 +02:00
|
|
|
if ($('.repository.labels').length > 0) {
|
2015-08-09 16:45:38 +02:00
|
|
|
// Create label
|
2016-08-18 07:44:07 +02:00
|
|
|
var $newLabelPanel = $('.new-label.segment');
|
2015-08-09 16:45:38 +02:00
|
|
|
$('.new-label.button').click(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
$newLabelPanel.show();
|
2015-08-09 16:45:38 +02:00
|
|
|
});
|
|
|
|
$('.new-label.segment .cancel').click(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
$newLabelPanel.hide();
|
2015-08-09 16:45:38 +02:00
|
|
|
});
|
|
|
|
|
2015-08-05 09:24:26 +02:00
|
|
|
$('.color-picker').each(function () {
|
|
|
|
$(this).minicolors();
|
|
|
|
});
|
|
|
|
$('.precolors .color').click(function () {
|
2015-09-05 20:11:05 +02:00
|
|
|
var color_hex = $(this).data('color-hex');
|
2015-08-05 09:24:26 +02:00
|
|
|
$('.color-picker').val(color_hex);
|
|
|
|
$('.minicolors-swatch-color').css("background-color", color_hex);
|
|
|
|
});
|
|
|
|
$('.edit-label-button').click(function () {
|
|
|
|
$('#label-modal-id').val($(this).data('id'));
|
2015-08-09 16:45:38 +02:00
|
|
|
$('.edit-label .new-label-input').val($(this).data('title'));
|
2015-09-18 12:18:31 +02:00
|
|
|
$('.edit-label .color-picker').val($(this).data('color'));
|
2015-08-05 09:24:26 +02:00
|
|
|
$('.minicolors-swatch-color').css("background-color", $(this).data('color'));
|
|
|
|
$('.edit-label.modal').modal({
|
|
|
|
onApprove: function () {
|
|
|
|
$('.edit-label.form').submit();
|
|
|
|
}
|
|
|
|
}).modal('show');
|
|
|
|
return false;
|
|
|
|
});
|
2015-07-24 15:02:49 +02:00
|
|
|
}
|
2015-08-05 09:24:26 +02:00
|
|
|
|
|
|
|
// Milestones
|
2015-08-05 14:23:08 +02:00
|
|
|
if ($('.repository.milestones').length > 0) {
|
|
|
|
|
|
|
|
}
|
2015-08-05 09:24:26 +02:00
|
|
|
if ($('.repository.new.milestone').length > 0) {
|
2015-09-05 20:11:05 +02:00
|
|
|
var $datepicker = $('.milestone.datepicker');
|
2015-08-05 09:24:26 +02:00
|
|
|
$datepicker.datetimepicker({
|
|
|
|
lang: $datepicker.data('lang'),
|
|
|
|
inline: true,
|
|
|
|
timepicker: false,
|
|
|
|
startDate: $datepicker.data('start-date'),
|
2015-08-05 12:26:18 +02:00
|
|
|
formatDate: 'Y-m-d',
|
2015-08-05 09:24:26 +02:00
|
|
|
onSelectDate: function (ct) {
|
2015-08-05 12:26:18 +02:00
|
|
|
$('#deadline').val(ct.dateFormat('Y-m-d'));
|
2015-07-24 17:13:42 +02:00
|
|
|
}
|
2015-08-05 09:24:26 +02:00
|
|
|
});
|
|
|
|
$('#clear-date').click(function () {
|
|
|
|
$('#deadline').val('');
|
|
|
|
return false;
|
|
|
|
});
|
2015-08-06 16:48:11 +02:00
|
|
|
}
|
|
|
|
|
2015-08-13 17:21:43 +02:00
|
|
|
// Issues
|
|
|
|
if ($('.repository.view.issue').length > 0) {
|
2015-08-19 17:14:57 +02:00
|
|
|
// Edit issue title
|
2016-08-18 07:44:07 +02:00
|
|
|
var $issueTitle = $('#issue-title');
|
|
|
|
var $editInput = $('#edit-title-input input');
|
2015-08-19 17:14:57 +02:00
|
|
|
var editTitleToggle = function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
$issueTitle.toggle();
|
2015-08-19 17:14:57 +02:00
|
|
|
$('.not-in-edit').toggle();
|
|
|
|
$('#edit-title-input').toggle();
|
|
|
|
$('.in-edit').toggle();
|
2016-08-18 07:44:07 +02:00
|
|
|
$editInput.focus();
|
2015-08-19 17:14:57 +02:00
|
|
|
return false;
|
2015-09-05 20:11:05 +02:00
|
|
|
};
|
2015-08-19 17:14:57 +02:00
|
|
|
$('#edit-title').click(editTitleToggle);
|
|
|
|
$('#cancel-edit-title').click(editTitleToggle);
|
2016-03-05 06:51:51 +01:00
|
|
|
$('#save-edit-title').click(editTitleToggle).click(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
if ($editInput.val().length == 0 ||
|
|
|
|
$editInput.val() == $issueTitle.text()) {
|
|
|
|
$editInput.val($issueTitle.text());
|
2015-11-27 07:50:38 +01:00
|
|
|
return false;
|
2015-12-05 07:09:14 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
$.post($(this).data('update-url'), {
|
|
|
|
"_csrf": csrf,
|
2016-08-18 07:44:07 +02:00
|
|
|
"title": $editInput.val()
|
2015-12-05 07:09:14 +01:00
|
|
|
},
|
|
|
|
function (data) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$editInput.val(data.title);
|
|
|
|
$issueTitle.text(data.title);
|
2017-02-05 15:36:00 +01:00
|
|
|
location.reload();
|
2015-12-05 07:09:14 +01:00
|
|
|
});
|
|
|
|
return false;
|
|
|
|
});
|
2015-08-19 17:14:57 +02:00
|
|
|
|
2015-08-19 22:31:28 +02:00
|
|
|
// Edit issue or comment content
|
|
|
|
$('.edit-content').click(function () {
|
2016-07-25 20:48:17 +02:00
|
|
|
var $segment = $(this).parent().parent().parent().next();
|
2016-08-18 07:44:07 +02:00
|
|
|
var $editContentZone = $segment.find('.edit-content-zone');
|
|
|
|
var $renderContent = $segment.find('.render-content');
|
|
|
|
var $rawContent = $segment.find('.raw-content');
|
2015-08-19 22:31:28 +02:00
|
|
|
var $textarea;
|
|
|
|
|
|
|
|
// Setup new form
|
2016-08-18 07:44:07 +02:00
|
|
|
if ($editContentZone.html().length == 0) {
|
|
|
|
$editContentZone.html($('#edit-content-form').html());
|
2015-08-19 22:31:28 +02:00
|
|
|
$textarea = $segment.find('textarea');
|
|
|
|
|
|
|
|
// Give new write/preview data-tab name to distinguish from others
|
2016-08-18 07:44:07 +02:00
|
|
|
var $editContentForm = $editContentZone.find('.ui.comment.form');
|
|
|
|
var $tabMenu = $editContentForm.find('.tabular.menu');
|
|
|
|
$tabMenu.attr('data-write', $editContentZone.data('write'));
|
|
|
|
$tabMenu.attr('data-preview', $editContentZone.data('preview'));
|
|
|
|
$tabMenu.find('.write.item').attr('data-tab', $editContentZone.data('write'));
|
|
|
|
$tabMenu.find('.preview.item').attr('data-tab', $editContentZone.data('preview'));
|
|
|
|
$editContentForm.find('.write.segment').attr('data-tab', $editContentZone.data('write'));
|
|
|
|
$editContentForm.find('.preview.segment').attr('data-tab', $editContentZone.data('preview'));
|
|
|
|
|
|
|
|
initCommentPreviewTab($editContentForm);
|
|
|
|
|
|
|
|
$editContentZone.find('.cancel.button').click(function () {
|
|
|
|
$renderContent.show();
|
|
|
|
$editContentZone.hide();
|
2015-08-19 22:31:28 +02:00
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$editContentZone.find('.save.button').click(function () {
|
|
|
|
$renderContent.show();
|
|
|
|
$editContentZone.hide();
|
2015-08-19 22:31:28 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
$.post($editContentZone.data('update-url'), {
|
2015-08-19 22:31:28 +02:00
|
|
|
"_csrf": csrf,
|
|
|
|
"content": $textarea.val(),
|
2016-08-18 07:44:07 +02:00
|
|
|
"context": $editContentZone.data('context')
|
2015-08-19 22:31:28 +02:00
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
if (data.length == 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$renderContent.html($('#no-content').html());
|
2015-08-19 22:31:28 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$renderContent.html(data.content);
|
|
|
|
emojify.run($renderContent[0]);
|
|
|
|
$('pre code', $renderContent[0]).each(function (i, block) {
|
2016-02-01 23:48:04 +01:00
|
|
|
hljs.highlightBlock(block);
|
|
|
|
});
|
2015-08-19 22:31:28 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
|
|
|
} else {
|
|
|
|
$textarea = $segment.find('textarea');
|
|
|
|
}
|
|
|
|
|
|
|
|
// Show write/preview tab and copy raw content as needed
|
2016-08-18 07:44:07 +02:00
|
|
|
$editContentZone.show();
|
|
|
|
$renderContent.hide();
|
2015-08-19 22:31:28 +02:00
|
|
|
if ($textarea.val().length == 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$textarea.val($rawContent.text());
|
2015-08-19 22:31:28 +02:00
|
|
|
}
|
|
|
|
$textarea.focus();
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2016-07-25 20:48:17 +02:00
|
|
|
// Delete comment
|
|
|
|
$('.delete-comment').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
if (confirm($this.data('locale'))) {
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf
|
2016-07-30 19:26:43 +02:00
|
|
|
}).success(function () {
|
2016-07-25 20:48:17 +02:00
|
|
|
$('#' + $this.data('comment-id')).remove();
|
2016-07-26 04:47:25 +02:00
|
|
|
});
|
2016-07-25 20:48:17 +02:00
|
|
|
}
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2015-08-19 17:14:57 +02:00
|
|
|
// Change status
|
2016-08-18 07:44:07 +02:00
|
|
|
var $statusButton = $('#status-button');
|
2016-08-30 23:37:46 +02:00
|
|
|
$('#comment-form .edit_area').keyup(function () {
|
2015-08-13 17:21:43 +02:00
|
|
|
if ($(this).val().length == 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$statusButton.text($statusButton.data('status'))
|
2015-08-13 17:21:43 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$statusButton.text($statusButton.data('status-and-comment'))
|
2015-08-13 17:21:43 +02:00
|
|
|
}
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$statusButton.click(function () {
|
|
|
|
$('#status').val($statusButton.data('status-val'));
|
2015-08-13 17:21:43 +02:00
|
|
|
$('#comment-form').submit();
|
2015-12-11 01:52:06 +01:00
|
|
|
});
|
2015-08-13 17:21:43 +02:00
|
|
|
}
|
|
|
|
|
2015-08-20 18:18:30 +02:00
|
|
|
// Diff
|
|
|
|
if ($('.repository.diff').length > 0) {
|
|
|
|
var $counter = $('.diff-counter');
|
2015-10-30 02:09:48 +01:00
|
|
|
if ($counter.length >= 1) {
|
|
|
|
$counter.each(function (i, item) {
|
|
|
|
var $item = $(item);
|
|
|
|
var addLine = $item.find('span[data-line].add').data("line");
|
|
|
|
var delLine = $item.find('span[data-line].del').data("line");
|
|
|
|
var addPercent = parseFloat(addLine) / (parseFloat(addLine) + parseFloat(delLine)) * 100;
|
|
|
|
$item.find(".bar .add").css("width", addPercent + "%");
|
|
|
|
});
|
2015-08-20 18:18:30 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-14 10:34:01 +01:00
|
|
|
// Quick start and repository home
|
|
|
|
$('#repo-clone-ssh').click(function () {
|
|
|
|
$('.clone-url').text($(this).data('link'));
|
|
|
|
$('#repo-clone-url').val($(this).data('link'));
|
|
|
|
$(this).addClass('blue');
|
|
|
|
$('#repo-clone-https').removeClass('blue');
|
2016-02-01 17:30:28 +01:00
|
|
|
localStorage.setItem('repo-clone-protocol', 'ssh');
|
2015-11-14 10:34:01 +01:00
|
|
|
});
|
|
|
|
$('#repo-clone-https').click(function () {
|
|
|
|
$('.clone-url').text($(this).data('link'));
|
|
|
|
$('#repo-clone-url').val($(this).data('link'));
|
|
|
|
$(this).addClass('blue');
|
|
|
|
$('#repo-clone-ssh').removeClass('blue');
|
2016-02-01 17:30:28 +01:00
|
|
|
localStorage.setItem('repo-clone-protocol', 'https');
|
2015-11-14 10:34:01 +01:00
|
|
|
});
|
|
|
|
$('#repo-clone-url').click(function () {
|
|
|
|
$(this).select();
|
|
|
|
});
|
2015-10-03 01:58:36 +02:00
|
|
|
|
2015-08-08 16:43:14 +02:00
|
|
|
// Pull request
|
|
|
|
if ($('.repository.compare.pull').length > 0) {
|
2015-11-14 10:34:01 +01:00
|
|
|
initFilterSearchDropdown('.choose.branch .dropdown');
|
2015-08-05 09:24:26 +02:00
|
|
|
}
|
2015-09-05 20:11:05 +02:00
|
|
|
}
|
2015-07-24 15:02:49 +02:00
|
|
|
|
2017-02-21 16:02:10 +01:00
|
|
|
function initProtectedBranch() {
|
|
|
|
$('#protectedBranch').change(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"canPush": true,
|
|
|
|
"branchName": $this.val(),
|
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
if (data.redirect) {
|
|
|
|
window.location.href = data.redirect;
|
|
|
|
} else {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.rm').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"canPush": false,
|
|
|
|
"branchName": $this.data('val'),
|
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
if (data.redirect) {
|
|
|
|
window.location.href = data.redirect;
|
|
|
|
} else {
|
|
|
|
location.reload();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-30 19:26:43 +02:00
|
|
|
function initRepositoryCollaboration() {
|
2016-03-06 00:08:42 +01:00
|
|
|
console.log('initRepositoryCollaboration');
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
// Change collaborator access mode
|
2016-07-30 19:26:43 +02:00
|
|
|
$('.access-mode.menu .item').click(function () {
|
2016-03-06 00:08:42 +01:00
|
|
|
var $menu = $(this).parent();
|
|
|
|
$.post($menu.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"uid": $menu.data('uid'),
|
|
|
|
"mode": $(this).data('value')
|
|
|
|
})
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2017-07-17 04:04:43 +02:00
|
|
|
function initTeamSettings() {
|
|
|
|
// Change team access mode
|
|
|
|
$('.organization.new.team input[name=permission]').change(function () {
|
|
|
|
var val = $('input[name=permission]:checked', '.organization.new.team').val()
|
|
|
|
if (val === 'admin') {
|
|
|
|
$('.organization.new.team .team-units').hide();
|
|
|
|
} else {
|
|
|
|
$('.organization.new.team .team-units').show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function initWikiForm() {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $editArea = $('.repository.wiki textarea#edit_area');
|
|
|
|
if ($editArea.length > 0) {
|
2016-08-11 14:48:08 +02:00
|
|
|
new SimpleMDE({
|
2015-11-26 02:10:25 +01:00
|
|
|
autoDownloadFontAwesome: false,
|
2016-08-18 07:44:07 +02:00
|
|
|
element: $editArea[0],
|
2016-04-19 22:45:28 +02:00
|
|
|
forceSync: true,
|
2015-11-26 02:10:25 +01:00
|
|
|
previewRender: function (plainText, preview) { // Async method
|
|
|
|
setTimeout(function () {
|
2015-12-13 23:55:13 +01:00
|
|
|
// FIXME: still send render request when return back to edit mode
|
2016-08-18 07:44:07 +02:00
|
|
|
$.post($editArea.data('url'), {
|
2015-11-26 02:10:25 +01:00
|
|
|
"_csrf": csrf,
|
|
|
|
"mode": "gfm",
|
2016-08-18 07:44:07 +02:00
|
|
|
"context": $editArea.data('context'),
|
2015-11-26 02:10:25 +01:00
|
|
|
"text": plainText
|
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
preview.innerHTML = '<div class="markdown">' + data + '</div>';
|
|
|
|
emojify.run($('.editor-preview')[0]);
|
2017-02-14 02:13:59 +01:00
|
|
|
$('.editor-preview').autolink();
|
2015-11-26 02:10:25 +01:00
|
|
|
}
|
|
|
|
);
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
return "Loading...";
|
|
|
|
},
|
|
|
|
renderingConfig: {
|
|
|
|
singleLineBreaks: false
|
|
|
|
},
|
2016-08-11 14:48:08 +02:00
|
|
|
indentWithTabs: false,
|
2015-11-26 02:10:25 +01:00
|
|
|
tabSize: 4,
|
2016-08-11 14:48:08 +02:00
|
|
|
spellChecker: false,
|
2015-11-26 02:10:25 +01:00
|
|
|
toolbar: ["bold", "italic", "strikethrough", "|",
|
2016-08-11 14:48:08 +02:00
|
|
|
"heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|",
|
2015-11-26 02:10:25 +01:00
|
|
|
"code", "quote", "|",
|
|
|
|
"unordered-list", "ordered-list", "|",
|
2016-08-11 14:48:08 +02:00
|
|
|
"link", "image", "table", "horizontal-rule", "|",
|
2016-08-18 01:10:07 +02:00
|
|
|
"clean-block", "preview", "fullscreen"]
|
2015-11-26 02:10:25 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var simpleMDEditor;
|
|
|
|
var codeMirrorEditor;
|
2016-08-11 14:48:08 +02:00
|
|
|
|
|
|
|
// For IE
|
|
|
|
String.prototype.endsWith = function (pattern) {
|
|
|
|
var d = this.length - pattern.length;
|
|
|
|
return d >= 0 && this.lastIndexOf(pattern) === d;
|
|
|
|
};
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
// Adding function to get the cursor position in a text field to jQuery object.
|
2016-08-11 14:48:08 +02:00
|
|
|
(function ($, undefined) {
|
|
|
|
$.fn.getCursorPosition = function () {
|
|
|
|
var el = $(this).get(0);
|
|
|
|
var pos = 0;
|
|
|
|
if ('selectionStart' in el) {
|
|
|
|
pos = el.selectionStart;
|
|
|
|
} else if ('selection' in document) {
|
|
|
|
el.focus();
|
|
|
|
var Sel = document.selection.createRange();
|
|
|
|
var SelLength = document.selection.createRange().text.length;
|
|
|
|
Sel.moveStart('character', -el.value.length);
|
|
|
|
pos = Sel.text.length - SelLength;
|
|
|
|
}
|
|
|
|
return pos;
|
|
|
|
}
|
|
|
|
})(jQuery);
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
|
|
|
|
function setSimpleMDE($editArea) {
|
|
|
|
if (codeMirrorEditor) {
|
|
|
|
codeMirrorEditor.toTextArea();
|
|
|
|
codeMirrorEditor = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (simpleMDEditor) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
simpleMDEditor = new SimpleMDE({
|
|
|
|
autoDownloadFontAwesome: false,
|
|
|
|
element: $editArea[0],
|
|
|
|
forceSync: true,
|
|
|
|
renderingConfig: {
|
|
|
|
singleLineBreaks: false
|
|
|
|
},
|
|
|
|
indentWithTabs: false,
|
|
|
|
tabSize: 4,
|
|
|
|
spellChecker: false,
|
|
|
|
previewRender: function (plainText, preview) { // Async method
|
|
|
|
setTimeout(function () {
|
|
|
|
// FIXME: still send render request when return back to edit mode
|
|
|
|
$.post($editArea.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"mode": "gfm",
|
|
|
|
"context": $editArea.data('context'),
|
|
|
|
"text": plainText
|
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
preview.innerHTML = '<div class="markdown">' + data + '</div>';
|
|
|
|
emojify.run($('.editor-preview')[0]);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
}, 0);
|
|
|
|
|
|
|
|
return "Loading...";
|
|
|
|
},
|
|
|
|
toolbar: ["bold", "italic", "strikethrough", "|",
|
|
|
|
"heading-1", "heading-2", "heading-3", "heading-bigger", "heading-smaller", "|",
|
|
|
|
"code", "quote", "|",
|
|
|
|
"unordered-list", "ordered-list", "|",
|
|
|
|
"link", "image", "table", "horizontal-rule", "|",
|
|
|
|
"clean-block", "preview", "fullscreen", "side-by-side"]
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
function setCodeMirror($editArea) {
|
|
|
|
if (simpleMDEditor) {
|
|
|
|
simpleMDEditor.toTextArea();
|
|
|
|
simpleMDEditor = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (codeMirrorEditor) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
codeMirrorEditor = CodeMirror.fromTextArea($editArea[0], {
|
|
|
|
lineNumbers: true
|
|
|
|
});
|
|
|
|
codeMirrorEditor.on("change", function (cm, change) {
|
|
|
|
$editArea.val(cm.getValue());
|
|
|
|
});
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function initEditor() {
|
2016-08-28 10:41:44 +02:00
|
|
|
$('.js-quick-pull-choice-option').change(function () {
|
|
|
|
if ($(this).val() == 'commit-to-new-branch') {
|
|
|
|
$('.quick-pull-branch-name').show();
|
|
|
|
$('.quick-pull-branch-name input').prop('required',true);
|
|
|
|
} else {
|
|
|
|
$('.quick-pull-branch-name').hide();
|
|
|
|
$('.quick-pull-branch-name input').prop('required',false);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var $editFilename = $("#file-name");
|
|
|
|
$editFilename.keyup(function (e) {
|
|
|
|
var $section = $('.breadcrumb span.section');
|
|
|
|
var $divider = $('.breadcrumb div.divider');
|
2016-08-11 14:48:08 +02:00
|
|
|
if (e.keyCode == 8) {
|
|
|
|
if ($(this).getCursorPosition() == 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
if ($section.length > 0) {
|
|
|
|
var value = $section.last().find('a').text();
|
2016-08-11 14:48:08 +02:00
|
|
|
$(this).val(value + $(this).val());
|
|
|
|
$(this)[0].setSelectionRange(value.length, value.length);
|
2016-08-18 07:44:07 +02:00
|
|
|
$section.last().remove();
|
|
|
|
$divider.last().remove();
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (e.keyCode == 191) {
|
|
|
|
var parts = $(this).val().split('/');
|
|
|
|
for (var i = 0; i < parts.length; ++i) {
|
|
|
|
var value = parts[i];
|
|
|
|
if (i < parts.length - 1) {
|
|
|
|
if (value.length) {
|
|
|
|
$('<span class="section"><a href="#">' + value + '</a></span>').insertBefore($(this));
|
|
|
|
$('<div class="divider"> / </div>').insertBefore($(this));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
$(this).val(value);
|
|
|
|
}
|
|
|
|
$(this)[0].setSelectionRange(0, 0);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
var parts = [];
|
|
|
|
$('.breadcrumb span.section').each(function (i, element) {
|
|
|
|
element = $(element);
|
|
|
|
if (element.find('a').length) {
|
|
|
|
parts.push(element.find('a').text());
|
|
|
|
} else {
|
|
|
|
parts.push(element.text());
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if ($(this).val())
|
|
|
|
parts.push($(this).val());
|
2016-08-25 06:35:03 +02:00
|
|
|
$('#tree_path').val(parts.join('/'));
|
2016-08-11 14:48:08 +02:00
|
|
|
}).trigger('keyup');
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var $editArea = $('.repository.editor textarea#edit_area');
|
|
|
|
if (!$editArea.length)
|
2016-08-11 14:48:08 +02:00
|
|
|
return;
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var markdownFileExts = $editArea.data("markdown-file-exts").split(",");
|
|
|
|
var lineWrapExtensions = $editArea.data("line-wrap-extensions").split(",");
|
2016-08-11 14:48:08 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
$editFilename.on("keyup", function (e) {
|
|
|
|
var val = $editFilename.val(), m, mode, spec, extension, extWithDot, previewLink, dataUrl, apiCall;
|
2016-08-11 14:48:08 +02:00
|
|
|
extension = extWithDot = "";
|
|
|
|
if (m = /.+\.([^.]+)$/.exec(val)) {
|
|
|
|
extension = m[1];
|
|
|
|
extWithDot = "." + extension;
|
|
|
|
}
|
|
|
|
|
|
|
|
var info = CodeMirror.findModeByExtension(extension);
|
|
|
|
previewLink = $('a[data-tab=preview]');
|
|
|
|
if (info) {
|
|
|
|
mode = info.mode;
|
|
|
|
spec = info.mime;
|
|
|
|
apiCall = mode;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
apiCall = extension
|
|
|
|
}
|
|
|
|
|
2016-08-12 11:29:29 +02:00
|
|
|
if (previewLink.length && apiCall && previewFileModes && previewFileModes.length && previewFileModes.indexOf(apiCall) >= 0) {
|
2016-08-11 14:48:08 +02:00
|
|
|
dataUrl = previewLink.data('url');
|
|
|
|
previewLink.data('url', dataUrl.replace(/(.*)\/.*/i, '$1/' + mode));
|
|
|
|
previewLink.show();
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
previewLink.hide();
|
|
|
|
}
|
|
|
|
|
|
|
|
// If this file is a Markdown extensions, we will load that editor and return
|
2016-08-12 11:29:29 +02:00
|
|
|
if (markdownFileExts.indexOf(extWithDot) >= 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
if (setSimpleMDE($editArea)) {
|
2016-08-11 14:48:08 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Else we are going to use CodeMirror
|
2016-08-18 07:44:07 +02:00
|
|
|
if (!codeMirrorEditor && !setCodeMirror($editArea)) {
|
2016-08-17 08:06:38 +02:00
|
|
|
return;
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (mode) {
|
2016-08-18 07:44:07 +02:00
|
|
|
codeMirrorEditor.setOption("mode", spec);
|
|
|
|
CodeMirror.autoLoadMode(codeMirrorEditor, mode);
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
if (lineWrapExtensions.indexOf(extWithDot) >= 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
codeMirrorEditor.setOption("lineWrapping", true);
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
|
|
|
else {
|
2016-08-18 07:44:07 +02:00
|
|
|
codeMirrorEditor.setOption("lineWrapping", false);
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
2016-08-31 01:18:40 +02:00
|
|
|
|
|
|
|
// get the filename without any folder
|
|
|
|
var value = $editFilename.val();
|
|
|
|
if (value.length === 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
value = value.split('/');
|
|
|
|
value = value[value.length - 1];
|
|
|
|
|
|
|
|
$.getJSON($editFilename.data('ec-url-prefix')+value, function(editorconfig) {
|
|
|
|
if (editorconfig.indent_style === 'tab') {
|
|
|
|
codeMirrorEditor.setOption("indentWithTabs", true);
|
|
|
|
codeMirrorEditor.setOption('extraKeys', {});
|
|
|
|
} else {
|
|
|
|
codeMirrorEditor.setOption("indentWithTabs", false);
|
|
|
|
// required because CodeMirror doesn't seems to use spaces correctly for {"indentWithTabs": false}:
|
|
|
|
// - https://github.com/codemirror/CodeMirror/issues/988
|
|
|
|
// - https://codemirror.net/doc/manual.html#keymaps
|
|
|
|
codeMirrorEditor.setOption('extraKeys', {
|
|
|
|
Tab: function(cm) {
|
|
|
|
var spaces = Array(parseInt(cm.getOption("indentUnit")) + 1).join(" ");
|
|
|
|
cm.replaceSelection(spaces);
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
codeMirrorEditor.setOption("indentUnit", editorconfig.indent_size || 4);
|
|
|
|
codeMirrorEditor.setOption("tabSize", editorconfig.tab_width || 4);
|
|
|
|
});
|
2016-08-11 14:48:08 +02:00
|
|
|
}).trigger('keyup');
|
|
|
|
}
|
|
|
|
|
2015-09-06 22:31:22 +02:00
|
|
|
function initOrganization() {
|
2015-09-06 16:56:31 +02:00
|
|
|
if ($('.organization').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Options
|
|
|
|
if ($('.organization.settings.options').length > 0) {
|
|
|
|
$('#org_name').keyup(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $prompt = $('#org-name-change-prompt');
|
2015-09-06 16:56:31 +02:00
|
|
|
if ($(this).val().toString().toLowerCase() != $(this).data('org-name').toString().toLowerCase()) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.show();
|
2015-09-06 16:56:31 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.hide();
|
2015-09-06 16:56:31 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-09-06 22:31:22 +02:00
|
|
|
}
|
2015-09-06 16:56:31 +02:00
|
|
|
|
2016-03-05 06:51:51 +01:00
|
|
|
function initUserSettings() {
|
|
|
|
console.log('initUserSettings');
|
2015-09-06 16:56:31 +02:00
|
|
|
|
2015-09-06 22:31:22 +02:00
|
|
|
// Options
|
|
|
|
if ($('.user.settings.profile').length > 0) {
|
|
|
|
$('#username').keyup(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $prompt = $('#name-change-prompt');
|
2015-09-06 22:31:22 +02:00
|
|
|
if ($(this).val().toString().toLowerCase() != $(this).data('name').toString().toLowerCase()) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.show();
|
2015-09-06 22:31:22 +02:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$prompt.hide();
|
2015-09-06 22:31:22 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-09-06 16:56:31 +02:00
|
|
|
}
|
|
|
|
|
2015-08-28 17:36:13 +02:00
|
|
|
function initWebhook() {
|
|
|
|
if ($('.new.webhook').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$('.events.checkbox input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('.events.fields').show();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('.non-events.checkbox input').change(function () {
|
|
|
|
if ($(this).is(':checked')) {
|
|
|
|
$('.events.fields').hide();
|
|
|
|
}
|
|
|
|
});
|
2015-12-05 19:24:13 +01:00
|
|
|
|
|
|
|
// Test delivery
|
|
|
|
$('#test-delivery').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$this.addClass('loading disabled');
|
|
|
|
$.post($this.data('link'), {
|
|
|
|
"_csrf": csrf
|
|
|
|
}).done(
|
|
|
|
setTimeout(function () {
|
|
|
|
window.location.href = $this.data('redirect');
|
|
|
|
}, 5000)
|
|
|
|
)
|
|
|
|
});
|
2015-08-28 17:36:13 +02:00
|
|
|
}
|
|
|
|
|
2015-09-10 23:11:41 +02:00
|
|
|
function initAdmin() {
|
|
|
|
if ($('.admin').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-09-13 15:51:51 +02:00
|
|
|
// New user
|
2015-09-13 17:07:21 +02:00
|
|
|
if ($('.admin.new.user').length > 0 ||
|
|
|
|
$('.admin.edit.user').length > 0) {
|
2015-09-13 15:51:51 +02:00
|
|
|
$('#login_type').change(function () {
|
|
|
|
if ($(this).val().substring(0, 1) == '0') {
|
|
|
|
$('#login_name').removeAttr('required');
|
|
|
|
$('.non-local').hide();
|
|
|
|
$('.local').show();
|
|
|
|
$('#user_name').focus();
|
2015-09-13 17:07:21 +02:00
|
|
|
|
2015-10-03 01:58:36 +02:00
|
|
|
if ($(this).data('password') == "required") {
|
2015-09-13 17:07:21 +02:00
|
|
|
$('#password').attr('required', 'required');
|
|
|
|
}
|
|
|
|
|
2015-09-13 15:51:51 +02:00
|
|
|
} else {
|
|
|
|
$('#login_name').attr('required', 'required');
|
|
|
|
$('.non-local').show();
|
|
|
|
$('.local').hide();
|
|
|
|
$('#login_name').focus();
|
2015-09-13 17:07:21 +02:00
|
|
|
|
|
|
|
$('#password').removeAttr('required');
|
2015-09-13 15:51:51 +02:00
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2016-07-08 01:25:09 +02:00
|
|
|
function onSecurityProtocolChange() {
|
|
|
|
if ($('#security_protocol').val() > 0) {
|
|
|
|
$('.has-tls').show();
|
|
|
|
} else {
|
|
|
|
$('.has-tls').hide();
|
|
|
|
}
|
|
|
|
}
|
2015-09-13 15:51:51 +02:00
|
|
|
|
2017-05-01 15:26:53 +02:00
|
|
|
function onOAuth2Change() {
|
|
|
|
$('.open_id_connect_auto_discovery_url, .oauth2_use_custom_url').hide();
|
|
|
|
$('.open_id_connect_auto_discovery_url input[required]').removeAttr('required');
|
|
|
|
|
|
|
|
var provider = $('#oauth2_provider').val();
|
|
|
|
switch (provider) {
|
|
|
|
case 'github':
|
|
|
|
case 'gitlab':
|
|
|
|
$('.oauth2_use_custom_url').show();
|
|
|
|
break;
|
|
|
|
case 'openidConnect':
|
|
|
|
$('.open_id_connect_auto_discovery_url input').attr('required', 'required');
|
|
|
|
$('.open_id_connect_auto_discovery_url').show();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
onOAuth2UseCustomURLChange();
|
|
|
|
}
|
|
|
|
|
|
|
|
function onOAuth2UseCustomURLChange() {
|
|
|
|
var provider = $('#oauth2_provider').val();
|
|
|
|
$('.oauth2_use_custom_url_field').hide();
|
|
|
|
$('.oauth2_use_custom_url_field input[required]').removeAttr('required');
|
|
|
|
|
|
|
|
if ($('#oauth2_use_custom_url').is(':checked')) {
|
|
|
|
if (!$('#oauth2_token_url').val()) {
|
|
|
|
$('#oauth2_token_url').val($('#' + provider + '_token_url').val());
|
|
|
|
}
|
|
|
|
if (!$('#oauth2_auth_url').val()) {
|
|
|
|
$('#oauth2_auth_url').val($('#' + provider + '_auth_url').val());
|
|
|
|
}
|
|
|
|
if (!$('#oauth2_profile_url').val()) {
|
|
|
|
$('#oauth2_profile_url').val($('#' + provider + '_profile_url').val());
|
|
|
|
}
|
|
|
|
if (!$('#oauth2_email_url').val()) {
|
|
|
|
$('#oauth2_email_url').val($('#' + provider + '_email_url').val());
|
|
|
|
}
|
|
|
|
switch (provider) {
|
|
|
|
case 'github':
|
|
|
|
$('.oauth2_token_url input, .oauth2_auth_url input, .oauth2_profile_url input, .oauth2_email_url input').attr('required', 'required');
|
|
|
|
$('.oauth2_token_url, .oauth2_auth_url, .oauth2_profile_url, .oauth2_email_url').show();
|
|
|
|
break;
|
|
|
|
case 'gitlab':
|
|
|
|
$('.oauth2_token_url input, .oauth2_auth_url input, .oauth2_profile_url input').attr('required', 'required');
|
|
|
|
$('.oauth2_token_url, .oauth2_auth_url, .oauth2_profile_url').show();
|
|
|
|
$('#oauth2_email_url').val('');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-09-10 23:11:41 +02:00
|
|
|
// New authentication
|
|
|
|
if ($('.admin.new.authentication').length > 0) {
|
|
|
|
$('#auth_type').change(function () {
|
2017-02-22 08:14:37 +01:00
|
|
|
$('.ldap, .dldap, .smtp, .pam, .oauth2, .has-tls').hide();
|
2017-01-14 14:07:43 +01:00
|
|
|
|
2017-02-22 08:14:37 +01:00
|
|
|
$('.ldap input[required], .dldap input[required], .smtp input[required], .pam input[required], .oauth2 input[required] .has-tls input[required]').removeAttr('required');
|
2015-09-13 15:51:51 +02:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var authType = $(this).val();
|
|
|
|
switch (authType) {
|
2015-09-10 23:11:41 +02:00
|
|
|
case '2': // LDAP
|
|
|
|
$('.ldap').show();
|
2017-02-04 07:02:24 +01:00
|
|
|
$('.ldap div.required:not(.dldap) input').attr('required', 'required');
|
2015-09-10 23:11:41 +02:00
|
|
|
break;
|
|
|
|
case '3': // SMTP
|
|
|
|
$('.smtp').show();
|
2016-07-08 01:25:09 +02:00
|
|
|
$('.has-tls').show();
|
2017-01-14 14:07:43 +01:00
|
|
|
$('.smtp div.required input, .has-tls').attr('required', 'required');
|
2015-09-10 23:11:41 +02:00
|
|
|
break;
|
|
|
|
case '4': // PAM
|
|
|
|
$('.pam').show();
|
2017-01-14 14:07:43 +01:00
|
|
|
$('.pam input').attr('required', 'required');
|
2015-09-10 23:11:41 +02:00
|
|
|
break;
|
|
|
|
case '5': // LDAP
|
|
|
|
$('.dldap').show();
|
2017-02-04 07:02:24 +01:00
|
|
|
$('.dldap div.required:not(.ldap) input').attr('required', 'required');
|
2015-09-10 23:11:41 +02:00
|
|
|
break;
|
2017-02-22 08:14:37 +01:00
|
|
|
case '6': // OAuth2
|
|
|
|
$('.oauth2').show();
|
2017-05-01 15:26:53 +02:00
|
|
|
$('.oauth2 div.required:not(.oauth2_use_custom_url,.oauth2_use_custom_url_field,.open_id_connect_auto_discovery_url) input').attr('required', 'required');
|
|
|
|
onOAuth2Change();
|
2017-02-22 08:14:37 +01:00
|
|
|
break;
|
2015-09-10 23:11:41 +02:00
|
|
|
}
|
2016-08-18 07:44:07 +02:00
|
|
|
if (authType == '2' || authType == '5') {
|
2016-07-08 01:25:09 +02:00
|
|
|
onSecurityProtocolChange()
|
|
|
|
}
|
2015-09-10 23:11:41 +02:00
|
|
|
});
|
2017-01-14 14:07:43 +01:00
|
|
|
$('#auth_type').change();
|
2017-05-01 15:26:53 +02:00
|
|
|
$('#security_protocol').change(onSecurityProtocolChange);
|
|
|
|
$('#oauth2_provider').change(onOAuth2Change);
|
|
|
|
$('#oauth2_use_custom_url').change(onOAuth2UseCustomURLChange);
|
2016-07-08 01:25:09 +02:00
|
|
|
}
|
|
|
|
// Edit authentication
|
|
|
|
if ($('.admin.edit.authentication').length > 0) {
|
2016-08-18 07:44:07 +02:00
|
|
|
var authType = $('#auth_type').val();
|
|
|
|
if (authType == '2' || authType == '5') {
|
2016-07-08 01:25:09 +02:00
|
|
|
$('#security_protocol').change(onSecurityProtocolChange);
|
2017-05-01 15:26:53 +02:00
|
|
|
} else if (authType == '6') {
|
|
|
|
$('#oauth2_provider').change(onOAuth2Change);
|
|
|
|
$('#oauth2_use_custom_url').change(onOAuth2UseCustomURLChange);
|
|
|
|
onOAuth2Change();
|
2016-07-08 01:25:09 +02:00
|
|
|
}
|
2015-09-10 23:11:41 +02:00
|
|
|
}
|
2015-12-05 07:09:14 +01:00
|
|
|
|
|
|
|
// Notice
|
|
|
|
if ($('.admin.notice')) {
|
2016-08-18 07:44:07 +02:00
|
|
|
var $detailModal = $('#detail-modal');
|
2015-12-05 07:09:14 +01:00
|
|
|
|
|
|
|
// Attach view detail modals
|
|
|
|
$('.view-detail').click(function () {
|
2016-08-18 07:44:07 +02:00
|
|
|
$detailModal.find('.content p').text($(this).data('content'));
|
|
|
|
$detailModal.modal('show');
|
2015-12-05 07:09:14 +01:00
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
|
|
|
// Select actions
|
|
|
|
var $checkboxes = $('.select.table .ui.checkbox');
|
|
|
|
$('.select.action').click(function () {
|
|
|
|
switch ($(this).data('action')) {
|
|
|
|
case 'select-all':
|
|
|
|
$checkboxes.checkbox('check');
|
|
|
|
break;
|
|
|
|
case 'deselect-all':
|
|
|
|
$checkboxes.checkbox('uncheck');
|
|
|
|
break;
|
|
|
|
case 'inverse':
|
|
|
|
$checkboxes.checkbox('toggle');
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$('#delete-selection').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$this.addClass("loading disabled");
|
|
|
|
var ids = [];
|
|
|
|
$checkboxes.each(function () {
|
|
|
|
if ($(this).checkbox('is checked')) {
|
|
|
|
ids.push($(this).data('id'));
|
|
|
|
}
|
|
|
|
});
|
|
|
|
$.post($this.data('link'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"ids": ids
|
|
|
|
}).done(function () {
|
|
|
|
window.location.href = $this.data('redirect');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
2015-09-10 23:11:41 +02:00
|
|
|
}
|
|
|
|
|
2015-11-11 22:19:28 +01:00
|
|
|
function buttonsClickOnEnter() {
|
2015-11-14 10:34:01 +01:00
|
|
|
$('.ui.button').keypress(function (e) {
|
2015-11-12 00:44:39 +01:00
|
|
|
if (e.keyCode == 13 || e.keyCode == 32) // enter key or space bar
|
2015-11-11 22:19:28 +01:00
|
|
|
$(this).click();
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-22 07:32:09 +01:00
|
|
|
function hideWhenLostFocus(body, parent) {
|
|
|
|
$(document).click(function (e) {
|
|
|
|
var target = e.target;
|
|
|
|
if (!$(target).is(body) && !$(target).parents().is(parent)) {
|
|
|
|
$(body).hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2015-11-17 08:18:05 +01:00
|
|
|
function searchUsers() {
|
|
|
|
if (!$('#search-user-box .results').length) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var $searchUserBox = $('#search-user-box');
|
|
|
|
var $results = $searchUserBox.find('.results');
|
|
|
|
$searchUserBox.keyup(function () {
|
2015-11-17 08:18:05 +01:00
|
|
|
var $this = $(this);
|
|
|
|
var keyword = $this.find('input').val();
|
|
|
|
if (keyword.length < 2) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-17 08:18:05 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$.ajax({
|
|
|
|
url: suburl + '/api/v1/users/search?q=' + keyword,
|
|
|
|
dataType: "json",
|
|
|
|
success: function (response) {
|
|
|
|
var notEmpty = function (str) {
|
|
|
|
return str && str.length > 0;
|
|
|
|
};
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.html('');
|
2015-11-17 08:18:05 +01:00
|
|
|
|
|
|
|
if (response.ok && response.data.length) {
|
|
|
|
var html = '';
|
|
|
|
$.each(response.data, function (i, item) {
|
2016-12-07 12:21:16 +01:00
|
|
|
html += '<div class="item"><img class="ui avatar image" src="' + item.avatar_url + '"><span class="username">' + item.login + '</span>';
|
2015-11-17 08:18:05 +01:00
|
|
|
if (notEmpty(item.full_name)) {
|
|
|
|
html += ' (' + item.full_name + ')';
|
|
|
|
}
|
|
|
|
html += '</div>';
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.html(html);
|
2015-11-17 08:18:05 +01:00
|
|
|
$this.find('.results .item').click(function () {
|
|
|
|
$this.find('input').val($(this).find('.username').text());
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-17 08:18:05 +01:00
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.show();
|
2015-11-17 08:18:05 +01:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-17 08:18:05 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$searchUserBox.find('input').focus(function () {
|
|
|
|
$searchUserBox.keyup();
|
2015-11-17 08:18:05 +01:00
|
|
|
});
|
2015-11-22 07:32:09 +01:00
|
|
|
hideWhenLostFocus('#search-user-box .results', '#search-user-box');
|
|
|
|
}
|
|
|
|
|
2015-11-22 08:29:20 +01:00
|
|
|
// FIXME: merge common parts in two functions
|
2015-11-22 07:32:09 +01:00
|
|
|
function searchRepositories() {
|
|
|
|
if (!$('#search-repo-box .results').length) {
|
|
|
|
return;
|
|
|
|
}
|
2015-11-17 08:18:05 +01:00
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
var $searchRepoBox = $('#search-repo-box');
|
|
|
|
var $results = $searchRepoBox.find('.results');
|
|
|
|
$searchRepoBox.keyup(function () {
|
2015-11-22 07:32:09 +01:00
|
|
|
var $this = $(this);
|
|
|
|
var keyword = $this.find('input').val();
|
|
|
|
if (keyword.length < 2) {
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-22 07:32:09 +01:00
|
|
|
return;
|
2015-11-17 08:18:05 +01:00
|
|
|
}
|
2015-11-22 07:32:09 +01:00
|
|
|
|
|
|
|
$.ajax({
|
2016-08-18 07:44:07 +02:00
|
|
|
url: suburl + '/api/v1/repos/search?q=' + keyword + "&uid=" + $searchRepoBox.data('uid'),
|
2015-11-22 07:32:09 +01:00
|
|
|
dataType: "json",
|
|
|
|
success: function (response) {
|
|
|
|
var notEmpty = function (str) {
|
|
|
|
return str && str.length > 0;
|
|
|
|
};
|
|
|
|
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.html('');
|
2015-11-22 07:32:09 +01:00
|
|
|
|
|
|
|
if (response.ok && response.data.length) {
|
|
|
|
var html = '';
|
|
|
|
$.each(response.data, function (i, item) {
|
|
|
|
html += '<div class="item"><i class="icon octicon octicon-repo"></i> <span class="fullname">' + item.full_name + '</span></div>';
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.html(html);
|
2015-11-22 07:32:09 +01:00
|
|
|
$this.find('.results .item').click(function () {
|
|
|
|
$this.find('input').val($(this).find('.fullname').text().split("/")[1]);
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-22 07:32:09 +01:00
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.show();
|
2015-11-22 07:32:09 +01:00
|
|
|
} else {
|
2016-08-18 07:44:07 +02:00
|
|
|
$results.hide();
|
2015-11-22 07:32:09 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
});
|
2016-08-18 07:44:07 +02:00
|
|
|
$searchRepoBox.find('input').focus(function () {
|
|
|
|
$searchRepoBox.keyup();
|
2015-11-17 08:18:05 +01:00
|
|
|
});
|
2015-11-22 08:29:20 +01:00
|
|
|
hideWhenLostFocus('#search-repo-box .results', '#search-repo-box');
|
2015-11-17 08:18:05 +01:00
|
|
|
}
|
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function initCodeView() {
|
|
|
|
if ($('.code-view .linenums').length > 0) {
|
|
|
|
$(document).on('click', '.lines-num span', function (e) {
|
|
|
|
var $select = $(this);
|
|
|
|
var $list = $select.parent().siblings('.lines-code').find('ol.linenums > li');
|
|
|
|
selectRange($list, $list.filter('[rel=' + $select.attr('id') + ']'), (e.shiftKey ? $list.filter('.active').eq(0) : null));
|
|
|
|
deSelect();
|
|
|
|
});
|
|
|
|
|
|
|
|
$(window).on('hashchange', function (e) {
|
|
|
|
var m = window.location.hash.match(/^#(L\d+)\-(L\d+)$/);
|
|
|
|
var $list = $('.code-view ol.linenums > li');
|
|
|
|
var $first;
|
|
|
|
if (m) {
|
|
|
|
$first = $list.filter('.' + m[1]);
|
|
|
|
selectRange($list, $first, $list.filter('.' + m[2]));
|
|
|
|
$("html, body").scrollTop($first.offset().top - 200);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m = window.location.hash.match(/^#(L\d+)$/);
|
|
|
|
if (m) {
|
|
|
|
$first = $list.filter('.' + m[1]);
|
|
|
|
selectRange($list, $first);
|
|
|
|
$("html, body").scrollTop($first.offset().top - 200);
|
|
|
|
}
|
|
|
|
}).trigger('hashchange');
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-07 21:12:13 +01:00
|
|
|
$(document).ready(function () {
|
2015-07-24 17:13:42 +02:00
|
|
|
csrf = $('meta[name=_csrf]').attr("content");
|
2015-09-06 12:57:25 +02:00
|
|
|
suburl = $('meta[name=_suburl]').attr("content");
|
2015-07-24 17:13:42 +02:00
|
|
|
|
2015-08-14 18:42:43 +02:00
|
|
|
// Show exact time
|
|
|
|
$('.time-since').each(function () {
|
2016-03-05 06:51:51 +01:00
|
|
|
$(this).addClass('poping up').attr('data-content', $(this).attr('title')).attr('data-variation', 'inverted tiny').attr('title', '');
|
2015-08-14 18:42:43 +02:00
|
|
|
});
|
|
|
|
|
2015-07-07 19:09:03 +02:00
|
|
|
// Semantic UI modules.
|
|
|
|
$('.dropdown').dropdown();
|
2015-07-24 10:42:47 +02:00
|
|
|
$('.jump.dropdown').dropdown({
|
2015-08-10 16:38:21 +02:00
|
|
|
action: 'hide',
|
2015-08-11 06:44:14 +02:00
|
|
|
onShow: function () {
|
2015-08-10 16:38:21 +02:00
|
|
|
$('.poping.up').popup('hide');
|
|
|
|
}
|
2015-07-23 22:50:05 +02:00
|
|
|
});
|
2015-07-07 19:09:03 +02:00
|
|
|
$('.slide.up.dropdown').dropdown({
|
2015-03-07 21:12:13 +01:00
|
|
|
transition: 'slide up'
|
|
|
|
});
|
2015-12-05 07:09:14 +01:00
|
|
|
$('.upward.dropdown').dropdown({
|
|
|
|
direction: 'upward'
|
|
|
|
});
|
2015-07-08 13:47:56 +02:00
|
|
|
$('.ui.accordion').accordion();
|
|
|
|
$('.ui.checkbox').checkbox();
|
2015-08-03 11:42:09 +02:00
|
|
|
$('.ui.progress').progress({
|
|
|
|
showActivity: false
|
|
|
|
});
|
2015-07-09 07:17:48 +02:00
|
|
|
$('.poping.up').popup();
|
2015-08-10 16:38:21 +02:00
|
|
|
$('.top.menu .poping.up').popup({
|
2015-08-11 06:44:14 +02:00
|
|
|
onShow: function () {
|
|
|
|
if ($('.top.menu .menu.transition').hasClass('visible')) {
|
2015-08-10 16:38:21 +02:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-08-27 17:06:14 +02:00
|
|
|
$('.tabular.menu .item').tab();
|
2015-11-13 18:05:48 +01:00
|
|
|
$('.tabable.menu .item').tab();
|
2015-08-27 17:06:14 +02:00
|
|
|
|
|
|
|
$('.toggle.button').click(function () {
|
|
|
|
$($(this).data('target')).slideToggle(100);
|
|
|
|
});
|
2015-07-07 19:09:03 +02:00
|
|
|
|
2017-01-18 02:18:55 +01:00
|
|
|
// make table <tr> element clickable like a link
|
|
|
|
$('tr[data-href]').click(function(event) {
|
|
|
|
window.location = $(this).data('href');
|
|
|
|
});
|
|
|
|
|
2015-08-27 17:58:50 +02:00
|
|
|
// Highlight JS
|
2015-08-28 08:24:05 +02:00
|
|
|
if (typeof hljs != 'undefined') {
|
|
|
|
hljs.initHighlightingOnLoad();
|
|
|
|
}
|
2015-08-27 17:58:50 +02:00
|
|
|
|
2015-08-11 11:54:00 +02:00
|
|
|
// Dropzone
|
2016-08-18 07:44:07 +02:00
|
|
|
var $dropzone = $('#dropzone');
|
|
|
|
if ($dropzone.length > 0) {
|
2015-08-11 11:54:00 +02:00
|
|
|
// Disable auto discover for all elements:
|
|
|
|
Dropzone.autoDiscover = false;
|
|
|
|
|
|
|
|
var filenameDict = {};
|
2016-08-18 07:44:07 +02:00
|
|
|
$dropzone.dropzone({
|
|
|
|
url: $dropzone.data('upload-url'),
|
2015-08-11 11:54:00 +02:00
|
|
|
headers: {"X-Csrf-Token": csrf},
|
2016-08-18 07:44:07 +02:00
|
|
|
maxFiles: $dropzone.data('max-file'),
|
|
|
|
maxFilesize: $dropzone.data('max-size'),
|
|
|
|
acceptedFiles: ($dropzone.data('accepts') === '*/*') ? null : $dropzone.data('accepts'),
|
2015-08-11 11:54:00 +02:00
|
|
|
addRemoveLinks: true,
|
2016-08-18 07:44:07 +02:00
|
|
|
dictDefaultMessage: $dropzone.data('default-message'),
|
|
|
|
dictInvalidFileType: $dropzone.data('invalid-input-type'),
|
|
|
|
dictFileTooBig: $dropzone.data('file-too-big'),
|
|
|
|
dictRemoveFile: $dropzone.data('remove-file'),
|
2015-08-11 11:54:00 +02:00
|
|
|
init: function () {
|
|
|
|
this.on("success", function (file, data) {
|
|
|
|
filenameDict[file.name] = data.uuid;
|
2016-08-11 14:48:08 +02:00
|
|
|
var input = $('<input id="' + data.uuid + '" name="files" type="hidden">').val(data.uuid);
|
|
|
|
$('.files').append(input);
|
2015-09-05 20:11:05 +02:00
|
|
|
});
|
2015-08-11 11:54:00 +02:00
|
|
|
this.on("removedfile", function (file) {
|
2015-08-11 17:24:40 +02:00
|
|
|
if (file.name in filenameDict) {
|
|
|
|
$('#' + filenameDict[file.name]).remove();
|
|
|
|
}
|
2016-08-18 07:44:07 +02:00
|
|
|
if ($dropzone.data('remove-url') && $dropzone.data('csrf')) {
|
|
|
|
$.post($dropzone.data('remove-url'), {
|
|
|
|
file: filenameDict[file.name],
|
|
|
|
_csrf: $dropzone.data('csrf')
|
|
|
|
});
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
2015-08-11 11:54:00 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|
2015-08-09 09:23:02 +02:00
|
|
|
|
2015-09-05 20:11:05 +02:00
|
|
|
// Emojify
|
|
|
|
emojify.setConfig({
|
2015-12-14 12:04:24 +01:00
|
|
|
img_dir: suburl + '/img/emoji',
|
|
|
|
ignore_emoticons: true
|
2015-09-05 20:11:05 +02:00
|
|
|
});
|
2016-03-03 01:18:58 +01:00
|
|
|
var hasEmoji = document.getElementsByClassName('has-emoji');
|
2016-03-05 06:51:51 +01:00
|
|
|
for (var i = 0; i < hasEmoji.length; i++) {
|
|
|
|
emojify.run(hasEmoji[i]);
|
2016-03-03 01:18:58 +01:00
|
|
|
}
|
2015-09-05 20:11:05 +02:00
|
|
|
|
2015-10-03 01:58:36 +02:00
|
|
|
// Clipboard JS
|
|
|
|
var clipboard = new Clipboard('.clipboard');
|
|
|
|
clipboard.on('success', function (e) {
|
|
|
|
e.clearSelection();
|
|
|
|
|
|
|
|
$('#' + e.trigger.getAttribute('id')).popup('destroy');
|
|
|
|
e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-success'))
|
|
|
|
$('#' + e.trigger.getAttribute('id')).popup('show');
|
|
|
|
e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-original'))
|
|
|
|
});
|
|
|
|
|
|
|
|
clipboard.on('error', function (e) {
|
|
|
|
$('#' + e.trigger.getAttribute('id')).popup('destroy');
|
|
|
|
e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-error'))
|
|
|
|
$('#' + e.trigger.getAttribute('id')).popup('show');
|
|
|
|
e.trigger.setAttribute('data-content', e.trigger.getAttribute('data-original'))
|
|
|
|
});
|
|
|
|
|
2015-08-05 14:23:08 +02:00
|
|
|
// Helpers.
|
|
|
|
$('.delete-button').click(function () {
|
|
|
|
var $this = $(this);
|
2017-04-26 15:10:43 +02:00
|
|
|
var filter = "";
|
|
|
|
if ($this.attr("id")) {
|
|
|
|
filter += "#"+$this.attr("id")
|
|
|
|
}
|
|
|
|
$('.delete.modal'+filter).modal({
|
2015-08-05 14:23:08 +02:00
|
|
|
closable: false,
|
|
|
|
onApprove: function () {
|
2015-08-18 20:49:44 +02:00
|
|
|
if ($this.data('type') == "form") {
|
|
|
|
$($this.data('form')).submit();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-08-05 14:23:08 +02:00
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"id": $this.data("id")
|
|
|
|
}).done(function (data) {
|
|
|
|
window.location.href = data.redirect;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).modal('show');
|
|
|
|
return false;
|
|
|
|
});
|
2015-08-18 21:36:16 +02:00
|
|
|
$('.show-panel.button').click(function () {
|
|
|
|
$($(this).data('panel')).show();
|
|
|
|
});
|
2015-08-29 21:21:59 +02:00
|
|
|
$('.show-modal.button').click(function () {
|
|
|
|
$($(this).data('modal')).modal('show');
|
|
|
|
});
|
2016-07-30 19:26:43 +02:00
|
|
|
$('.delete-post.button').click(function () {
|
2016-03-05 06:51:51 +01:00
|
|
|
var $this = $(this);
|
2016-07-30 19:26:43 +02:00
|
|
|
$.post($this.data('request-url'), {
|
2016-03-05 06:51:51 +01:00
|
|
|
"_csrf": csrf
|
2016-07-30 19:26:43 +02:00
|
|
|
}).done(function () {
|
2016-03-05 06:51:51 +01:00
|
|
|
window.location.href = $this.data('done-url');
|
|
|
|
});
|
|
|
|
});
|
2015-08-05 14:23:08 +02:00
|
|
|
|
2015-11-14 10:34:01 +01:00
|
|
|
// Set anchor.
|
|
|
|
$('.markdown').each(function () {
|
|
|
|
var headers = {};
|
|
|
|
$(this).find('h1, h2, h3, h4, h5, h6').each(function () {
|
|
|
|
var node = $(this);
|
2016-12-31 11:06:09 +01:00
|
|
|
var val = encodeURIComponent(node.text().toLowerCase().replace(/[^\u00C0-\u1FFF\u2C00-\uD7FF\w\- ]/g, '').replace(/[ ]/g, '-'));
|
2015-11-14 10:34:01 +01:00
|
|
|
var name = val;
|
|
|
|
if (headers[val] > 0) {
|
|
|
|
name = val + '-' + headers[val];
|
|
|
|
}
|
|
|
|
if (headers[val] == undefined) {
|
|
|
|
headers[val] = 1;
|
|
|
|
} else {
|
|
|
|
headers[val] += 1;
|
|
|
|
}
|
|
|
|
node = node.wrap('<div id="' + name + '" class="anchor-wrap" ></div>');
|
|
|
|
node.append('<a class="anchor" href="#' + name + '"><span class="octicon octicon-link"></span></a>');
|
|
|
|
});
|
|
|
|
});
|
2017-02-14 02:13:59 +01:00
|
|
|
$('.markdown').autolink();
|
2015-11-14 10:34:01 +01:00
|
|
|
|
2017-03-15 02:10:35 +01:00
|
|
|
$('.issue-checkbox').click(function() {
|
|
|
|
var numChecked = $('.issue-checkbox').children('input:checked').length;
|
|
|
|
if (numChecked > 0) {
|
|
|
|
$('.issue-filters').hide();
|
|
|
|
$('.issue-actions').show();
|
|
|
|
} else {
|
|
|
|
$('.issue-filters').show();
|
|
|
|
$('.issue-actions').hide();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
|
|
|
|
$('.issue-action').click(function () {
|
|
|
|
var action = this.dataset.action
|
|
|
|
var elementId = this.dataset.elementId
|
|
|
|
var issueIDs = $('.issue-checkbox').children('input:checked').map(function() {
|
|
|
|
return this.dataset.issueId;
|
|
|
|
}).get().join();
|
|
|
|
var url = this.dataset.url
|
|
|
|
updateIssuesMeta(url, action, issueIDs, elementId, function() {
|
|
|
|
location.reload();
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2015-11-11 22:19:28 +01:00
|
|
|
buttonsClickOnEnter();
|
2015-11-17 08:18:05 +01:00
|
|
|
searchUsers();
|
2015-11-22 07:32:09 +01:00
|
|
|
searchRepositories();
|
2015-11-17 08:18:05 +01:00
|
|
|
|
2015-08-10 12:57:57 +02:00
|
|
|
initCommentForm();
|
2015-07-07 19:09:03 +02:00
|
|
|
initInstall();
|
2015-07-24 15:02:49 +02:00
|
|
|
initRepository();
|
2016-08-11 14:48:08 +02:00
|
|
|
initWikiForm();
|
|
|
|
initEditForm();
|
|
|
|
initEditor();
|
2015-09-06 16:56:31 +02:00
|
|
|
initOrganization();
|
2017-02-21 16:02:10 +01:00
|
|
|
initProtectedBranch();
|
2015-08-28 17:36:13 +02:00
|
|
|
initWebhook();
|
2015-09-10 23:11:41 +02:00
|
|
|
initAdmin();
|
2016-08-18 07:44:07 +02:00
|
|
|
initCodeView();
|
2017-05-09 02:31:30 +02:00
|
|
|
initDashboardSearch();
|
2017-07-17 04:04:43 +02:00
|
|
|
initTeamSettings();
|
2016-08-18 07:44:07 +02:00
|
|
|
|
|
|
|
// Repo clone url.
|
|
|
|
if ($('#repo-clone-url').length > 0) {
|
|
|
|
switch (localStorage.getItem('repo-clone-protocol')) {
|
|
|
|
case 'ssh':
|
|
|
|
if ($('#repo-clone-ssh').click().length === 0) {
|
|
|
|
$('#repo-clone-https').click();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
$('#repo-clone-https').click();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2016-03-05 06:51:51 +01:00
|
|
|
|
|
|
|
var routes = {
|
2016-03-06 00:08:42 +01:00
|
|
|
'div.user.settings': initUserSettings,
|
|
|
|
'div.repository.settings.collaboration': initRepositoryCollaboration
|
2016-03-05 06:51:51 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
var selector;
|
|
|
|
for (selector in routes) {
|
|
|
|
if ($(selector).length > 0) {
|
|
|
|
routes[selector]();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2015-11-14 10:34:01 +01:00
|
|
|
});
|
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function changeHash(hash) {
|
|
|
|
if (history.pushState) {
|
|
|
|
history.pushState(null, null, hash);
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
else {
|
|
|
|
location.hash = hash;
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
2015-11-14 10:34:01 +01:00
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function deSelect() {
|
|
|
|
if (window.getSelection) {
|
|
|
|
window.getSelection().removeAllRanges();
|
|
|
|
} else {
|
|
|
|
document.selection.empty();
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
}
|
2015-11-14 10:34:01 +01:00
|
|
|
|
2016-08-11 14:48:08 +02:00
|
|
|
function selectRange($list, $select, $from) {
|
|
|
|
$list.removeClass('active');
|
|
|
|
if ($from) {
|
|
|
|
var a = parseInt($select.attr('rel').substr(1));
|
|
|
|
var b = parseInt($from.attr('rel').substr(1));
|
|
|
|
var c;
|
|
|
|
if (a != b) {
|
|
|
|
if (a > b) {
|
|
|
|
c = a;
|
|
|
|
a = b;
|
|
|
|
b = c;
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
var classes = [];
|
|
|
|
for (var i = a; i <= b; i++) {
|
|
|
|
classes.push('.L' + i);
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
$list.filter(classes.join(',')).addClass('active');
|
|
|
|
changeHash('#L' + a + '-' + 'L' + b);
|
|
|
|
return
|
|
|
|
}
|
2015-11-14 10:34:01 +01:00
|
|
|
}
|
2016-08-11 14:48:08 +02:00
|
|
|
$select.addClass('active');
|
|
|
|
changeHash('#' + $select.attr('rel'));
|
|
|
|
}
|
|
|
|
|
2016-07-30 19:26:43 +02:00
|
|
|
$(function () {
|
|
|
|
if ($('.user.signin').length > 0) return;
|
|
|
|
$('form').areYouSure();
|
2017-01-30 06:57:47 +01:00
|
|
|
|
2017-02-09 10:58:05 +01:00
|
|
|
// Parse SSH Key
|
|
|
|
$("#ssh-key-content").on('change paste keyup',function(){
|
2017-02-16 05:16:42 +01:00
|
|
|
var arrays = $(this).val().split(" ");
|
|
|
|
var $title = $("#ssh-key-title")
|
|
|
|
if ($title.val() === "" && arrays.length === 3 && arrays[2] !== "") {
|
|
|
|
$title.val(arrays[2]);
|
2017-02-09 10:58:05 +01:00
|
|
|
}
|
|
|
|
});
|
2016-04-19 22:45:28 +02:00
|
|
|
});
|
2017-05-09 02:31:30 +02:00
|
|
|
|
|
|
|
function initDashboardSearch() {
|
|
|
|
var el = document.getElementById('dashboard-repo-search');
|
|
|
|
if (!el) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
new Vue({
|
2017-07-15 16:22:26 +02:00
|
|
|
delimiters: ['${', '}'],
|
2017-05-09 02:31:30 +02:00
|
|
|
el: el,
|
|
|
|
|
|
|
|
data: {
|
|
|
|
tab: 'repos',
|
|
|
|
repos: [],
|
|
|
|
searchQuery: '',
|
|
|
|
suburl: document.querySelector('meta[name=_suburl]').content,
|
2017-05-18 16:28:29 +02:00
|
|
|
uid: document.querySelector('meta[name=_context_uid]').content
|
2017-05-09 02:31:30 +02:00
|
|
|
},
|
|
|
|
|
|
|
|
mounted: function() {
|
|
|
|
this.searchRepos();
|
|
|
|
|
|
|
|
Vue.nextTick(function() {
|
|
|
|
document.querySelector('#search_repo').focus();
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
methods: {
|
|
|
|
changeTab: function(t) {
|
|
|
|
this.tab = t;
|
|
|
|
},
|
|
|
|
|
|
|
|
searchKeyUp: function() {
|
|
|
|
this.searchRepos();
|
|
|
|
},
|
|
|
|
|
|
|
|
searchRepos: function() {
|
|
|
|
var self = this;
|
|
|
|
$.getJSON(this.searchURL(), function(result) {
|
|
|
|
self.repos = result.data;
|
|
|
|
});
|
|
|
|
},
|
|
|
|
|
|
|
|
searchURL: function() {
|
|
|
|
return this.suburl + '/api/v1/repos/search?uid=' + this.uid + '&q=' + this.searchQuery;
|
|
|
|
},
|
|
|
|
|
|
|
|
repoClass: function(repo) {
|
|
|
|
if (repo.fork) {
|
|
|
|
return 'octicon octicon-repo-forked';
|
|
|
|
} else if (repo.mirror) {
|
|
|
|
return 'octicon octicon-repo-clone';
|
|
|
|
} else if (repo.private) {
|
2017-05-27 18:40:54 +02:00
|
|
|
return 'octicon octicon-lock';
|
2017-05-09 02:31:30 +02:00
|
|
|
} else {
|
|
|
|
return 'octicon octicon-repo';
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}
|