Interactive Pinout printing (#2411)
* initial print css * more print layout changes, and better zoom support * oopsies * more improvements maybe * please don't grow * color cells * fettling * fettling * fettling * fettling * keep image from getting too big * try auto * hmm * rounded * try auto sizing * bugfix * It verks? * make em bigger * bugfix * auto sizing
This commit is contained in:
parent
c8c444e6c4
commit
5c2fdb6a00
|
@ -37,40 +37,32 @@
|
||||||
<table class="info-table">
|
<table class="info-table">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Pin Number</th>
|
<th class="pin-header">Pin Number</th>
|
||||||
<th>Firmware ID</th>
|
<th class="id-header">Firmware ID</th>
|
||||||
<th>Type</th>
|
<th class="type-header">Type</th>
|
||||||
<th>Typical Function</th>
|
<th class="function-header">Typical Function</th>
|
||||||
<th>Pigtail Color</th>
|
<th class="color-header">Pigtail Color</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody>
|
<tbody>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
|
|
||||||
<h2>Full Pinout Table</h2>
|
<h2>Full Pinout Table</h2>
|
||||||
<table class="pinout-table">
|
<div class="table-wrapper">
|
||||||
<thead>
|
<table class="pinout-table">
|
||||||
<tr>
|
<thead>
|
||||||
<th>Pin Number</th>
|
<tr>
|
||||||
<th>Firmware ID</th>
|
<th class="pin-header">Pin Number</th>
|
||||||
<th>Type</th>
|
<th class="id-header">Firmware ID</th>
|
||||||
<th>Typical Function</th>
|
<th class="type-header">Type</th>
|
||||||
<th>Pigtail Color</th>
|
<th class="function-header">Typical Function</th>
|
||||||
</tr>
|
<th class="color-header">Pigtail Color</th>
|
||||||
</thead>
|
</tr>
|
||||||
<tbody>
|
</thead>
|
||||||
</tbody>
|
<tbody>
|
||||||
</table>
|
</tbody>
|
||||||
<br/>
|
</table>
|
||||||
<br/>
|
</div>
|
||||||
<br/>
|
|
||||||
<br/>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
|
|
|
@ -12,6 +12,7 @@ function addRow(table, pin, pdiv) {
|
||||||
var fdata = clone.querySelector(".function-data");
|
var fdata = clone.querySelector(".function-data");
|
||||||
var cdata = clone.querySelector(".color-data");
|
var cdata = clone.querySelector(".color-data");
|
||||||
pdata.textContent = pin.pin;
|
pdata.textContent = pin.pin;
|
||||||
|
pdata.dataset.type = pin.type;
|
||||||
idata.textContent = pin.id;
|
idata.textContent = pin.id;
|
||||||
tdata.textContent = pin.type
|
tdata.textContent = pin.type
|
||||||
fdata.textContent = pin.function;
|
fdata.textContent = pin.function;
|
||||||
|
@ -46,22 +47,6 @@ function clickPin(table, pin, pdiv) {
|
||||||
pdiv.classList.add("selected");
|
pdiv.classList.add("selected");
|
||||||
}
|
}
|
||||||
|
|
||||||
function adjustMarkers(cdiv) {
|
|
||||||
var cdiv = document.querySelectorAll(".connector-div");
|
|
||||||
for (var c = 0; c < cdiv.length; c++) {
|
|
||||||
cdiv[c].style.width = cdiv[c].querySelector(".connector-img").clientWidth + "px";
|
|
||||||
var pins = cdiv[c].querySelectorAll(".pin-marker");
|
|
||||||
for (var i = 0; i < pins.length; i++) {
|
|
||||||
var height = cdiv[c].clientHeight * 0.05;
|
|
||||||
pins[i].style.height = height + "px";
|
|
||||||
pins[i].style.width = height + "px";
|
|
||||||
pins[i].style.marginTop = "-" + (height * 0.5) + "px";
|
|
||||||
pins[i].style.marginLeft = "-" + (height * 0.5) + "px";
|
|
||||||
pins[i].style.fontSize = (height * 0.5) + "px";
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
window.addEventListener('load', function() {
|
window.addEventListener('load', function() {
|
||||||
for (var c = 0; c < connectorYaml.length; c++) {
|
for (var c = 0; c < connectorYaml.length; c++) {
|
||||||
var connector = YAML.parse(connectorYaml[c]);
|
var connector = YAML.parse(connectorYaml[c]);
|
||||||
|
@ -71,8 +56,6 @@ window.addEventListener('load', function() {
|
||||||
var sdiv = document.body.lastChild.previousSibling;
|
var sdiv = document.body.lastChild.previousSibling;
|
||||||
var img = sdiv.querySelector(".connector-img");
|
var img = sdiv.querySelector(".connector-img");
|
||||||
img.addEventListener('load', function(connector, sdiv, img) {
|
img.addEventListener('load', function(connector, sdiv, img) {
|
||||||
var ccont = sdiv.querySelector(".connector-container");
|
|
||||||
ccont.style.height = (document.documentElement.clientHeight / 2) + 'px';
|
|
||||||
var cdiv = sdiv.querySelector(".connector-div");
|
var cdiv = sdiv.querySelector(".connector-div");
|
||||||
var ptemplate = document.getElementById("pin-template");
|
var ptemplate = document.getElementById("pin-template");
|
||||||
var imgHeight = img.naturalHeight;
|
var imgHeight = img.naturalHeight;
|
||||||
|
@ -84,13 +67,22 @@ window.addEventListener('load', function() {
|
||||||
if (!pin.pin) {
|
if (!pin.pin) {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
var pinfo;
|
var pinfo = {};
|
||||||
for (var ii = 0; ii < connector.info.pins.length; ii++) {
|
for (var ii = 0; ii < connector.info.pins.length; ii++) {
|
||||||
if (connector.info.pins[ii].pin == pin.pin) {
|
if (connector.info.pins[ii].pin == pin.pin) {
|
||||||
pinfo = connector.info.pins[ii];
|
pinfo = connector.info.pins[ii];
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!pinfo.x) continue;
|
||||||
|
var closest = 1000000;
|
||||||
|
for (var ii = 0; ii < connector.info.pins.length; ii++) {
|
||||||
|
var tinfo = connector.info.pins[ii];
|
||||||
|
var distance = Math.pow((tinfo.x - pinfo.x), 2) + Math.pow((tinfo.y - pinfo.y), 2);
|
||||||
|
if (tinfo.pin != pin.pin && (!closest || distance < closest)) {
|
||||||
|
closest = distance;
|
||||||
|
}
|
||||||
|
}
|
||||||
var pclone = ptemplate.content.cloneNode(true);
|
var pclone = ptemplate.content.cloneNode(true);
|
||||||
var pdiv = pclone.querySelector("div");
|
var pdiv = pclone.querySelector("div");
|
||||||
pdiv.textContent = pinfo.pin;
|
pdiv.textContent = pinfo.pin;
|
||||||
|
@ -100,15 +92,26 @@ window.addEventListener('load', function() {
|
||||||
pdiv.addEventListener("click", function(table, pin, pdiv) {
|
pdiv.addEventListener("click", function(table, pin, pdiv) {
|
||||||
clickPin(table, pin, pdiv);
|
clickPin(table, pin, pdiv);
|
||||||
}.bind(null, table, pin, pdiv));
|
}.bind(null, table, pin, pdiv));
|
||||||
|
closest = Math.sqrt(closest);
|
||||||
|
var divheight = cdiv.clientHeight;
|
||||||
|
var divwidth = cdiv.clientWidth;
|
||||||
|
var mult = cdiv.querySelector("img").naturalHeight / divheight;
|
||||||
|
var newheight = (closest / mult)
|
||||||
|
var pxheight = divheight * 0.08;
|
||||||
|
if (newheight < pxheight) {
|
||||||
|
pxheight = newheight - 6;
|
||||||
|
}
|
||||||
|
var height = (pxheight / divheight) * 100;
|
||||||
|
var width = (pxheight / divwidth) * 100;
|
||||||
|
pdiv.style.height = height + "%";
|
||||||
|
pdiv.style.width = width + "%";
|
||||||
|
pdiv.style.marginTop = "-" + (width / 2) + "%";
|
||||||
|
pdiv.style.marginLeft = "-" + (width / 2) + "%";
|
||||||
|
pdiv.style.fontSize = (height / 7.5) + "vw";
|
||||||
cdiv.appendChild(pdiv);
|
cdiv.appendChild(pdiv);
|
||||||
addRow(fullTable, connector.pins[i], pdiv);
|
addRow(fullTable, connector.pins[i], pdiv);
|
||||||
}
|
}
|
||||||
adjustMarkers();
|
|
||||||
}.bind(null, connector, sdiv, img));
|
}.bind(null, connector, sdiv, img));
|
||||||
img.src = connector.info.image.file;
|
img.src = connector.info.image.file;
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
window.addEventListener('resize', function() {
|
|
||||||
adjustMarkers();
|
|
||||||
});
|
|
||||||
|
|
|
@ -3,7 +3,7 @@
|
||||||
z-index: 1;
|
z-index: 1;
|
||||||
border-radius: 50%;
|
border-radius: 50%;
|
||||||
background-color: white;
|
background-color: white;
|
||||||
border: 3px black solid;
|
border: 0.21vw black solid;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
color: black;
|
color: black;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
|
@ -118,17 +118,19 @@
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
position: relative;
|
position: relative;
|
||||||
|
height: max(3in, 50vh);
|
||||||
}
|
}
|
||||||
|
|
||||||
.connector-div {
|
.connector-div {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
position: relative;
|
position: relative;
|
||||||
z-index: 0;
|
z-index: 0;
|
||||||
|
width: max-content;
|
||||||
}
|
}
|
||||||
|
|
||||||
.connector-img {
|
.connector-img {
|
||||||
height: 100%;
|
height: 100%;
|
||||||
z-index: 0;
|
min-width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
table {
|
table {
|
||||||
|
@ -154,8 +156,14 @@ table tbody tr {
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media screen {
|
||||||
|
td.pin-data {
|
||||||
|
border-color: black;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
table td, table th {
|
table td, table th {
|
||||||
border: 1px solid black;
|
border: 1px solid black;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -181,12 +189,16 @@ table th {
|
||||||
color: white;
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
td.pin-data {
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
}
|
||||||
|
|
||||||
table td, table th {
|
table td, table th {
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
}
|
}
|
||||||
|
|
||||||
table th {
|
table th {
|
||||||
color: white
|
color: white;
|
||||||
}
|
}
|
||||||
|
|
||||||
table tr:nth-child(even){
|
table tr:nth-child(even){
|
||||||
|
@ -199,3 +211,59 @@ table th {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media print {
|
||||||
|
.container {
|
||||||
|
height: 99vh;
|
||||||
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
|
}
|
||||||
|
.info-table, .id-data, .id-header, .type-data, .type-header, .color-data, .color-header, thead {
|
||||||
|
display: none;
|
||||||
|
}
|
||||||
|
.connector-container {
|
||||||
|
flex: 0 1 auto;
|
||||||
|
height: unset;
|
||||||
|
min-height: 2in;
|
||||||
|
}
|
||||||
|
.connector-div {
|
||||||
|
max-width: 100%;
|
||||||
|
height: unset;
|
||||||
|
}
|
||||||
|
.connector-img {
|
||||||
|
max-width: 100% !important;
|
||||||
|
max-height: 3in;
|
||||||
|
}
|
||||||
|
h2 {
|
||||||
|
font-size: 14px;
|
||||||
|
}
|
||||||
|
th {
|
||||||
|
font-size: 12px;
|
||||||
|
}
|
||||||
|
td {
|
||||||
|
font-size: 10px;
|
||||||
|
}
|
||||||
|
td:not(.pin-data) {
|
||||||
|
border: none !important;
|
||||||
|
}
|
||||||
|
td.pin-data {
|
||||||
|
border-width: 3px;
|
||||||
|
border-radius: 10px;
|
||||||
|
width: 10px;
|
||||||
|
margin: 0px;
|
||||||
|
padding: 0px;
|
||||||
|
}
|
||||||
|
html, tr {
|
||||||
|
background-color: white !important;
|
||||||
|
color: black !important;
|
||||||
|
}
|
||||||
|
table {
|
||||||
|
width: auto;
|
||||||
|
border-collapse: separate;
|
||||||
|
}
|
||||||
|
.table-wrapper {
|
||||||
|
column-count: 4;
|
||||||
|
}
|
||||||
|
table, tbody, tr {
|
||||||
|
display: block;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue