2015-08-05 07:24:26 +00:00
|
|
|
'use strict';
|
|
|
|
|
2015-07-24 15:13:42 +00:00
|
|
|
var csrf;
|
|
|
|
|
2015-08-10 10:57:57 +00:00
|
|
|
function initCommentForm() {
|
|
|
|
if ($('.comment.form').length == 0) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
var $form = $('.comment.form');
|
|
|
|
$form.find('.tabular.menu .item').tab();
|
|
|
|
$form.find('.tabular.menu .item[data-tab="preview"]').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"mode": "gfm",
|
|
|
|
"context": $this.data('context'),
|
|
|
|
"text": $form.find('.tab.segment[data-tab="write"] textarea').val()
|
|
|
|
},
|
|
|
|
function (data) {
|
|
|
|
$form.find('.tab.segment[data-tab="preview"]').html(data);
|
|
|
|
}
|
|
|
|
);
|
|
|
|
});
|
|
|
|
|
|
|
|
// Labels
|
|
|
|
var $list = $('.ui.labels.list');
|
|
|
|
var $no_select = $list.find('.no-select');
|
|
|
|
$('.select-label .menu .item:not(.no-select)').click(function () {
|
|
|
|
if ($(this).hasClass('checked')) {
|
|
|
|
$(this).removeClass('checked')
|
|
|
|
$(this).find('.octicon').removeClass('octicon-check')
|
|
|
|
} else {
|
|
|
|
$(this).addClass('checked')
|
|
|
|
$(this).find('.octicon').addClass('octicon-check')
|
|
|
|
}
|
|
|
|
|
|
|
|
var label_ids = "";
|
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
if ($(this).hasClass('checked')) {
|
|
|
|
label_ids += $(this).data('id') + ",";
|
|
|
|
$($(this).data('id-selector')).removeClass('hide');
|
|
|
|
} else {
|
|
|
|
$($(this).data('id-selector')).addClass('hide');
|
|
|
|
}
|
|
|
|
});
|
|
|
|
if (label_ids.length == 0) {
|
|
|
|
$no_select.removeClass('hide');
|
|
|
|
} else {
|
|
|
|
$no_select.addClass('hide');
|
|
|
|
}
|
|
|
|
$($(this).parent().data('id')).val(label_ids);
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
$('.select-label .menu .no-select.item').click(function () {
|
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
$(this).removeClass('checked');
|
|
|
|
$(this).find('.octicon').removeClass('octicon-check');
|
|
|
|
});
|
|
|
|
|
|
|
|
$list.find('.item').each(function () {
|
|
|
|
$(this).addClass('hide');
|
|
|
|
});
|
|
|
|
$no_select.removeClass('hide');
|
|
|
|
$($(this).parent().data('id')).val('');
|
|
|
|
});
|
|
|
|
|
2015-08-10 13:47:23 +00:00
|
|
|
function selectItem(select_id, input_id) {
|
|
|
|
var $menu = $(select_id + ' .menu');
|
|
|
|
var $list = $('.ui' + select_id + '.list')
|
|
|
|
$menu.find('.item:not(.no-select)').click(function () {
|
|
|
|
$(this).parent().find('.item').each(function () {
|
|
|
|
$(this).removeClass('selected active')
|
|
|
|
});
|
|
|
|
|
|
|
|
$(this).addClass('selected active');
|
|
|
|
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 10:57:57 +00:00
|
|
|
});
|
2015-08-10 13:47:23 +00:00
|
|
|
$menu.find('.no-select.item').click(function () {
|
|
|
|
$(this).parent().find('.item:not(.no-select)').each(function () {
|
|
|
|
$(this).removeClass('selected active')
|
|
|
|
});
|
2015-08-10 10:57:57 +00:00
|
|
|
|
2015-08-10 13:47:23 +00:00
|
|
|
$list.find('.selected').html('');
|
|
|
|
$list.find('.no-select').removeClass('hide');
|
|
|
|
$(input_id).val('');
|
2015-08-10 10:57:57 +00:00
|
|
|
});
|
2015-08-10 13:47:23 +00:00
|
|
|
}
|
2015-08-10 10:57:57 +00:00
|
|
|
|
2015-08-10 13:47:23 +00:00
|
|
|
// Milestone and assignee
|
|
|
|
selectItem('.select-milestone', '#milestone_id');
|
|
|
|
selectItem('.select-assignee', '#assignee_id');
|
2015-08-10 10:57:57 +00:00
|
|
|
}
|
|
|
|
|
2015-07-07 17:09:03 +00:00
|
|
|
function initInstall() {
|
|
|
|
if ($('.install').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Database type change detection.
|
|
|
|
$("#db_type").change(function () {
|
|
|
|
var db_type = $('#db_type').val();
|
|
|
|
if (db_type === "SQLite3") {
|
|
|
|
$('#sql_settings').hide();
|
|
|
|
$('#pgsql_settings').hide();
|
|
|
|
$('#sqlite_settings').show();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
var mysql_default = '127.0.0.1:3306';
|
|
|
|
var postgres_default = '127.0.0.1:5432';
|
|
|
|
|
|
|
|
$('#sqlite_settings').hide();
|
|
|
|
$('#sql_settings').show();
|
|
|
|
if (db_type === "PostgreSQL") {
|
|
|
|
$('#pgsql_settings').show();
|
|
|
|
if ($('#db_host').val() == mysql_default) {
|
|
|
|
$('#db_host').val(postgres_default);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
$('#pgsql_settings').hide();
|
|
|
|
if ($('#db_host').val() == postgres_default) {
|
|
|
|
$('#db_host').val(mysql_default);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
|
|
|
};
|
|
|
|
|
2015-07-24 15:13:42 +00:00
|
|
|
function initRepository() {
|
2015-07-24 13:02:49 +00:00
|
|
|
if ($('.repository').length == 0) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-07-24 15:13:42 +00:00
|
|
|
// Labels
|
2015-08-05 07:24:26 +00:00
|
|
|
if ($('.repository.labels').length > 0) {
|
2015-08-09 14:45:38 +00:00
|
|
|
// Create label
|
|
|
|
var $new_label_panel = $('.new-label.segment');
|
|
|
|
$('.new-label.button').click(function () {
|
|
|
|
$new_label_panel.show();
|
|
|
|
});
|
|
|
|
$('.new-label.segment .cancel').click(function () {
|
|
|
|
$new_label_panel.hide();
|
|
|
|
});
|
|
|
|
|
2015-08-05 07:24:26 +00:00
|
|
|
$('.color-picker').each(function () {
|
|
|
|
$(this).minicolors();
|
|
|
|
});
|
|
|
|
$('.precolors .color').click(function () {
|
|
|
|
var color_hex = $(this).data('color-hex')
|
|
|
|
$('.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 14:45:38 +00:00
|
|
|
$('.edit-label .new-label-input').val($(this).data('title'));
|
2015-08-05 07:24:26 +00: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 13:02:49 +00:00
|
|
|
}
|
2015-08-05 07:24:26 +00:00
|
|
|
|
|
|
|
// Milestones
|
2015-08-05 12:23:08 +00:00
|
|
|
if ($('.repository.milestones').length > 0) {
|
|
|
|
|
|
|
|
}
|
2015-08-05 07:24:26 +00:00
|
|
|
if ($('.repository.new.milestone').length > 0) {
|
|
|
|
var $datepicker = $('.milestone.datepicker')
|
|
|
|
$datepicker.datetimepicker({
|
|
|
|
lang: $datepicker.data('lang'),
|
|
|
|
inline: true,
|
|
|
|
timepicker: false,
|
|
|
|
startDate: $datepicker.data('start-date'),
|
2015-08-05 10:26:18 +00:00
|
|
|
formatDate: 'Y-m-d',
|
2015-08-05 07:24:26 +00:00
|
|
|
onSelectDate: function (ct) {
|
2015-08-05 10:26:18 +00:00
|
|
|
$('#deadline').val(ct.dateFormat('Y-m-d'));
|
2015-07-24 15:13:42 +00:00
|
|
|
}
|
2015-08-05 07:24:26 +00:00
|
|
|
});
|
|
|
|
$('#clear-date').click(function () {
|
|
|
|
$('#deadline').val('');
|
|
|
|
return false;
|
|
|
|
});
|
2015-08-06 14:48:11 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Settings
|
|
|
|
if ($('.repository.settings').length > 0) {
|
|
|
|
$('#add-deploy-key').click(function () {
|
|
|
|
$('#add-deploy-key-panel').show();
|
|
|
|
});
|
2015-08-08 14:43:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Pull request
|
|
|
|
if ($('.repository.compare.pull').length > 0) {
|
2015-08-09 17:04:23 +00:00
|
|
|
var $branch_dropdown = $('.choose.branch .dropdown')
|
|
|
|
$branch_dropdown.dropdown({
|
2015-08-08 14:43:14 +00:00
|
|
|
fullTextSearch: true,
|
2015-08-08 15:12:23 +00:00
|
|
|
onChange: function (text, value, $choice) {
|
|
|
|
window.location.href = $choice.data('url');
|
2015-08-09 17:04:23 +00:00
|
|
|
},
|
|
|
|
message: {noResults: $branch_dropdown.data('no-results')}
|
2015-08-08 14:43:14 +00:00
|
|
|
});
|
2015-08-05 07:24:26 +00:00
|
|
|
}
|
2015-07-24 13:02:49 +00:00
|
|
|
};
|
|
|
|
|
2015-03-07 20:12:13 +00:00
|
|
|
$(document).ready(function () {
|
2015-07-24 15:13:42 +00:00
|
|
|
csrf = $('meta[name=_csrf]').attr("content");
|
|
|
|
|
2015-07-07 17:09:03 +00:00
|
|
|
// Semantic UI modules.
|
|
|
|
$('.dropdown').dropdown();
|
2015-07-24 08:42:47 +00:00
|
|
|
$('.jump.dropdown').dropdown({
|
2015-08-10 14:38:21 +00:00
|
|
|
action: 'hide',
|
|
|
|
onShow: function() {
|
|
|
|
$('.poping.up').popup('hide');
|
|
|
|
}
|
2015-07-23 20:50:05 +00:00
|
|
|
});
|
2015-07-07 17:09:03 +00:00
|
|
|
$('.slide.up.dropdown').dropdown({
|
2015-03-07 20:12:13 +00:00
|
|
|
transition: 'slide up'
|
|
|
|
});
|
2015-07-08 11:47:56 +00:00
|
|
|
$('.ui.accordion').accordion();
|
|
|
|
$('.ui.checkbox').checkbox();
|
2015-08-03 09:42:09 +00:00
|
|
|
$('.ui.progress').progress({
|
|
|
|
showActivity: false
|
|
|
|
});
|
2015-07-09 05:17:48 +00:00
|
|
|
$('.poping.up').popup();
|
2015-08-10 14:38:21 +00:00
|
|
|
$('.top.menu .poping.up').popup({
|
|
|
|
onShow: function() {
|
|
|
|
if ( $('.top.menu .menu.transition').hasClass('visible') ) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
});
|
2015-07-07 17:09:03 +00:00
|
|
|
|
2015-08-09 07:23:02 +00:00
|
|
|
|
2015-08-05 12:23:08 +00:00
|
|
|
// Helpers.
|
|
|
|
$('.delete-button').click(function () {
|
|
|
|
var $this = $(this);
|
|
|
|
$('.delete.modal').modal({
|
|
|
|
closable: false,
|
|
|
|
onApprove: function () {
|
|
|
|
$.post($this.data('url'), {
|
|
|
|
"_csrf": csrf,
|
|
|
|
"id": $this.data("id")
|
|
|
|
}).done(function (data) {
|
|
|
|
window.location.href = data.redirect;
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}).modal('show');
|
|
|
|
return false;
|
|
|
|
});
|
|
|
|
|
2015-08-10 10:57:57 +00:00
|
|
|
initCommentForm();
|
2015-07-07 17:09:03 +00:00
|
|
|
initInstall();
|
2015-07-24 13:02:49 +00:00
|
|
|
initRepository();
|
2015-03-07 20:12:13 +00:00
|
|
|
});
|