buch of stuff; simple-captcha; mdtable; some more stuff

This commit is contained in:
2026-03-01 16:12:11 +01:00
commit bfad446554
11 changed files with 743 additions and 0 deletions

221
elements/mdtable.js Normal file
View File

@@ -0,0 +1,221 @@
/*
* mdtable.js - OSS tool for HTML5 Tables
* This Class creates a HTML Tag (md-table) which lets you define a Markdown Table INSIDE
* of your exsisting HTML, you do NOT need any external libraries as this is a vanilla javascript class.
* Example HTML at EOF!
*
* written by rattatwinko@26/02/26 (license: MIT)
*/
class MdTable extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: "open" });
const style = document.createElement("style");
style.textContent = MdTable.styles;
this._wrapper = document.createElement("div");
shadow.append(style, this._wrapper);
}
static get observedAttributes() {
return ["caption"];
}
connectedCallback() {
this._render();
}
attributeChangedCallback() {
this._render();
}
_render() {
const raw = this.textContent.trim();
if (!raw) return;
const parsed = this._parseMarkdown(raw);
if (!parsed) return;
const { headers, rows, aligns } = parsed;
const table = document.createElement("table");
const captionText = this.getAttribute("caption");
if (captionText) {
const caption = document.createElement("caption");
caption.textContent = captionText;
table.appendChild(caption);
}
const thead = document.createElement("thead");
const tbody = document.createElement("tbody");
const trHead = document.createElement("tr");
headers.forEach((text, i) => {
const th = document.createElement("th");
th.textContent = text;
th.dataset.align = aligns[i];
if (this.hasAttribute("sortable")) {
th.classList.add("sortable");
th.addEventListener("click", () => {
this._sortTable(tbody, i);
});
}
trHead.appendChild(th);
});
thead.appendChild(trHead);
// create table elements based on how many rows there are
rows.forEach(row => {
const tr = document.createElement("tr");
row.forEach((text, i) => {
const td = document.createElement("td");
td.textContent = text;
td.dataset.align = aligns[i];
tr.appendChild(td);
});
tbody.appendChild(tr);
});
table.append(thead, tbody);
this._wrapper.replaceChildren(table);
}
// parse table
_parseMarkdown(md) {
const lines = md
.split("\n")
.map(l => l.trim())
.filter(Boolean);
if (lines.length < 2) return null;
const headers = lines[0]
.split("|")
.map(c => c.trim())
.filter(Boolean);
const alignRow = lines[1]
.split("|")
.map(c => c.trim())
.filter(Boolean);
const aligns = alignRow.map(a => {
if (a.startsWith(":") && a.endsWith(":")) return "center";
if (a.endsWith(":")) return "right";
if (a.startsWith(":")) return "left";
return "left";
});
const rows = lines.slice(2).map(line =>
line.split("|")
.map(c => c.trim())
.filter(Boolean)
);
return { headers, rows, aligns };
}
_sortTable(tbody, columnIndex) {
const rows = Array.from(tbody.querySelectorAll("tr"));
const isNumeric = rows.every(row =>
!isNaN(parseFloat(row.children[columnIndex].textContent))
);
const asc = this._lastSortCol !== columnIndex || !this._lastAsc;
this._lastSortCol = columnIndex;
this._lastAsc = asc;
rows.sort((a, b) => {
let A = a.children[columnIndex].textContent;
let B = b.children[columnIndex].textContent;
if (isNumeric) {
A = parseFloat(A);
B = parseFloat(B);
}
return asc ? (A > B ? 1 : -1) : (A < B ? 1 : -1);
});
rows.forEach(r => tbody.appendChild(r));
}
static styles = `
:host {
display: block;
font-family: sans-serif;
--border-color: #ccc;
--header-bg: #f5f5f5;
}
table {
width: 100%;
border-collapse: collapse;
}
caption {
caption-side: top;
padding: 6px 0;
font-weight: bold;
text-align: left;
}
th, td {
border: 1px solid var(--border-color);
padding: 6px 10px;
}
th {
background: var(--header-bg);
font-weight: 600;
}
th[data-align="right"],
td[data-align="right"] {
text-align: right;
}
th[data-align="center"],
td[data-align="center"] {
text-align: center;
}
th.sortable {
cursor: pointer;
}
`;
}
// define <md-table></md-table>
customElements.define("md-table", MdTable);
/* Example HTML:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>html5 mdtable</title>
<script src="mdtable.js" defer></script>
</head>
<body>
<md-table sortable caption="Users" variant="responsive">
| Name | Age | Score |
|:-----|----:|:----:|
| Anna | 22 | 90 |
| Max | 30 | 85 |
</md-table>
</body>
</html>
*//*
License (MIT):
Copyright (c) 2026 rattatwinko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

160
elements/pole.js Normal file
View File

@@ -0,0 +1,160 @@
/*
* pole-js - OSS tool for HTML5 Loading Bars
* HTML5-Tags created by This Project are: <progress-bar> , <pole-js>
* This Class does NOT rely on any EXTERNAL dependencies.
* Example Script for Incrementing Pole is at EOF!
* written by rattatwinko@25/02/26 for https://rattatwinko.servecounterstrike.com
*
*/
class Pole extends HTMLElement {
constructor() {
super();
const shadow = this.attachShadow({ mode: "open" });
const style = document.createElement("style");
const container = document.createElement("div");
const valueBar = document.createElement("div");
const labelDark = document.createElement("span");
const labelLight = document.createElement("span");
style.textContent = Pole.styles;
container.classList.add("container");
valueBar.classList.add("valueBar");
labelDark.classList.add("label", "label-dark");
labelLight.classList.add("label", "label-light");
container.appendChild(valueBar);
container.appendChild(labelDark);
container.appendChild(labelLight);
valueBar.appendChild(labelLight.cloneNode());
shadow.append(style, container);
this._valueBar = valueBar;
this._labelDark = labelDark;
this._labelLight = labelLight;
this._manualLabel = null;
this._updateLabel();
}
attributeChangedCallback(name, oldValue, newValue) {
if (name === "value") {
const val = Math.min(100, Math.max(0, Number(newValue)));
this._valueBar.style.width = val + "%";
this._labelLight.style.clipPath = `inset(0 0 0 0)`;
this._updateLabel();
if (val >= 100) { this._valueBar.classList.add("complete"); }
else { this._valueBar.classList.remove("complete"); }
}
if (name === "unit") { this._updateLabel(); }
}
_updateLabel() {
if (!this._labelDark || !this._labelLight) return;
const text = this._manualLabel !== null
? this._manualLabel
: this.value + (this.getAttribute("unit") ?? "%");
this._labelDark.textContent = text;
this._labelLight.textContent = text;
}
get label() { return this._manualLabel ?? null; }
set label(val) {
this._manualLabel = val === null ? null : String(val);
this._updateLabel();
}
get value() { return Number(this.getAttribute("value")) || 0; }
set value(val) { this.setAttribute("value", val); }
get unit() { return this.getAttribute("unit") ?? "%"; }
set unit(val) { this.setAttribute("unit", val); }
static get observedAttributes() { return ["value", "unit"]; }
static styles = `
/* pole-js stylesheet ; variable definitions: --bar-color ; --background-color ; --height (you can define this, but it wont look good); --width */
:host { display: inline-block; --bar-color: blue; --background-color: #ddd; --width: 300px; --height: 25px; }
.container {
width: var(--width);
height: var(--height);
background: var(--background-color);
border-radius: 4px;
overflow: hidden;
position: relative;
}
.valueBar {
width: 0%;
height: 100%;
background-color: var(--bar-color);
background-image: linear-gradient(
45deg,
rgba(255,255,255,0.3) 25%,
rgba(255,255,255,0) 25%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0.3) 50%,
rgba(255,255,255,0.3) 75%,
rgba(255,255,255,0) 75%,
rgba(255,255,255,0) 100%
);
background-size: 40px 40px;
animation: pole-js 1s linear infinite;
transition: width 0.3s ease;
}
.valueBar.complete { animation: none; }
.label {
position: absolute;
top: 0; left: 0;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
font-size: calc(var(--height) * 0.55);
font-family: sans-serif;
font-weight: bold;
white-space: nowrap;
pointer-events: none;
user-select: none;
}
.label-dark { color: #333; text-shadow: 1px 1px 2px #000000; }
.label-light { text-shadow: 1px 1px 2px #000000; color: white; text-shadow: 0 1px 2px rgba(0,0,0,0.3); clip-path: inset(0 100% 0 0); transition: clip-path 0.3s ease; }
@keyframes pole-js {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}
`;
}
class ProgressBar extends Pole {/* for ease of use */}
customElements.define("pole-js", Pole);
customElements.define("progress-bar", ProgressBar);
/* Example Script:
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>HTML:5 ProgressBar.js Test</title>
<script src="pole.js" defer></script>
</head>
<body>
<progress-bar id="progress-bar-red" style="--bar-color: #FF0000;"></progress-bar>
<script>
document.addEventListener("DOMContentLoaded", () => {
const bar_red = document.getElementById("progress-bar-red");
for (let i = 0; i <= 100; i++) {
setTimeout(() => {
bar_red.value = i;
}, i * 100);
}
});
</script>
</body>
</html>
*//*
License (MIT):
Copyright (c) 2026 rattatwinko
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
*/

43
elements/styles/pole.css Normal file
View File

@@ -0,0 +1,43 @@
:host {
display: inline-block;
--bar-color: red;
}
.container {
width: 300px;
height: 25px;
background: #ddd;
border-radius: 4px;
overflow: hidden;
position: relative;
}
.valueBar {
width: 0%;
height: 100%;
background-color: var(--bar-color);
background-image: linear-gradient(
45deg,
rgba(255,255,255,0.3) 25%,
rgba(255,255,255,0) 25%,
rgba(255,255,255,0) 50%,
rgba(255,255,255,0.3) 50%,
rgba(255,255,255,0.3) 75%,
rgba(255,255,255,0) 75%,
rgba(255,255,255,0) 100%
);
background-size: 40px 40px;
animation: barberpole 1s linear infinite;
transition: width 0.3s ease;
}
.valueBar.complete {
animation: none;
}
@keyframes barberpole {
from { background-position: 0 0; }
to { background-position: 40px 0; }
}