1
0
mirror of https://github.com/S2-/gitlit synced 2025-08-02 12:20:05 +02:00
Files
gitlit/app/js/index.js
2018-06-03 13:57:37 +02:00

99 lines
2.8 KiB
JavaScript

(function($) {
const ipcRenderer = require('electron').ipcRenderer;
const searchInPage = require('electron-in-page-search').default;
const remote = require('electron').remote;
const inPageSearch = searchInPage(remote.getCurrentWebContents());
//events
ipcRenderer.on('fileList', (event, files) => {
if (files && files.length > 0) {
$('.files-table-container').html(gitlit.templates.files({files: files}));
sorttable.makeSortable($('.js-filestable')[0]);
var myTH = document.getElementsByTagName("th")[0];
sorttable.innerSortFunction.apply(myTH, []);
} else {
$('.files-table-container').html(gitlit.templates.noGitLfsFiles());
}
});
ipcRenderer.on('repoDir', (event, repoDir) => {
$('.js-repo-dir').text('current repo dir: ' + repoDir).show();
});
ipcRenderer.on('isNoGitLfsRepo', (event, repoDir) => {
$('.js-container').html(gitlit.templates.isNoGitLfsRepo({repoDir: repoDir}));
});
ipcRenderer.on('notification', (event, notification) => {
if (notification.message) {
var notice = PNotify.alert({
text: notification.message,
type: notification.type, // - Type of the notice. 'notice', 'info', 'success', or 'error'.
delay: 5000,
modules: {
Buttons: {
closerHover: true
}
}
});
notice.on('click', function() {
notice.remove();
});
}
if (notification.event && notification.event === 'unlock') {
$('[data-file="' + notification.file + '"].js-unlock').hide();
$('[data-file="' + notification.file + '"].js-lock').show();
let text = 'not locked';
$('[data-file="' + notification.file + '"]').parent().prev().text(text);
}
if (notification.event && notification.event === 'lock') {
$('[data-file="' + notification.file + '"].js-lock').hide();
$('[data-file="' + notification.file + '"].js-unlock').show();
let text = notification.data.owner.name + ' (id: ' + notification.data.id + ')';
$('[data-file="' + notification.file + '"]').parent().prev().text(text);
}
});
$(document).on('click', '.js-lock', (ev) => {
ev.preventDefault();
let file = $(ev.currentTarget).attr('data-file');
ipcRenderer.send('lock', file);
});
$(document).on('click', '.js-unlock', (ev) => {
ev.preventDefault();
let file = $(ev.currentTarget).attr('data-file');
ipcRenderer.send('unlock', file);
});
$(document).on('click', '.js-refresh', (ev) => {
ev.preventDefault();
window.location.reload(false);
});
$(document).on('keypress', (ev) => {
//ctrl + f
if (ev.ctrlKey && ev.charCode == 6) {
if (inPageSearch && inPageSearch.opened) {
inPageSearch.closeSearchWindow();
} else {
inPageSearch.openSearchWindow();
}
}
//ctrl + r
if (ev.ctrlKey && ev.keyCode == 18) {
window.location.reload(false);
}
});
//startup
PNotify.defaults.styling = 'bootstrap4'; // Bootstrap version 4
$('.js-container').html(gitlit.templates.main());
})(jQuery);