This commit is contained in:
mikecarper
2026-08-07 18:43:01 +00:00
parent 7b8e57fae6
commit 5b772ee735
4 changed files with 173 additions and 3 deletions
+36
View File
@@ -1802,6 +1802,42 @@
URL.revokeObjectURL(url);
});
const policyPanel = root.querySelector(".filter-policy");
const policyGrid = policyPanel ? policyPanel.parentElement : null;
const policyMarker = document.createComment("policy-draft-home");
const widePolicyLayout = global.matchMedia("(min-width: 90rem)");
let policyRail = null;
let policySidebar = null;
if (policyPanel && policyGrid) policyGrid.insertBefore(policyMarker, policyPanel);
function placePolicyDraft() {
if (!policyPanel || !policyGrid) return;
const sidebar = document.querySelector(".md-sidebar--secondary");
const sidebarInner = sidebar ? sidebar.querySelector(".md-sidebar__inner") : null;
if (widePolicyLayout.matches && sidebarInner) {
if (!policyRail) {
policyRail = document.createElement("div");
policyRail.className = "filter-tool filter-policy-rail";
policyRail.setAttribute("aria-label", "Policy draft");
}
policySidebar = sidebar;
policySidebar.classList.add("filter-policy-sidebar");
sidebarInner.appendChild(policyRail);
policyRail.appendChild(policyPanel);
root.classList.add("filter-policy-detached");
return;
}
policyMarker.parentNode.insertBefore(policyPanel, policyMarker.nextSibling);
root.classList.remove("filter-policy-detached");
if (policySidebar) policySidebar.classList.remove("filter-policy-sidebar");
if (policyRail) policyRail.remove();
policySidebar = null;
}
widePolicyLayout.addEventListener("change", placePolicyDraft);
placePolicyDraft();
const requestedExample = new URLSearchParams(global.location.search).get("example");
if (requestedExample && COMPLETE_EXAMPLES[requestedExample]) assignRules(clone(COMPLETE_EXAMPLES[requestedExample]));
resetForm();
+18
View File
@@ -177,6 +177,24 @@
align-items: start;
}
.filter-tool.filter-policy-detached .filter-tool-grid {
grid-template-columns: minmax(0, 1fr);
}
.filter-policy-rail {
margin: 1rem 0 2rem;
}
.filter-policy-rail .filter-policy {
width: 100%;
}
@media (min-width: 90rem) {
.md-sidebar--secondary.filter-policy-sidebar {
width: 20rem;
}
}
.filter-panel {
min-width: 0;
padding: 1rem;
+118 -2
View File
@@ -514,6 +514,17 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#payload-type-reference" class="md-nav__link">
<span class="md-ellipsis">
Payload type reference
</span>
</a>
</li>
<li class="md-nav__item">
@@ -1002,6 +1013,17 @@
</span>
</a>
</li>
<li class="md-nav__item">
<a href="#payload-type-reference" class="md-nav__link">
<span class="md-ellipsis">
Payload type reference
</span>
</a>
</li>
<li class="md-nav__item">
@@ -1087,11 +1109,11 @@ in the simulator below. The examples draw from
<tr><th><code>type=</code> value</th><th>Matches</th></tr>
</thead>
<tbody>
<tr><td><code>grp_data</code></td><td>Only the named payload type</td></tr>
<tr><td><a href="#payload-type-reference"><code>grp_data</code></a></td><td>Only the named payload type; see every exact type below</td></tr>
<tr><td><code>any</code></td><td>Every payload type</td></tr>
<tr><td><code>class:group</code></td><td>GRP_TXT and GRP_DATA</td></tr>
<tr><td><code>class:login</code></td><td>REQ, RESPONSE, TXT_MSG, ANON_REQ, and PATH</td></tr>
<tr><td><code>class:other</code></td><td>Every remaining payload type</td></tr>
<tr><td><code>class:other</code></td><td>Every remaining payload type that is not group or login</td></tr>
</tbody>
</table>
<table class="filter-primer-table">
@@ -1616,6 +1638,100 @@ in the simulator below. The examples draw from
</section>
</div>
<h2 id="payload-type-reference">Payload type reference</h2>
<p>Use an exact <code>type=</code> value when a rule should match only one payload type.
The class column shows which broader selector also matches it.</p>
<table>
<thead>
<tr>
<th><code>type=</code> value</th>
<th>Payload</th>
<th>Class</th>
</tr>
</thead>
<tbody>
<tr>
<td><code>req</code></td>
<td>Request</td>
<td><code>class:login</code></td>
</tr>
<tr>
<td><code>response</code></td>
<td>Response</td>
<td><code>class:login</code></td>
</tr>
<tr>
<td><code>txt_msg</code></td>
<td>Peer text message</td>
<td><code>class:login</code></td>
</tr>
<tr>
<td><code>ack</code></td>
<td>Acknowledgment</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>advert</code></td>
<td>Node advertisement</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>grp_txt</code></td>
<td>Group-channel text</td>
<td><code>class:group</code></td>
</tr>
<tr>
<td><code>grp_data</code></td>
<td>Group-channel datagram</td>
<td><code>class:group</code></td>
</tr>
<tr>
<td><code>anon_req</code></td>
<td>Anonymous request</td>
<td><code>class:login</code></td>
</tr>
<tr>
<td><code>path</code></td>
<td>Returned path</td>
<td><code>class:login</code></td>
</tr>
<tr>
<td><code>trace</code></td>
<td>Path trace</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>multipart</code></td>
<td>One frame in a multipart sequence</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>control</code></td>
<td>Control or discovery data</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>ota</code></td>
<td>OTA-over-LoRa data</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>13</code></td>
<td>Reserved payload type 13</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>14</code></td>
<td>Reserved payload type 14</td>
<td><code>class:other</code></td>
</tr>
<tr>
<td><code>raw_custom</code></td>
<td>Application-defined raw data</td>
<td><code>class:other</code></td>
</tr>
</tbody>
</table>
<h2 id="proposed-evaluation-contract">Proposed evaluation contract</h2>
<p>The simulator uses these rules:</p>
<ol>
File diff suppressed because one or more lines are too long