Add home page tiles

This commit is contained in:
2024-10-10 12:36:15 +03:00
parent faabc828d6
commit 1c5b0ba2ec
9 changed files with 324 additions and 248 deletions

View File

@ -1,78 +0,0 @@
<template>
<h2 class="tool-title">Dummy image</h2>
<hr class="mt-5 mb-5">
<div class="input-group">
<label>Dimensions</label>
<div style="display: flex">
<input class="input" v-model="toolData.width" v-on:keyup="result" v-on:change="result" placeholder="500"
type="number" style="width: 70px">px
<span style="padding: 0 10px">x</span>
<input class="input" v-model="toolData.height" v-on:keyup="result" v-on:change="result" placeholder="500"
type="number" style="width: 70px">px
</div>
</div>
<div class="input-group">
<label for="result">Background colour</label>
<input class="input" v-model="toolData.color_bg" v-on:change="result" type="color">
</div>
<div class="input-group">
<label for="result">Text colour</label>
<input class="input" v-model="toolData.color_text" v-on:change="result" type="color">
</div>
<hr class="mt-5 mb-5">
<div class="input-group">
<label for="result">Result</label>
<div :style="{'width': toolData.width, 'height': toolData.height}">
<canvas ref="canvas" :width="toolData.width" :height="toolData.height"
style="max-width: 50vw; max-height: 50vh;"></canvas>
</div>
</div>
</template>
<script>
export default {
data() {
return {
toolData: {
width: 500,
height: 500,
color_bg: "#000000",
color_text: "#ffffff"
},
toolResult: ""
};
},
mounted() {
this.result();
},
methods: {
result() {
const ctx = this.$refs.canvas.getContext("2d");
// Set background color
ctx.fillStyle = this.toolData.color_bg;
ctx.fillRect(0, 0, this.toolData.width, this.toolData.height);
// Set text color and font
ctx.fillStyle = this.toolData.color_text;
ctx.font = "bold 30px Arial";
// Draw text on the canvas
const text = `${this.toolData.width}x${this.toolData.height}`;
const textWidth = ctx.measureText(text).width;
const x = (this.toolData.width - textWidth) / 2;
const y = this.toolData.height / 2 + 10;
ctx.fillText(text, x, y);
}
}
};
</script>
<style lang="scss">
</style>

View File

@ -1,7 +0,0 @@
<template>
/home
</template>
<style lang="scss">
</style>

View File

@ -1,181 +0,0 @@
<template>
<h2 class="tool-title">QR code</h2>
<hr class="mt-5 mb-5">
<!-- Type options -->
<div class="input-group">
<label for="text">Data:</label>
<textarea id="data" v-model="toolData.options.text" v-on:keyup="result"></textarea>
</div>
<!-- Basic options -->
<div class="input-group">
<label for="width">Width:</label>
<input id="width" v-model.number="toolData.options.width" v-on:change="result" v-on:keyup="result" type="number">
</div>
<div class="input-group">
<label for="height">Height:</label>
<input id="height" v-model.number="toolData.options.height" v-on:change="result" v-on:keyup="result" type="number">
</div>
<div class="input-group">
<label for="height">White border:</label>
<input id="quietZone" v-model.number="toolData.options.quietZone" v-on:change="result" v-on:keyup="result"
type="number">
</div>
<div class="input-group">
<label for="correctLevel">Correct Level:</label>
<div>
<select id="correctLevel" v-model="toolData.options.correctLevel" v-on:change="result">
<option value="L">L</option>
<option value="M">M</option>
<option value="Q">Q</option>
<option value="H">H</option>
</select>
</div>
</div>
<!-- Logo options -->
<div class="input-group">
<label for="logoUpload">Logo Upload:</label>
<div>
<input type="file" id="logoUpload" ref="logoUpload" @change="handleLogoUpload" accept="image/*">
<button @click="removeLogo">🞩</button>
</div>
</div>
<!-- Background Image options -->
<div class="input-group">
<label for="backgroundImageUpload">Background Image Upload:</label>
<div>
<input type="file" id="backgroundImageUpload" ref="backgroundImageUpload" @change="handleBackgroundImageUpload"
accept="image/*">
<button @click="removeBackgroundImage">🞩</button>
</div>
</div>
<div class="input-group">
<label for="backgroundImageAlpha">Background Image Alpha:</label>
<input id="backgroundImageAlpha" v-model.number="toolData.options.backgroundImageAlpha" step="0.1" min="0" max="1"
v-on:change="result" v-on:keyup="result" type="number">
</div>
<!--
<div class="input-group">
<label for="autoColor">Auto Color:</label>
<div>
<input id="autoColor" v-model="toolData.options.autoColor" v-on:change="result" type="checkbox">
</div>
</div>
-->
<!-- Drawing method option -->
<div class="input-group">
<label for="drawer">Drawer:</label>
<div>
<select id="drawer" v-model="toolData.options.drawer">
<option value="canvas">Canvas</option>
<option value="svg">SVG</option>
</select>
</div>
</div>
<hr class="mt-5 mb-5">
<div class="input-group">
<label>Result</label>
<div ref="qrcodeContainer"></div>
</div>
</template>
<script>
import QRCode from "easyqrcodejs";
import { unproxy } from "../../utils/unproxy";
export default {
data() {
return {
toolData: {
options: {
text: "",
width: 256,
height: 256,
correctLevel: "L",
logo: "",
quietZone: 10,
logoBackgroundTransparent: true,
backgroundImage: "",
backgroundImageAlpha: 1,
autoColor: true,
drawer: "canvas"
}
}
};
},
mounted() {
this.toolData.options.text = " ";
this.result();
this.toolData.options.text = "";
},
methods: {
result() {
// Clear previous QR code
this.$refs.qrcodeContainer.innerHTML = "";
let options = unproxy(this.toolData.options);
// convert correction levels
options.correctLevel = {
"L": QRCode.CorrectLevel.L,
"M": QRCode.CorrectLevel.M,
"Q": QRCode.CorrectLevel.Q,
"H": QRCode.CorrectLevel.H
}[options.correctLevel];
console.log(options.correctLevel);
// Generate the QR code
new QRCode(this.$refs.qrcodeContainer, options);
},
handleLogoUpload(event) {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = (e) => {
this.toolData.options.logo = e.target.result;
this.result();
};
reader.readAsDataURL(file);
}
},
handleBackgroundImageUpload(event) {
const file = event.target.files[0];
if (file) {
const reader = new FileReader();
reader.onload = (e) => {
this.toolData.options.backgroundImage = e.target.result;
this.result();
};
reader.readAsDataURL(file);
}
},
removeLogo() {
this.toolData.options.logo = "";
this.result();
},
removeBackgroundImage() {
this.toolData.options.backgroundImage = "";
this.result();
}
}
};
</script>
<style lang="scss">
</style>

View File

@ -28,7 +28,7 @@
<div>
<input id="inputTimestamp" type="number" v-model="toolData.inputTimestamp" :placeholder="currentTimestamp">
<button @click="convertFromUnix">Convert</button>
<button @click="convertFromUnix">Convert </button>
</div>
</div>
@ -57,7 +57,7 @@
<td><input type="number" v-model="toolData.inputMinute"></td>
<td><input type="number" v-model="toolData.inputSecond"></td>
<td>
<button @click="convertToUnix">Convert </button>
<button @click="convertToUnix">Convert </button>
</td>
</tr>
</tbody>