WLED/wled00/data/pxmagic/pxmagic.htm

2097 lines
58 KiB
HTML
Raw Normal View History

2023-06-15 00:38:11 +02:00
<!DOCTYPE html>
<html lang="pt_BR">
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="author" content="@ajotanc" />
<meta
http-equiv="Cache-Control"
content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>Pixel Magic Tool</title>
<link
rel="shortcut icon"
href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAKpJREFUeNqMU4sNxCAIpRcGODdxhN5ITnIj1RHYxG7QYsI1pD0+LyFGorzHExdwUEp581JlS2OM/X7mBT7m5U2i/juAAbO+VDn/UIIBs8ZX1g9Hz7YQwipAwtRUrkmOHh4YbnfpGVS+WybqnnWPPyVwZ74KMMsauN29ucCs25ZSzDjtzQVKpaqYm/RLmbnA6WzGbQuYdJscpXnMF+M4JFbvL0AwoZfSU4ABABLYR6r7lELpAAAAAElFTkSuQmCC" />
<style>
:root {
--overlay: rgba(0, 0, 0, 0.5);
--background: #111;
--gray-dark: #222;
--gray-medium: #333;
--gray-light: #eeeeee;
--gray: #bbb;
--blue-dark: #284352;
--blue-medium: #3b708b;
--blue-light: #48a;
--success-dark: #03440c;
--success-medium: #548c2f;
--success-light: #8ac926;
--error-dark: #a80a0a;
--error-medium: #c9262b;
--error-light: #ff595e;
--warning-dark: #dc2f02;
--warning-medium: #e85d04;
--warning-light: #f48c06;
}
::selection {
background: var(--blue-light);
}
* {
font-family: "Helvetica", Verdana, sans-serif;
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
background: var(--background);
}
small {
display: block;
font-weight: 400;
margin: 2px 0 5px;
color: var(--gray);
font-size: 12px;
}
a {
text-decoration: none;
color: var(--gray-light);
font-size: 12px;
font-weight: 600;
}
a:hover,
a:focus,
a:hide {
color: var(--gray-medium);
}
.container {
display: flex;
align-items: center;
justify-content: center;
}
.content {
width: 100%;
min-width: 540px;
max-width: 900px;
margin: 20px;
}
.w-full {
flex-basis: 100% !important;
}
.m-zero {
margin: 0 !important;
}
.m-bottom {
margin-bottom: 10px !important;
}
.m-top {
margin-top: 10px !important;
}
#response,
form,
canvas {
width: 100%;
}
.row {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
margin: 20px 0 0;
}
.row:nth-child(2) {
margin: 0;
}
.column {
flex-basis: calc(50% - 10px);
position: relative;
padding: 0 5px;
}
label {
display: block;
margin-bottom: 5px;
font-weight: bold;
color: var(--gray);
}
input[type="text"],
input[type="number"],
select,
textarea {
width: 100%;
padding: 10px;
border-radius: 50px;
background-color: var(--gray-medium);
border: 1px solid var(--gray-medium);
display: inline-block;
outline: none;
color: var(--gray-light);
font-size: 14px;
}
input[type="color"] {
width: 32px;
height: 32px;
cursor: pointer;
padding: 0px 1px;
outline: none;
}
.input-group {
display: flex;
justify-content: center;
align-items: center;
}
.input-group input:not([type="range"]) {
border-radius: 5px 0 0 5px;
}
.input-group .input-description {
min-width: 40px;
padding: 10px 0;
color: #222;
background: var(--gray);
border-radius: 0px 5px 5px 0;
border: 1px solid var(--gray);
border-left: 0;
text-align: center;
font-size: 14px;
line-height: 16px;
height: 38px;
font-weight: 600;
}
.input-group .square {
border-radius: 5px;
margin-left: 10px;
}
textarea {
resize: vertical;
min-height: 200px;
margin: 0 0 10px;
border-radius: 5px;
}
.customSelect select {
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
background-image: none;
padding-right: 20px;
cursor: pointer;
display: flex;
position: relative;
}
.customSelect::after {
content: "";
display: flex;
position: absolute;
top: calc(50% + 6px);
right: 16px;
transform: rotate(135deg);
width: 6px;
height: 6px;
border-top: 2px solid var(--gray-light);
border-right: 2px solid var(--gray-light);
pointer-events: none;
}
.dropzone {
width: calc(100% - 10px);
border: 1px dashed var(--gray-light);
background-color: var(--gray-dark);
color: var(--gray-light);
text-align: center;
padding: 40px 10px;
border-radius: 5px;
margin: 20px 5px;
transition: all 0.5s ease-in-out;
}
.dropzone:hover {
cursor: pointer;
color: var(--gray-dark);
background-color: var(--gray-light);
border-color: var(--gray-dark);
}
.dropzone p {
margin: 0;
padding: 0;
}
.dropzone.dragover {
background-color: var(--gray);
}
.range-slider {
appearance: none;
background-color: var(--gray);
height: 8px;
width: 100%;
border-radius: 10px;
outline: none;
margin: 16px 0;
}
.range-slider::-webkit-slider-thumb {
appearance: none;
height: 16px;
width: 16px;
background-color: var(--gray-dark);
border-radius: 50%;
cursor: pointer;
border: 0;
}
.switch {
position: relative;
display: inline-block;
width: 38px;
height: 20px;
}
.switch input {
outline: none;
display: none;
}
.switch-slider {
position: absolute;
cursor: pointer;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: var(--gray-medium);
border-radius: 34px;
transition: 0.4s;
}
.switch-slider:before {
position: absolute;
content: "";
height: 14px;
width: 14px;
left: 3px;
bottom: 3px;
background-color: white;
border-radius: 50%;
transition: 0.4s;
}
input:checked + .switch-slider {
background-color: var(--blue-light);
}
input:focus + .switch-slider {
box-shadow: 0 0 1px var(--blue-light);
}
input:checked + .switch-slider:before {
transform: translateX(18px);
}
#toast-container {
position: fixed;
bottom: 20px;
right: 20px;
z-index: 9999;
}
.toast {
display: flex;
align-items: center;
width: max-content;
padding: 6px 12px;
margin: 10px 0 0;
border-radius: 8px;
color: var(--gray-light);
transform: translateY(30px);
opacity: 0;
visibility: hidden;
}
.toast .toast-body {
padding: 8px 0;
font-weight: 600;
color: var(--gray-light);
letter-spacing: 0.5px;
}
.toast.success {
background-color: var(--success-medium);
}
.toast.error {
background-color: var(--error-light);
}
.toast.warning {
background-color: var(--warning-light);
}
.toast-progress {
position: absolute;
left: 4px;
bottom: 4px;
width: calc(100% - 8px);
height: 3px;
transform: scaleX(0);
transform-origin: left;
border-radius: inherit;
}
.toast.success .toast-progress {
background: linear-gradient(
to right,
var(--success-light),
var(--success-medium)
);
}
.toast.error .toast-progress {
background: linear-gradient(
to right,
var(--error-light),
var(--error-medium)
);
}
.toast.warning .toast-progress {
background: linear-gradient(
to right,
var(--warning-light),
var(--warning-medium)
);
}
#multipleCanvas {
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
position: relative;
}
#multipleCanvas .carousel {
display: flex;
height: 100%;
width: 100%;
cursor: pointer;
}
#multipleCanvas .carousel img {
display: block;
width: 100%;
height: 100%;
margin-right: 20px;
border: 0;
}
#multipleCanvas .carousel img:last-child {
margin-right: 0;
}
.button {
width: 100%;
border: 0;
padding: 10px 18px;
border-radius: 50px;
color: var(--gray);
cursor: pointer;
margin: 0 0 10px;
background: var(--gray-medium);
border: 1px solid var(--gray-dark);
transition: all 0.5s ease-in-out;
font-size: 14px;
font-weight: 600;
}
.button:hover {
background: var(--gray-dark);
border: 1px solid var(--gray-medium);
}
.button:last-child {
margin-bottom: 0;
}
.buttons {
display: flex;
flex-direction: column;
width: 100%;
}
#preview {
width: 100%;
margin: 20px 0 10px;
border-radius: 8px;
}
#preview .buttons {
margin: 0 0 15px;
}
#recreatedImage {
margin: 0 5px;
width: calc(100% - 10px);
}
#overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--overlay);
display: none;
}
#overlay.loading::after {
content: "";
display: block;
position: absolute;
top: calc(50% - 19px);
left: calc(50% - 19px);
width: 26px;
height: 26px;
border: 6px solid var(--gray-light);
border-top-color: var(--gray-dark);
border-radius: 50%;
animation: spin 1s linear infinite;
}
input.invalid,
select.invalid,
textarea.invalid {
border: 1px solid var(--error-dark);
}
.error-message {
display: block;
color: var(--error-dark);
padding: 4px 0;
font-weight: 600;
font-size: 12px;
}
.slide-container {
width: 100%;
display: flex;
overflow-x: auto;
scroll-snap-type: x mandatory;
}
.slide {
scroll-snap-align: center;
}
.header {
display: flex;
align-items: center;
padding: 0 0 40px;
flex-direction: column;
}
.header .brand {
width: 100%;
max-width: 200px;
height: 100%;
display: block;
outline: none;
border: 0;
}
footer {
margin: 10px 5px 0;
}
@media (max-width: 767px) {
.m-top {
margin: 20px 0 !important;
}
.content {
min-width: 360px;
}
.header {
padding-bottom: 0;
}
.row {
flex-direction: column;
margin: 0;
}
.column {
flex-basis: 100%;
margin: 20px 0 0;
padding: 0;
}
}
@media (min-width: 768px) {
.row {
flex-wrap: nowrap;
}
}
@keyframes spin {
to {
transform: rotate(360deg);
}
}
@keyframes progress {
to {
transform: scaleX(1);
}
}
@keyframes fadeIn {
5% {
opacity: 1;
visibility: visible;
transform: translateY(0);
}
95% {
opacity: 1;
transform: translateY(0);
}
}
</style>
</head>
<body>
<div class="container">
<div class="content">
<form id="formGenerate" novalidate>
<div class="header">
<svg
class="brand"
version="1.1"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
x="0px"
y="0px"
width="200px"
height="130px"
viewBox="0 0 200 130"
enable-background="new 0 0 200 130"
xml:space="preserve">
<image
width="200"
height="130"
x="0"
y="0"
href="data:image/png;base64,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
ZVJlYWR5ccllPAAAAABJRU5ErkJggg==" />
</svg>
</div>
<div class="row">
<div class="column valitade">
<label for="hostname">Hostname</label>
<input type="text" name="hostname" id="hostname" required />
</div>
<div class="column valitade">
<label for="name">Preset Name</label>
<input
type="text"
name="name"
id="name"
value="New Preset"
required />
</div>
</div>
<div class="row">
<div class="column valitade">
<label for="pattern">Pattern</label>
<div class="customSelect">
<select name="pattern" id="pattern" required>
<option value="">Select a choice</option>
<option value="1" title="['ffffff']" selected>
Individual
</option>
<option value="2" title="[0, 'ffffff']">Index</option>
<option value="3" title="[0, 5, 'ffffff']">Range</option>
</select>
</div>
</div>
<div class="column valitade">
<label for="output">Output</label>
<div class="customSelect">
<select name="output" id="output" required>
<option value="">Select a choice</option>
<option value="json" selected>WLED JSON</option>
<option value="ha">Home Assistant</option>
<option value="curl">CURL</option>
</select>
</div>
</div>
</div>
<div class="row output" style="display: none">
<div class="column valitade">
<label for="device">Device</label>
<input type="text" name="device" id="device" required />
</div>
<div class="column valitade">
<label for="uniqueId">Unique Id</label>
<input type="text" name="uniqueId" id="uniqueId" required />
</div>
<div class="column valitade">
<label for="friendlyName">Friendly Name</label>
<input
type="text"
name="friendlyName"
id="friendlyName"
required />
</div>
</div>
<div class="row">
<div class="column valitade">
<label for="segments">Segment Id</label>
<div class="customSelect">
<select name="segments" id="segments" required>
<option value="">Select a choice</option>
</select>
</div>
</div>
<div class="column valitade">
<label for="brightness">Brightness</label>
<div class="input-group">
<input
type="range"
name="brightness"
id="brightness"
min="0"
max="255"
value="128"
class="range-slider" />
<div id="brightnessValue" class="input-description square">
128
</div>
</div>
</div>
</div>
<div class="row">
<div class="column valitade">
<label for="animation">Animation</label>
<label class="switch">
<input type="checkbox" name="animation" id="animation" />
<span class="switch-slider"></span>
</label>
</div>
<div class="column valitade">
<label for="transparentImage">Transparent Image</label>
<label class="switch">
<input
type="checkbox"
name="transparentImage"
id="transparentImage" />
<span class="switch-slider"></span>
</label>
</div>
<div class="column valitade">
<label for="resizeImage">Resize Image</label>
<label class="switch">
<input type="checkbox" name="resizeImage" id="resizeImage" />
<span class="switch-slider"></span>
</label>
</div>
</div>
<div class="row resizeImage" style="display: none">
<div class="column valitade">
<label for="width">Width</label>
<input type="number" name="width" id="width" value="16" />
</div>
<div class="column valitade">
<label for="height">Height</label>
<input type="number" name="height" id="height" value="16" />
</div>
</div>
<div class="row animation" style="display: none">
<div class="column valitade">
<label for="frames">Frames</label>
<input type="number" name="frames" id="frames" value="4" />
</div>
<div class="column valitade">
<label for="duration">Duration</label>
<div class="input-group">
<input
type="number"
name="duration"
id="duration"
value="0.5"
required="required"
min="0"
step="0.1"
inputmode="numeric" />
<div class="input-description">sec</div>
</div>
</div>
<div class="column valitade">
<label for="transition">Transition</label>
<div class="input-group">
<input
type="number"
name="transition"
id="transition"
value="0.2"
required="required"
min="0"
step="0.1"
inputmode="numeric" />
<div class="input-description">sec</div>
</div>
</div>
</div>
<div class="row transparentImage" style="display: none">
<div class="column valitade w-full">
<label for="color">Choose a color</label>
<small>
Color that will replace the
<strong>transparent pixels</strong> in the image
</small>
<input type="color" name="color" id="color" value="#eeeeee" />
</div>
</div>
<div class="row">
<div class="column valitade w-full">
<label for="images">Images</label>
<div class="customSelect">
<select name="images" id="images" required>
<option value="">Select a choice</option>
</select>
</div>
</div>
</div>
<div class="row m-zero">
<div class="column w-full">
<small>
Images uploaded to
<a id="wledEdit" href="http://[wled-ip]/edit" target="_blank">
<strong>WLED</strong>
</a>
or upload image
</small>
</div>
</div>
<div id="dropzone" class="dropzone valitade" style="display: none">
<p id="dropzoneLabel">
Drag and drop a file here or click to select a file
</p>
<input
type="file"
name="source"
id="source"
accept="image/*"
style="display: none" />
</div>
<div class="row">
<div class="column w-full">
<button type="button" class="button" id="btnGenerate">
Generate
</button>
</div>
</div>
</form>
<div id="preview" style="display: none">
<div class="row m-zero">
<div class="column w-full">
<textarea
name="response"
id="response"
readonly="readonly"></textarea>
</div>
</div>
<div class="buttons">
<div class="row m-zero">
<div class="column">
<button type="button" class="button" id="btnCopyToClipboard">
Copy to Clipboard
</button>
</div>
<div class="column">
<button type="button" class="button" id="btnSave">Save</button>
</div>
<div class="column">
<button type="button" class="button" id="btnDownloadPreset">
Download
</button>
</div>
</div>
<div class="row m-zero" id="simulate" style="display: none">
<div class="column w-full m-top">
<button type="button" class="button" id="btnSimulatePreset">
Simulate
</button>
</div>
</div>
</div>
<div id="recreatedImage"></div>
</div>
<footer>
<a href="https://github.com/ajotanc/PixelMagicTool" target="_blank"
>Github &copy; Pixel Magic Tool</a
>
</footer>
</div>
</div>
<div id="toast-container"></div>
<div id="overlay"></div>
</body>
<script>
const params = new URLSearchParams(window.location.search);
const host =
params.get("mode") === "dev"
? "10.0.0.41"
: window.location.host
? window.location.host
: "0.0.0.0";
const protocol =
window.location.protocol === "file:" ? "http:" : window.location.protocol;
let WLED_URL = `${protocol}//${host}`;
const hostname = document.getElementById("hostname");
hostname.value = host;
hostname.addEventListener("change", async () => {
WLED_URL = `${protocol}//${hostname.value}`;
await segments();
await images();
hostnameLabel();
});
let jsonSaveWLED = [];
let jsonSendWLED = {};
(async function () {
await segments();
await images();
hostnameLabel();
})();
function hostnameLabel() {
const link = document.getElementById("wledEdit");
link.href = link.href.replace("[wled-ip]", hostname.value);
}
async function playlist() {
const { value: duration } = document.getElementById("duration");
const { value: transition } = document.getElementById("transition");
const { value: name } = document.getElementById("name");
const urlPreset = `${WLED_URL}/presets.json`;
const url = `${WLED_URL}/json`;
try {
const response = await fetch(urlPreset);
const data = await response.json();
const items = Object.keys(data);
const ps = items.filter(
(key) =>
typeof data[key] === "object" &&
!data[key].playlist &&
data[key].n &&
data[key].n.startsWith(name)
);
const psave =
items.find(
(key) =>
typeof data[key] === "object" &&
data[key].playlist &&
data[key].n &&
data[key].n === name
) || parseInt(items.pop()) + 1;
const body = {
psave,
n: name,
on: true,
o: false,
playlist: {
ps,
dur: Array.from({ length: ps.length }, () => duration * 10),
transition: Array.from(
{ length: ps.length },
() => transition * 10
),
repeat: 0,
end: 0,
},
};
const options = {
method: "POST",
body: JSON.stringify(body),
};
try {
const response = await fetch(url, options);
const { success } = await response.json();
if (success) {
toast(`Playlist "${name}" save successfully!`);
}
} catch (error) {
toast(`Error saving preset: ${error}`, "error");
}
} catch (error) {
toast(error, "error");
}
}
async function insert(data, isAnimated = false, delay = 5000) {
const urlPreset = `${WLED_URL}/presets.json`;
const url = `${WLED_URL}/json`;
let requestsCompleted = 0;
show();
const promises = data.map(async (item) => {
return new Promise((resolve, reject) => {
setTimeout(async () => {
try {
const response = await fetch(urlPreset);
const data = await response.json();
const items = Object.keys(data);
const psave =
items.find(
(key) =>
typeof data[key] === "object" &&
!data[key].playlist &&
data[key].n === item.n
) || parseInt(items.pop()) + 1;
const body = Object.assign(item, { psave });
const options = {
method: "POST",
body: JSON.stringify(body),
};
try {
const response = await fetch(url, options);
const { success } = await response.json();
if (success) {
toast(`Preset "${item.n}" save successfully!`);
}
} catch (error) {
toast(`Error saving preset: ${error}`, "error");
}
} catch (error) {
toast(error, "error");
} finally {
resolve();
}
}, delay * requestsCompleted++);
});
});
await Promise.all(promises);
if (isAnimated) {
setTimeout(async () => {
await playlist()
.then(() => {
hide();
})
.catch(() => {
hide();
});
}, delay);
} else {
hide();
}
}
async function images() {
const url = `${WLED_URL}/edit?list=/`;
const selectImages = document.getElementById("images");
selectImages.innerHTML = "";
const options = [
{ text: "Select a choice", value: "" },
{ text: "Upload", value: "upload" },
];
options.forEach(({ text, value }) => {
const option = new Option(text, value);
selectImages.appendChild(option);
});
show();
try {
const response = await fetch(url);
const data = await response.json();
const mimeTypes = ["jpeg", "jpg", "png", "gif"];
const images = data
.filter((file) => {
const { name } = file;
const [filename, mimetype] = name.split(".");
file.name = name.replace("/", "");
return mimeTypes.includes(mimetype);
})
.map((file) => {
const { name } = file;
const option = document.createElement("option");
option.text = name;
option.value = `${WLED_URL}/${name}`;
selectImages.add(option);
});
} catch (error) {
toast(error, "error");
} finally {
hide();
}
}
async function segments() {
const selectSegments = document.getElementById("segments");
const pattern = document.getElementById("pattern");
const width = document.getElementById("width");
const height = document.getElementById("height");
const url = `${WLED_URL}/json/state`;
selectSegments.innerHTML = "";
const options = [{ text: "Select a choice", value: "" }];
options.forEach(({ text, value }) => {
const option = new Option(text, value);
selectSegments.appendChild(option);
});
show();
try {
const response = await fetch(url);
const { seg: segments } = await response.json();
segments &&
segments.forEach(function ({ id, n, stop: w, stopY: h }, index) {
const option = document.createElement("option");
option.text = n ? n : `Segment ${id}`;
option.value = id;
option.dataset.width = w;
option.dataset.height = h;
if (index === 0) {
option.selected = true;
width.value = w;
height.value = h;
pattern.value = w * h > 512 ? 3 : 1;
}
selectSegments.add(option);
});
} catch (error) {
toast(error, "error");
} finally {
hide();
}
}
const dropzone = document.getElementById("dropzone");
const source = document.getElementById("source");
dropzone.addEventListener("dragover", (e) => {
e.preventDefault();
});
dropzone.addEventListener("drop", (e) => {
e.preventDefault();
const dropzoneLabel = document.getElementById("dropzoneLabel");
console.log(e.dataTransfer);
source.files = e.dataTransfer.files;
const { name } = source.files[0];
dropzoneLabel.textContent = `Image ${name} selected!`;
validateForm(e);
});
dropzone.addEventListener("click", () => {
source.click();
});
source.addEventListener("change", (e) => {
const dropzoneLabel = document.getElementById("dropzoneLabel");
const { value } = e.target;
if (value) {
const { name } = e.target.files[0];
dropzoneLabel.textContent = `Image ${name} selected!`;
} else {
dropzoneLabel.textContent =
"Drag and drop a file here or click to select a file";
}
validateForm(e);
});
document
.getElementById("btnSimulatePreset")
.addEventListener("click", async () => {
const url = `${WLED_URL}/json/state`;
const options = {
method: "POST",
body: JSON.stringify(jsonSendWLED),
};
show();
try {
const response = await fetch(url, options);
const { success } = await response.json();
if (success) {
toast("Preset sent successfully!");
}
} catch (error) {
toast(error, "error");
} finally {
hide();
}
});
document.getElementById("btnSave").addEventListener("click", async () => {
const { checked } = document.getElementById("animation");
const { value: name } = document.getElementById("name");
if (checked) {
await insert(jsonSaveWLED, true);
} else {
jsonSaveWLED.splice(0);
jsonSaveWLED.push(
Object.assign({}, jsonSendWLED, { n: name, o: false })
);
await insert(jsonSaveWLED);
}
});
document.querySelectorAll("#btnCopyToClipboard").forEach((button) => {
button.addEventListener("click", async () => {
const response = document.getElementById("response");
response.select();
try {
await navigator.clipboard.writeText(response.value);
toast("Text copied to clipboard");
} catch (error) {
try {
await document.execCommand("copy");
toast("Text copied to clipboard");
} catch (error) {
toast(error, "error");
}
}
});
});
document.querySelectorAll("#btnDownloadPreset").forEach((button) => {
button.addEventListener("click", () => {
const { value: response } = document.getElementById("response");
const { value: output } = document.getElementById("output");
const timestamp = new Date().getTime();
const filename = `WLED_${timestamp}`;
downloadFile(response, filename, output);
});
});
document.getElementById("segments").addEventListener("change", (e) => {
const width = document.getElementById("width");
const height = document.getElementById("height");
const { width: w, height: h } = e.target.selectedOptions[0].dataset;
width.value = w;
height.value = h;
});
document.getElementById("output").addEventListener("change", (e) => {
const output = document.getElementsByClassName("output");
const { value } = e.target.selectedOptions[0];
Array.from(output).forEach(function (element) {
if (value === "ha") {
element.style.display = "flex";
} else {
element.style.display = "none";
}
});
});
document.getElementById("brightness").addEventListener("change", (e) => {
const { value } = e.target;
const brightnessValue = document.getElementById("brightnessValue");
brightnessValue.textContent = value;
});
document.getElementById("images").addEventListener("change", (e) => {
const dropzone = document.getElementById("dropzone");
const { value } = e.target.selectedOptions[0];
if (value === "upload") {
const dropzoneLabel = document.getElementById("dropzoneLabel");
const source = document.getElementById("source");
dropzoneLabel.textContent =
"Drag and drop a file here or click to select a file";
source.value = "";
dropzone.style.display = "block";
} else {
dropzone.style.display = "none";
}
});
document
.getElementById("transparentImage")
.addEventListener("change", (e) => {
const transparentImage =
document.getElementsByClassName("transparentImage");
const { checked } = e.target;
Array.from(transparentImage).forEach(function (element) {
if (checked) {
element.style.display = "flex";
} else {
element.style.display = "none";
}
});
});
document.getElementById("resizeImage").addEventListener("change", (e) => {
const resizeImage = document.getElementsByClassName("resizeImage");
const pattern = document.getElementById("pattern");
const { checked } = e.target;
Array.from(resizeImage).forEach(function (element) {
if (checked) {
pattern.value = 3;
element.style.display = "flex";
} else {
pattern.value = 1;
element.style.display = "none";
}
});
});
document.getElementById("animation").addEventListener("change", (e) => {
const animation = document.getElementsByClassName("animation");
const pattern = document.getElementById("pattern");
const { checked } = e.target;
Array.from(animation).forEach(function (element) {
if (checked) {
toast(
'If you want all frames in the image, set it to "0"',
"warning",
5000
);
element.style.display = "flex";
pattern.value = 3;
} else {
element.style.display = "none";
pattern.value = 1;
}
});
});
document
.getElementById("btnGenerate")
.addEventListener("click", async (event) => {
const { checked } = document.getElementById("animation");
const recreatedImage = document.getElementById("recreatedImage");
const preview = document.getElementById("preview");
const simulate = document.getElementById("simulate");
if (validateForm(event)) {
jsonSaveWLED.splice(0);
preview.style.display = "block";
recreatedImage.innerHTML = "";
// dataAnimation.forEach((buttons) => {
// const animation =
// buttons.dataset.animation === "true" ? true : false;
// if (animation === checked) {
// buttons.style.display = "flex";
// } else {
// buttons.style.display = "none";
// }
// });
if (checked) {
simulate.style.display = "none";
await generateAnimation();
} else {
simulate.style.display = "flex";
await generate();
}
}
});
function loadImage(src) {
return new Promise((resolve, reject) => {
const image = new Image();
image.addEventListener("load", function () {
resolve(image);
});
image.addEventListener("error", function () {
reject(new Error("Error loading image"));
});
image.src = src;
});
}
async function generate() {
if (checkMimeType()) {
const file = document.getElementById("source").files[0];
const { value: images } = document.getElementById("images");
const { value: output } = document.getElementById("output");
show();
try {
const response = document.getElementById("response");
const recreatedImage = document.getElementById("recreatedImage");
const urlImage =
images === "upload" ? URL.createObjectURL(file) : images;
const image = await loadImage(urlImage);
const { canvas, bri, id, i, length } = recreate(image);
await new Promise((resolve) => {
Object.assign(jsonSendWLED, {
on: true,
bri,
seg: {
id,
i,
},
});
resolve();
});
const jsonData = JSON.stringify(jsonSendWLED);
const dataResponse = formatOutput(output, jsonData);
response.value = dataResponse;
recreatedImage.appendChild(canvas);
} catch (error) {
toast(error, "error");
} finally {
hide();
}
}
}
async function generateAnimation() {
if (checkMimeType()) {
const file = document.getElementById("source").files[0];
const images = document.getElementById("images");
const response = document.getElementById("response");
const { value: presetName } = document.getElementById("name");
const { value: amount } = document.getElementById("frames");
const { value: output } = document.getElementById("output");
const { value: duration } = document.getElementById("duration");
const { text: imageName, value: imageValue } =
images.selectedOptions[0];
show();
try {
const body = new FormData();
if (imageValue === "upload") {
body.append("image", file);
} else {
const responseImage = await fetch(imageValue);
const blob = await responseImage.blob();
const file = new File([blob], imageName, { type: blob.type });
body.append("image", file);
}
const responseFrames = await fetch(
`https://pixelmagictool.vercel.app/api/wled/frames?amount=${amount}`,
{
method: "POST",
body,
}
);
const { message, frames } = await responseFrames.json();
if (!responseFrames.ok) {
toast(message, "error");
return;
}
jsonSaveWLED = [];
const texteares = [];
const canvases = [];
const delay = duration * 1000;
const promises = frames.map(async (frame, index) => {
const image = await loadImage(frame);
const { canvas, bri, id, i } = recreate(image);
const jsonData = {
on: true,
bri,
seg: { id, i },
};
const n = `${presetName} ${index + 1}`;
texteares.push(`${n}|${JSON.stringify(jsonData)}`);
canvases.push(canvas);
jsonSaveWLED.push(Object.assign(jsonData, { n, o: true }));
});
await Promise.all(promises);
const dataResponse = texteares.map((item) => {
const [presetName, json] = item.split("|");
const outputFormatted = formatOutput(output, json);
const comment = ["ha", "curl"].includes(output) ? "#" : "//";
return `${comment} ${presetName}\n${outputFormatted}`;
});
response.value = dataResponse.join("\n");
toast(message);
carousel("recreatedImage", canvases, delay);
} catch (error) {
toast(error, "error");
} finally {
hide();
}
}
}
function recreate(image) {
const { value: pattern } = document.getElementById("pattern");
const { value: segmentId } = document.getElementById("segments");
const { value: bri } = document.getElementById("brightness");
const { value: width } = document.getElementById("width");
const { value: height } = document.getElementById("height");
const { checked: resizeImage } = document.getElementById("resizeImage");
const pixelsRef = 48;
const fullWidth = width * pixelsRef;
const fullHeight = height * pixelsRef;
const fontSize = fullWidth <= 768 ? 14 : 18;
const length = width * height;
const colors = [];
let i = [];
const { ctx: reference } = createCanvas(width, height);
reference.drawImage(image, 0, 0, width, height);
const imageData = reference.getImageData(0, 0, width, height);
const pixels = imageData.data;
const { canvas, ctx } = createCanvas(fullWidth, fullHeight);
for (let y = 0; y < height; y++) {
for (let x = 0; x < width; x++) {
const index = y * width + x;
const red = pixels[index * 4];
const green = pixels[index * 4 + 1];
const blue = pixels[index * 4 + 2];
const alpha = pixels[index * 4 + 3];
const hex = pixelColor(red, green, blue, alpha);
const { r, g, b } = hexToRgb(hex);
colors.push(hex);
let coordinateX = x * pixelsRef;
let coordinateY = y * pixelsRef;
ctx.fillStyle = `rgb(${r}, ${g}, ${b})`;
ctx.fillRect(coordinateX, coordinateY, pixelsRef, pixelsRef);
ctx.lineWidth = 1;
ctx.strokeStyle = "#eeeeee";
ctx.strokeRect(coordinateX, coordinateY, pixelsRef, pixelsRef);
let offsetX = coordinateX + pixelsRef / 2;
let offsetY = coordinateY + pixelsRef / 2;
ctx.font = `${fontSize}px Arial`;
ctx.fillStyle = hex == "ffffff" ? "#252525" : "#eeeeee";
ctx.textAlign = "center";
ctx.textBaseline = "middle";
ctx.fillText(index + 1, offsetX, offsetY);
}
}
switch (pattern) {
case "1":
i = colors;
break;
case "2":
i = individualLedIndex(colors);
break;
case "3":
i = rangeLeds(colors);
break;
}
return {
canvas,
bri,
id: segmentId,
i,
length,
};
}
function rangeLeds(colors) {
let startIndex = 0;
let endIndex = 0;
let currentColor = colors[0];
let pattern = [];
colors.forEach((color, index) => {
if (color !== currentColor) {
endIndex = index;
const repetitions = endIndex - startIndex;
if (repetitions == 1) {
pattern.push(currentColor);
} else {
pattern.push(startIndex, endIndex, currentColor);
}
startIndex = index;
}
currentColor = color;
});
const lastRepetition = colors.length - startIndex;
if (lastRepetition === 1) {
pattern.push(currentColor);
} else {
pattern.push(startIndex, colors.length, currentColor);
}
return pattern;
}
function pixelColor(r, g, b, a) {
const { checked } = document.getElementById("transparentImage");
const { value } = document.getElementById("color");
if (a === 0) {
if (checked) {
return value.replace("#", "").toLowerCase();
}
return rgbToHex(255, 255, 255);
}
return rgbToHex(r, g, b);
}
function hexToRgb(hex) {
hex = hex.replace("#", "");
if (hex.length === 3) {
hex = hex.replace(/(.)/g, "$1$1");
}
const [r, g, b] = hex
.match(/.{2}/g)
.map((component) => parseInt(component, 16));
return { r, g, b };
}
function rgbToHex(r, g, b) {
const hex = ((r << 16) | (g << 8) | b).toString(16);
return ("000000" + hex).slice(-6);
}
function individualLedIndex(colors) {
const pattern = [];
colors.forEach((led, index) => {
pattern.push(index, led);
});
return pattern;
}
function createCanvas(width, height) {
const canvas = document.createElement("canvas");
canvas.width = width;
canvas.height = height;
const ctx = canvas.getContext("2d", { willReadFrequently: true });
ctx.imageSmoothingQuality = "high";
ctx.imageSmoothingEnabled = false;
return { canvas, ctx };
}
function formatOutput(output, json) {
return output === "ha"
? homeAssistant(json)
: output === "curl"
? curl(json)
: json;
}
function downloadFile(text, filename, output) {
let mimeType;
let fileExtension;
let response;
switch (output) {
case "json":
mimeType = "application/json";
fileExtension = "json";
break;
case "ha":
mimeType = "application/x-yaml";
fileExtension = "yaml";
break;
case "curl":
mimeType = "text/plain";
fileExtension = "txt";
break;
}
const blob = new Blob([text], { type: mimeType });
const url = URL.createObjectURL(blob);
const anchorElement = document.createElement("a");
anchorElement.href = url;
anchorElement.download = `${filename}.${fileExtension}`;
anchorElement.click();
WLED_URL.revokeObjectURL(url);
}
function homeAssistant(jsonData) {
const { value: device } = document.getElementById("device");
const { value: friendly_name } = document.getElementById("friendlyName");
const { value: unique_id } = document.getElementById("uniqueId");
const { value: hostname } = document.getElementById("hostname");
if (device) {
const yamlData = {
switches: {
[device]: {
friendly_name,
unique_id,
command_on: `curl -X POST "http://${hostname}/json/state" -d '${jsonData}' -H "Content-Type: application/json"`,
command_off: `curl -X POST "http://${hostname}/json/state" -d '{"on":false}' -H "Content-Type: application/json"`,
},
},
};
return convertToYaml(yamlData);
}
}
function curl(jsonData) {
const { value: hostname } = document.getElementById("hostname");
return `curl -X POST "http://${hostname}/json/state" -d '${jsonData}' -H "Content-Type: application/json"`;
}
function convertToYaml(obj) {
function processValue(value, indentationLevel) {
if (typeof value === "object" && !Array.isArray(value)) {
return processObject(value, indentationLevel + 1);
} else {
return value;
}
}
function processObject(obj, indentationLevel = 0) {
const indent = " ".repeat(indentationLevel);
const lines = Object.entries(obj).map(([key, value]) => {
if (typeof value === "object" && !Array.isArray(value)) {
return `${indent}${key}:\n${processObject(
value,
indentationLevel + 1
)}`;
} else {
return `${indent}${key}: ${processValue(value, indentationLevel)}`;
}
});
return lines.join("\n");
}
return processObject(obj);
}
function toast(
message,
type = "success",
duration = 2000,
hideElement = "preview"
) {
const hide = document.getElementById(hideElement);
const toast = document.createElement("div");
const wait = 100;
toast.style.animation = "fadeIn";
toast.style.animationDuration = `${duration + wait}ms`;
toast.style.animationTimingFunction = "linear";
toast.classList.add("toast", type);
const body = document.createElement("span");
body.classList.add("toast-body");
body.textContent = message;
toast.appendChild(body);
const progress = document.createElement("div");
progress.classList.add("toast-progress");
progress.style.animation = "progress";
progress.style.animationDuration = `${duration + wait}ms`;
progress.style.animationDelay = "0s";
toast.appendChild(progress);
document.getElementById("toast-container").appendChild(toast);
setTimeout(() => {
toast.style.opacity = 0;
setTimeout(() => {
toast.remove();
}, wait);
}, duration);
if (type === "error") {
hide.style.display = "none";
}
}
function carousel(id, images, delay = 3000) {
let index = 0;
const carousel = document.createElement("div");
carousel.classList.add("carousel");
images.forEach((canvas, i) => {
if (i === index) {
carousel.appendChild(canvas);
} else {
canvas.style.display = "none";
carousel.appendChild(canvas);
}
});
const container = document.getElementById(id);
container.innerHTML = "";
container.appendChild(carousel);
function next() {
images[index].style.display = "none";
index++;
if (index >= images.length) {
index = 0;
}
images[index].style.display = "block";
loop();
}
function previous() {
images[index].style.display = "none";
index--;
if (index < 0) {
index = images.length - 1;
}
images[index].style.display = "block";
loop();
}
let timeoutId;
function loop() {
clearTimeout(timeoutId);
timeoutId = setTimeout(() => {
next();
if (index === 0) {
carousel.scrollTo(0, 0);
}
}, delay);
}
loop();
carousel.addEventListener("mouseover", () => {
clearTimeout(timeoutId);
});
carousel.addEventListener("mouseout", () => {
loop();
});
}
function show() {
const overlay = document.getElementById("overlay");
overlay.classList.add("loading");
overlay.style.display = "block";
overlay.style.cursor = "not-allowed";
document.body.style.overflow = "hidden";
}
function hide() {
const overlay = document.getElementById("overlay");
overlay.classList.remove("loading");
overlay.style.display = "none";
overlay.style.cursor = "default";
document.body.style.overflow = "auto";
}
function validateForm(event) {
event.preventDefault();
const form = document.getElementById("formGenerate");
const inputs = form.querySelectorAll("input, select, textarea");
let isValid = true;
const browserLanguage = navigator.language || navigator.userLanguage;
inputs.forEach((input) => {
const parent = input.closest(".valitade");
if (!parent) {
return;
}
let isVisible = true;
let tempParent = parent;
while (tempParent !== document.body) {
const parentStyles = window.getComputedStyle(tempParent);
if (
parentStyles.display === "none" ||
parentStyles.display === "hidden"
) {
isVisible = false;
break;
}
tempParent = tempParent.parentNode;
}
if (
isVisible &&
(!input.checkValidity() ||
(input.type === "file" && input.files.length === 0))
) {
input.classList.add("invalid");
const errorMessage =
input.dataset.errorMessage ||
input.validationMessage ||
getRequiredFieldMessage(browserLanguage);
let errorElement = parent.querySelector(".error-message");
if (!errorElement) {
errorElement = document.createElement("div");
errorElement.classList.add("error-message");
parent.appendChild(errorElement);
}
errorElement.innerText = errorMessage;
isValid = false;
} else {
input.classList.remove("invalid");
const errorElement = parent.querySelector(".error-message");
if (errorElement) {
parent.removeChild(errorElement);
}
}
});
return isValid;
}
function getRequiredFieldMessage(language) {
if (language.includes("-")) {
language = language.split("-")[1];
}
const messages = {
en: "This field is required.",
br: "Este campo é obrigatório.",
pt: "Este campo é obrigatório.",
es: "¡Este campo es obligatorio.",
fr: "Ce champ est obligatoire.",
de: "Dieses Feld ist erforderlich.",
it: "Questo campo è obbligatorio.",
};
return messages[language.toLowerCase()] || messages.en;
}
function checkMimeType() {
const { checked: animation } = document.getElementById("animation");
const mimeTypes = animation ? ["gif"] : ["jpeg", "jpg", "png", "gif"];
const source = document.getElementById("source").files[0];
const images = document.getElementById("images");
const { value: image } = images.selectedOptions[0];
const extension =
image === "upload"
? source.name.split(".").pop()
: image.split(".").pop();
if (!mimeTypes.includes(extension)) {
toast(
animation
? "Image format is not valid, select a GIF!"
: "Image format is not valid",
"error"
);
return false;
}
return true;
}
</script>
</html>