mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
fix some things and move things around
This commit is contained in:
parent
45e8f98eb4
commit
26ffcd508f
3 changed files with 6513 additions and 5188 deletions
11545
pnpm-lock.yaml
generated
11545
pnpm-lock.yaml
generated
File diff suppressed because it is too large
Load diff
|
@ -3,7 +3,6 @@
|
||||||
import { describe, expect, it } from 'vitest';
|
import { describe, expect, it } from 'vitest';
|
||||||
import {
|
import {
|
||||||
type AspectRatio,
|
type AspectRatio,
|
||||||
type Dimensions,
|
|
||||||
calculateAspectRatio,
|
calculateAspectRatio,
|
||||||
calculateDimensions,
|
calculateDimensions,
|
||||||
simplifyRatio,
|
simplifyRatio,
|
||||||
|
|
|
@ -1,91 +1,74 @@
|
||||||
<!-- AspectRatioCalculator.vue -->
|
<!-- AspectRatioCalculator.vue -->
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { computed, ref, watch } from 'vue';
|
import { ref } from 'vue';
|
||||||
import { NDivider, NInputNumber, NSelect, NSpace } from 'naive-ui';
|
import { NButton, NInputNumber, NRadio, NRadioGroup, NSpace } from 'naive-ui';
|
||||||
import {
|
import {
|
||||||
type AspectRatio,
|
|
||||||
calculateAspectRatio,
|
calculateAspectRatio,
|
||||||
calculateDimensions,
|
calculateDimensions,
|
||||||
simplifyRatio,
|
|
||||||
} from './aspect-ratio-calculator.service';
|
} from './aspect-ratio-calculator.service';
|
||||||
|
|
||||||
const width = ref<number | null>(null);
|
const width = ref<number | null>(null);
|
||||||
const height = ref<number | null>(null);
|
const height = ref<number | null>(null);
|
||||||
const r1 = ref<number | null>(null);
|
const r1 = ref<number | null>(null);
|
||||||
const r2 = ref<number | null>(null);
|
const r2 = ref<number | null>(null);
|
||||||
|
const mode = ref<'ratio' | 'dimensions'>('ratio');
|
||||||
|
const result = ref<string | null>(null);
|
||||||
|
|
||||||
const presets = [
|
function calculateResult() {
|
||||||
{ label: 'HD Video 16:9', value: '16:9' },
|
if (mode.value === 'ratio' && width.value && height.value) {
|
||||||
{ label: 'SD Video 4:3', value: '4:3' },
|
const ratio = calculateAspectRatio(width.value, height.value);
|
||||||
{ label: 'Widescreen 21:9', value: '21:9' },
|
r1.value = ratio.r1;
|
||||||
{ label: 'Square 1:1', value: '1:1' },
|
r2.value = ratio.r2;
|
||||||
];
|
result.value = `Aspect Ratio: ${ratio.r1}:${ratio.r2}`;
|
||||||
const selectedPreset = ref(null);
|
|
||||||
|
|
||||||
const aspectRatio = computed((): AspectRatio | null => {
|
|
||||||
if (r1.value && r2.value) {
|
|
||||||
return simplifyRatio(r1.value, r2.value);
|
|
||||||
}
|
}
|
||||||
return null;
|
else if (mode.value === 'dimensions' && r1.value && r2.value) {
|
||||||
});
|
|
||||||
|
|
||||||
function updateDimensions(changedField: 'width' | 'height') {
|
|
||||||
if (aspectRatio.value) {
|
|
||||||
if (changedField === 'width' && width.value) {
|
|
||||||
const newDimensions = calculateDimensions(width.value, aspectRatio.value, true);
|
|
||||||
height.value = newDimensions.height;
|
|
||||||
}
|
|
||||||
else if (changedField === 'height' && height.value) {
|
|
||||||
const newDimensions = calculateDimensions(height.value, aspectRatio.value, false);
|
|
||||||
width.value = newDimensions.width;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function handlePresetChange(value: string) {
|
|
||||||
const [newR1, newR2] = value.split(':').map(Number);
|
|
||||||
r1.value = newR1;
|
|
||||||
r2.value = newR2;
|
|
||||||
if (width.value) {
|
|
||||||
updateDimensions('width');
|
|
||||||
}
|
|
||||||
else if (height.value) {
|
|
||||||
updateDimensions('height');
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
watch([r1, r2], () => {
|
|
||||||
if (r1.value && r2.value) {
|
|
||||||
if (width.value) {
|
if (width.value) {
|
||||||
updateDimensions('width');
|
const dimensions = calculateDimensions(width.value, { r1: r1.value, r2: r2.value }, true);
|
||||||
|
height.value = dimensions.height;
|
||||||
|
result.value = `Dimensions: ${dimensions.width}x${dimensions.height}`;
|
||||||
}
|
}
|
||||||
else if (height.value) {
|
else if (height.value) {
|
||||||
updateDimensions('height');
|
const dimensions = calculateDimensions(height.value, { r1: r1.value, r2: r2.value }, false);
|
||||||
|
width.value = dimensions.width;
|
||||||
|
result.value = `Dimensions: ${dimensions.width}x${dimensions.height}`;
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
result.value = 'Please enter either width or height to calculate dimensions';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
});
|
else {
|
||||||
|
result.value = 'Please fill in the required fields';
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function clearAll() {
|
||||||
|
width.value = null;
|
||||||
|
height.value = null;
|
||||||
|
r1.value = null;
|
||||||
|
r2.value = null;
|
||||||
|
result.value = null;
|
||||||
|
}
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<NSpace vertical :size="24">
|
<NSpace vertical :size="24">
|
||||||
<div>
|
<NRadioGroup v-model:value="mode">
|
||||||
<h3>Common Presets</h3>
|
<NRadio value="ratio">
|
||||||
<NSelect
|
Calculate Aspect Ratio
|
||||||
v-model:value="selectedPreset"
|
</NRadio>
|
||||||
:options="presets"
|
<NRadio value="dimensions">
|
||||||
placeholder="Select a preset"
|
Calculate Dimensions
|
||||||
@update:value="handlePresetChange"
|
</NRadio>
|
||||||
/>
|
</NRadioGroup>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="input-group">
|
<div class="input-group">
|
||||||
<div class="input-pair">
|
<div class="input-pair">
|
||||||
<label>Pixels width</label>
|
<label>Pixels width</label>
|
||||||
<NInputNumber v-model:value="width" placeholder="Pixels width" :min="1" @update:value="() => updateDimensions('width')" />
|
<NInputNumber v-model:value="width" placeholder="Pixels width" :min="1" />
|
||||||
</div>
|
</div>
|
||||||
<div class="input-pair">
|
<div class="input-pair">
|
||||||
<label>Pixels height</label>
|
<label>Pixels height</label>
|
||||||
<NInputNumber v-model:value="height" placeholder="Pixels height" :min="1" @update:value="() => updateDimensions('height')" />
|
<NInputNumber v-model:value="height" placeholder="Pixels height" :min="1" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -102,25 +85,23 @@ watch([r1, r2], () => {
|
||||||
<NInputNumber v-model:value="r2" placeholder="Ratio height" :min="1" />
|
<NInputNumber v-model:value="r2" placeholder="Ratio height" :min="1" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="button-container">
|
||||||
|
<NButton type="primary" @click="calculateResult">
|
||||||
|
Calculate
|
||||||
|
</NButton>
|
||||||
|
<NButton @click="clearAll">
|
||||||
|
Clear All
|
||||||
|
</NButton>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div v-if="result" class="result">
|
||||||
|
{{ result }}
|
||||||
|
</div>
|
||||||
</NSpace>
|
</NSpace>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
h2 {
|
|
||||||
font-size: 24px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 18px;
|
|
||||||
margin-bottom: 8px;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
margin-bottom: 24px;
|
|
||||||
color: #a0a0a0;
|
|
||||||
}
|
|
||||||
|
|
||||||
.input-group {
|
.input-group {
|
||||||
display: flex;
|
display: flex;
|
||||||
align-items: flex-end;
|
align-items: flex-end;
|
||||||
|
@ -135,7 +116,6 @@ p {
|
||||||
|
|
||||||
.input-pair label {
|
.input-pair label {
|
||||||
margin-bottom: 4px;
|
margin-bottom: 4px;
|
||||||
color: #a0a0a0;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.separator {
|
.separator {
|
||||||
|
@ -145,24 +125,23 @@ p {
|
||||||
font-weight: bold;
|
font-weight: bold;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button-container {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-between;
|
||||||
|
gap: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.button-container .n-button {
|
||||||
|
flex: 1;
|
||||||
|
}
|
||||||
|
|
||||||
.result {
|
.result {
|
||||||
font-size: 18px;
|
font-size: 18px;
|
||||||
color: #ffffff;
|
font-weight: bold;
|
||||||
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.n-input-number) {
|
:deep(.n-input-number) {
|
||||||
width: 100%;
|
width: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
:deep(.n-input-number-input) {
|
|
||||||
text-align: left;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.n-select) {
|
|
||||||
width: 100%;
|
|
||||||
}
|
|
||||||
|
|
||||||
:deep(.n-divider) {
|
|
||||||
margin: 16px 0;
|
|
||||||
}
|
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue