1
0
mirror of https://github.com/jhillyerd/inbucket.git synced 2025-12-18 10:07:02 +00:00
Files
go-inbucket/themes/bootstrap/public/mailbox.js
James Hillyerd fd59aad4f0 Fix "Link" button on messages
- Add clipboard.js to bower
- Add pop-out section that populates with URL
- Add copy to clipboard button, hover confirmation
2016-03-01 12:10:26 -08:00

112 lines
2.9 KiB
JavaScript

var baseURL = window.location.protocol + '//' + window.location.host;
var navBarOffset = 75;
var mediumDeviceWidth = 980;
var messageListMargin = 275;
var clipboard = null;
// onDocChange is called each time we load partials into the DOM
function onDocChange() {
// Bootstrap tooltips
$('[data-toggle="tooltip"]').tooltip()
// Clipboard functionality
if (clipboard != null) {
clipboard.destroy();
}
clipboard = new Clipboard('.btn-clipboard');
clipboard.on('success', function(el) {
flashTooltip(el.trigger, 'Copied!');
el.clearSelection();
});
clipboard.on('error', function(el) {
flashTooltip(el.trigger, 'Copy Failed!');
});
}
// flashTooltip temporarily changes the text of a tooltip
function flashTooltip(el, text) {
var prevText = $(el).attr('data-original-title');
$(el).attr('data-original-title', text).tooltip('show');
$(el).attr('data-original-title', prevText);
}
function messageLoaded(responseText, textStatus, XMLHttpRequest) {
if (textStatus == "error") {
alert("Failed to load message, server said:\n" + responseText);
return;
}
onDocChange();
var top = $('#message-container').offset().top - navBarOffset;
$(window).scrollTop(top);
}
function listLoaded() {
onDocChange();
$('.listEntry').click(
function() {
$('.listEntry').removeClass("disabled");
$(this).addClass("disabled");
$('#message-content').load('/mailbox/' + mailbox + '/' + this.id, messageLoaded);
selected = this.id;
}
)
$("#message-list").slideDown();
if (selected != "") {
$("#" + selected).click();
selected = "";
}
}
function loadList() {
$('#message-list').load('/mailbox/' + mailbox, listLoaded);
}
function reloadList() {
$('#message-list').hide();
loadList();
}
function windowResize() {
if ($(window).width() > mediumDeviceWidth) {
var content_height = $(window).height() - messageListMargin;
$('#message-list-wrapper').height(content_height).addClass("message-list-scroll");
} else {
$('#message-list-wrapper').height('auto').removeClass("message-list-scroll");
}
}
function listInit() {
$("#message-list").hide();
windowResize();
$(window).resize(windowResize);
loadList();
}
function deleteMessage(id) {
$('#message-content').empty();
$.ajax({
type: 'DELETE',
url: '/mailbox/' + mailbox + '/' + id,
success: reloadList
})
}
function htmlView(id) {
window.open('/mailbox/' + mailbox + '/' + id + "/html", '_blank',
'width=800,height=600,' +
'menubar=yes,resizable=yes,scrollbars=yes,status=yes,toolbar=yes');
}
function messageSource(id) {
window.open('/mailbox/' + mailbox + '/' + id + "/source", '_blank',
'width=800,height=600,' +
'menubar=no,resizable=yes,scrollbars=yes,status=no,toolbar=no');
}
function toggleMessageLink(id) {
var url = baseURL + '/link/' + mailbox + '/' + id;
$('#link-input-control').val(url);
$('#link-row').slideToggle();
}