MailHog/assets/templates/index.html

230 lines
7.8 KiB
HTML
Raw Normal View History

2014-04-20 14:35:59 +00:00
<style>
.messages {
2014-04-23 22:01:48 +00:00
padding-top: 51px;
2014-04-20 14:35:59 +00:00
height: 30%;
2014-04-23 22:01:48 +00:00
min-height: 280px;
2014-04-26 13:43:54 +00:00
border-bottom: 1px solid #999;
2014-04-20 14:35:59 +00:00
}
2014-04-23 22:01:48 +00:00
#messages-container {
height: 100%;
2014-04-20 14:35:59 +00:00
}
.preview #headers {
border-bottom: 1px solid #DDDDDD;
}
.selected {
2014-04-26 13:43:54 +00:00
background: #0066CC;
color: #fff;
2014-04-20 14:35:59 +00:00
}
2014-04-20 19:03:53 +00:00
table td, table th {
2014-04-26 13:43:54 +00:00
padding: 2px 4px 2px 8px !important;
}
#messages-container table tbody {
overflow: auto;
height: 263px;
2014-04-20 14:35:59 +00:00
}
2014-04-23 22:01:48 +00:00
table thead {
background: #eee;
}
2014-04-26 13:43:54 +00:00
#messages-container > table > thead > tr, #messages-container > table > tbody {
display: block;
}
table th:not(:last-child) {
border-right: 2px solid #DDD;
}
2014-04-20 19:13:39 +00:00
table#headers {
2014-04-26 12:12:26 +00:00
margin-bottom: 1px;
2014-04-23 22:01:48 +00:00
background: #eee;
2014-04-20 19:13:39 +00:00
}
#content .nav>li>a {
padding: 5px 8px;
}
2014-04-23 22:01:48 +00:00
.preview #headers tbody td {
width: 100%;
}
.preview #headers tbody th {
white-space: nowrap;
padding-right: 10px !important;
padding-left: 10px !important;
text-align: right;
color: #666;
font-weight: normal;
}
#preview-plain, #preview-source {
white-space: pre;
font-family: Courier New, Courier, System, fixed-width;
}
2014-04-26 12:12:26 +00:00
.preview .tab-content {
padding: 0;
overflow-y: scroll;
2014-04-23 22:01:48 +00:00
}
2014-04-20 14:35:59 +00:00
</style>
2014-04-26 12:12:26 +00:00
<script>
2014-04-26 13:43:54 +00:00
var columns = [15,15,40,20,10];
2014-04-26 12:12:26 +00:00
var reflow = function() {
2014-04-26 13:43:54 +00:00
if($('.preview').length > 0) {
var remaining = $(window).height() - $('.preview .nav-tabs').offset().top
$('.preview .tab-content').height(remaining - 32)
$('#messages-container table').height($('#messages-container').height())
$('#messages-container table tbody').height($('#messages-container').height() - $('#messages-container table thead').height())
}
var $table = $('#messages-container table'), $bodyCells = $table.find('tbody tr:first').children(), colWidth;
var colWidth = [];
for(var i in columns) {
colWidth[i] = $table.innerWidth() / 100 * columns[i];
}
//var spare = $table.width() - $table.find('tbody tr:first').width();
//var add = spare / cols;
//colWidth = $bodyCells.map(function() { return $(this).width(); }).get();
$table.find('thead tr').children().each(function(i, v) { $(v).width(colWidth[i]); });
$table.find('tbody tr:first').children().each(function(i, v) { $(v).width(colWidth[i]); });
2014-04-26 12:12:26 +00:00
}
$(function() {
reflow();
2014-04-26 13:43:54 +00:00
var reflowPending = false;
$("#messages-container table tbody").bind("DOMSubtreeModified", function() {
if(!reflowPending) {
reflowPending = true
window.setTimeout(function() {
reflow();
reflowPending = false;
}, 100);
}
});
$(window).resize(function() {
reflow();
}).resize();
2014-04-26 12:12:26 +00:00
})
</script>
2014-04-20 14:35:59 +00:00
<div class="modal fade" id="confirm-delete-all">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">Delete all messages?</h4>
</div>
<div class="modal-body">
<p>Are you sure you want to delete all messages?</p>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger" ng-click="deleteAllConfirm()">Delete all messages</button>
</div>
</div>
</div>
</div>
2014-04-27 16:31:00 +00:00
<div class="modal fade" id="release-one">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
<h4 class="modal-title">Release message</h4>
</div>
<div class="modal-body">
<p>To release this message, enter a recipient and SMTP server address:</p>
<form role="form">
<div class="form-group">
<label for="release-message-email">Email address</label>
<input type="email" autofocus class="form-control" id="release-message-email" placeholder="someone@example.com">
</div>
<div class="form-group">
<label for="release-message-smtp-host">SMTP server</label>
<input type="text" class="form-control" id="release-message-smtp-host" placeholder="mail.example.com">
</div>
<div class="form-group">
<label for="release-message-smtp-port">SMTP port</label>
<input type="number" class="form-control" id="release-message-smtp-port" value="25">
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Cancel</button>
<button type="button" class="btn btn-danger" ng-click="confirmReleaseMessage()">Release message</button>
</div>
</div>
</div>
</div>
2014-04-20 14:35:59 +00:00
<div class="messages">
2014-04-23 22:01:48 +00:00
<div id="messages-container">
<table class="table">
2014-04-26 13:43:54 +00:00
<thead>
<tr>
<th>From</th>
<th>To</th>
<th>Subject</th>
<th>Received</th>
<th>Actions</th>
</tr>
</thead>
2014-04-23 22:01:48 +00:00
<tbody>
<tr ng-repeat="message in messages" ng-click="selectMessage(message)" ng-class="{ selected: message.Id == preview.Id }">
<td>
{{ message.From.Mailbox }}@{{ message.From.Domain }}
</td>
<td>
<span ng-repeat="to in message.To">
{{ to.Mailbox }}@{{ to.Domain }}
</span>
</td>
<td>
{{ message.Content.Headers.Subject.0 }}
</td>
<td>
{{ date(message.Created) }}
</td>
<td>
<button class="btn btn-xs btn-default" title="Delete" ng-click="deleteOne(message)"><span class="glyphicon glyphicon-remove"></span></button>
2014-04-26 10:50:34 +00:00
<a class="btn btn-xs btn-default" title="Delete" href="/api/v1/messages/{{ message.Id }}/download"><span class="glyphicon glyphicon-save"></span></a>
2014-04-27 16:31:00 +00:00
<button class="btn btn-xs btn-default" title="Release" ng-click="releaseOne(message)"><span class="glyphicon glyphicon-share"></span></button>
2014-04-23 22:01:48 +00:00
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="preview" ng-if="preview">
<table class="table" id="headers">
<tbody ng-if="!previewAllHeaders">
<tr>
<th>From</th>
<td>{{ preview.Content.Headers["From"][0] }}</td>
</tr>
<tr>
<th>Subject</th>
<td><strong>{{ preview.Content.Headers["Subject"][0] }}</strong></td>
</tr>
<tr>
<th>To</th>
2014-04-20 14:35:59 +00:00
<td>
2014-04-26 12:12:26 +00:00
<button id="show-headers" ng-click="toggleHeaders(true)" type="button" class="btn btn-default pull-right btn-xs">Show headers <span class="glyphicon glyphicon-chevron-down"></span></button>
2014-04-23 22:01:48 +00:00
{{ preview.Content.Headers["To"].join(', ') }}
2014-04-20 14:35:59 +00:00
</td>
2014-04-23 22:01:48 +00:00
</tr>
</tbody>
<tbody ng-if="previewAllHeaders">
<tr ng-repeat="(header, value) in preview.Content.Headers">
<th>
{{ header }}
</th>
2014-04-20 14:35:59 +00:00
<td>
2014-04-26 12:12:26 +00:00
<button id="hide-headers" ng-if="$last" ng-click="toggleHeaders(false)" type="button" class="btn btn-default pull-right btn-xs">Hide headers <span class="glyphicon glyphicon-chevron-up"></span></button>
2014-04-23 22:01:48 +00:00
<div ng-repeat="v in value">{{ v }}</div>
2014-04-20 14:35:59 +00:00
</td>
</tr>
</tbody>
</table>
2014-04-20 19:13:39 +00:00
<div id="content">
<ul class="nav nav-tabs">
<li class="active"><a href="#preview-html" data-toggle="tab">HTML</a></li>
<li><a href="#preview-plain" data-toggle="tab">Plain text</a></li>
<li><a href="#preview-source" data-toggle="tab">Source</a></li>
</ul>
<div class="tab-content">
<div class="tab-pane active" id="preview-html" ng-bind-html="preview.previewHTML"></div>
2014-04-23 22:01:48 +00:00
<div class="tab-pane" id="preview-plain">{{ getMessagePlain(preview) }}</div>
<div class="tab-pane" id="preview-source">{{ getSource(preview) }}</div>
2014-04-20 19:13:39 +00:00
</div>
</div>
2014-04-27 15:06:58 +00:00
</div>