-
Notifications
You must be signed in to change notification settings - Fork 224
/
messagesIncoming.html
58 lines (58 loc) · 2.7 KB
/
messagesIncoming.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
<!--
~ Copyright (c) 2022 Contributors to the Eclipse Foundation
~
~ See the NOTICE file(s) distributed with this work for additional
~ information regarding copyright ownership.
~
~ This program and the accompanying materials are made available under the
~ terms of the Eclipse Public License 2.0 which is available at
~ http://www.eclipse.org/legal/epl-2.0
~
~ SPDX-License-Identifier: EPL-2.0
-->
<h5 data-bs-toggle="collapse" data-bs-target="#collapseMessages">
Incoming Thing Updates <span class="badge rounded-pill bg-info" id="badgeMessageIncomingCount"></span></h5>
<hr />
<div class="collapse" id="collapseMessages">
<div class="row resizable_pane" style="height: 45vh;">
<div class="col-md-7 resizable_flex_column">
<div class="input-group input-group-sm mb-1">
<button class="btn btn-outline-secondary btn-sm button_round_right" id="buttonResetMessagesIncoming"
data-bs-toggle="tooltip" title="Reset connection logs for the selected connection">
<i class="bi bi-x-circle"></i>
Reset
</button>
</div>
<table-filter id="tableFilterMessagesIncoming"></table-filter>
<div class="table-wrap">
<table class="table table-striped table-hover table-sm">
<thead>
<tr>
<th>Revision</th>
<th>Action</th>
<th>Path</th>
<th>Field(s)</th>
<th>Modified</th>
</tr>
</thead>
<tbody id="tbodyMessagesIncoming"></tbody>
</table>
</div>
</div>
<div class="col-md-5 resizable_flex_column">
<h6>Thing Update Detail</h6>
<div class="input-group input-group-sm mb-1 mt-1">
<label class="input-group-text" for="selectThingUpdateMessageContent">Show</label>
<select class="form-select form-select-sm" id="selectThingUpdateMessageContent">
<option value="ONLY_CONTEXT" selected>Only context</option>
<option value="ONLY_CONTEXT_WITH_METADATA">Only context with metadata</option>
<option value="FULL_THING">Only full Thing JSON</option>
<option value="FULL_THING_WITH_CONTEXT">Full Thing JSON with context and metadata</option>
</select>
</div>
<div class="ace_container" style="flex-grow: 1;">
<div class="script_editor" id="messageIncomingDetail"></div>
</div>
</div>
</div>
</div>