mirror of
https://github.com/S2-/gitlit
synced 2025-08-02 20:30:05 +02:00
89 lines
2.6 KiB
JavaScript
89 lines
2.6 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) {
|
|
$('.js-container').html(gitlit.templates.main({files: files}));
|
|
sorttable.makeSortable($('.js-filestable')[0]);
|
|
var myTH = document.getElementsByTagName("th")[0];
|
|
sorttable.innerSortFunction.apply(myTH, []);
|
|
} else {
|
|
$('.js-container').html(gitlit.templates.noGitLfsFiles());
|
|
}
|
|
});
|
|
|
|
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();
|
|
}
|
|
}
|
|
});
|
|
|
|
//startup
|
|
PNotify.defaults.styling = 'bootstrap4'; // Bootstrap version 4
|
|
|
|
})(jQuery);
|