mirror of
https://github.com/lights0123/n-link.git
synced 2026-08-07 18:23:28 +00:00
npm run build only type-checks components something imports, so the three
tasks that ported components in isolation were never actually checked. A
temporary probe importing all five surfaced these:
- uploadNative declared its param as Event & {target: HTMLInputElement},
which is not assignable to the DOM's (payload: Event) => void handler.
Cast inside the function instead.
- info.os_extension.split('.').pop() is string | undefined but uploadOs
takes string. Extracted to an osExtension computed with a '' fallback.
Only CalcInfo was affected; FileIcon, FileView, DeviceSelect, and
DeviceQueue all passed.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
127 lines
3.7 KiB
Vue
127 lines
3.7 KiB
Vue
<template>
|
|
<div>
|
|
<h2 class="text-center text-xl select-text">{{ info.name }}</h2>
|
|
<h3 class="text-center select-text">OS {{ formatVersion(info.version) }}</h3>
|
|
<h3 class="text-center text-xs select-text">{{ info.id }}</h3>
|
|
<br>
|
|
<div :title="`${formatSize(info.free_storage)} free`">
|
|
<small class="block select-text">
|
|
Storage: {{ formatSize(info.total_storage - info.free_storage) }} / {{ formatSize(info.total_storage) }} used
|
|
</small>
|
|
<div class="mb-2 bg-gray-300 rounded-full">
|
|
<div :style="{width: `${100 - (info.free_storage / info.total_storage) * 100}%`}"
|
|
class="bg-blue-500 py-1 rounded-full"/>
|
|
</div>
|
|
</div>
|
|
<div :title="`${formatSize(info.free_ram)} free`">
|
|
<small class="block select-text">
|
|
RAM: {{ formatSize(info.total_ram - info.free_ram) }} / {{ formatSize(info.total_ram) }} used
|
|
</small>
|
|
<div class="mb-2 bg-gray-300 rounded-full">
|
|
<div :style="{width: `${100 - (info.free_ram / info.total_ram) * 100}%`}"
|
|
class="bg-teal-400 py-1 rounded-full"/>
|
|
</div>
|
|
</div>
|
|
<small class="block select-text">Boot1: {{ formatVersion(info.boot1_version) }}</small>
|
|
<small class="block select-text">Boot2: {{ formatVersion(info.boot2_version) }}</small>
|
|
<button class="mt-4 button" @click="refresh" :disabled="refreshing">
|
|
<div class="flex">
|
|
<div v-if="refreshing" class="lds-dual-ring"/>
|
|
Refresh
|
|
</div>
|
|
</button>
|
|
<button class="mt-4 button gray-button"
|
|
@click="nativeUpload ? upload?.click() : $devices.uploadOs(dev, osExtension)">
|
|
Upload OS
|
|
</button>
|
|
<input v-if="nativeUpload" ref="upload" type="file" class="hidden" :accept="info.os_extension"
|
|
@change="uploadNative"/>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import {computed, inject, ref} from 'vue';
|
|
import {DEVICES_KEY, type GenericDevices, type Info, type Version} from './devices';
|
|
import {filesize} from 'filesize';
|
|
|
|
const props = withDefaults(defineProps<{
|
|
info: Info;
|
|
dev: string;
|
|
nativeUpload?: boolean;
|
|
}>(), {
|
|
nativeUpload: false,
|
|
});
|
|
|
|
const devices = inject(DEVICES_KEY) as GenericDevices;
|
|
|
|
const refreshing = ref(false);
|
|
|
|
// `.split('.').pop()` is string | undefined; uploadOs takes a string. The
|
|
// extension is always present in practice (e.g. ".tcc2"), so fall back to ''.
|
|
const osExtension = computed(() => props.info.os_extension.split('.').pop() ?? '');
|
|
const upload = ref<HTMLInputElement | null>(null);
|
|
|
|
function formatSize(size: number) {
|
|
return filesize(size, {round: 1});
|
|
}
|
|
|
|
function formatVersion(version: Version) {
|
|
return `${version.major}.${version.minor}.${version.patch}.${version.build}`;
|
|
}
|
|
|
|
async function refresh() {
|
|
refreshing.value = true;
|
|
try {
|
|
await devices.update(props.dev);
|
|
} catch (e) {
|
|
/* */
|
|
}
|
|
refreshing.value = false;
|
|
}
|
|
|
|
function uploadNative(e: Event) {
|
|
const file = (e.target as HTMLInputElement).files?.[0];
|
|
if (file) devices.uploadOsFile(props.dev, file);
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.button {
|
|
@apply bg-blue-500 text-white rounded px-6 py-2.5 font-bold;
|
|
&:disabled {
|
|
cursor: not-allowed;
|
|
opacity: 0.75;
|
|
}
|
|
|
|
&:focus {
|
|
outline: none;
|
|
}
|
|
}
|
|
|
|
.gray-button {
|
|
@apply bg-gray-400 text-gray-800;
|
|
}
|
|
|
|
.lds-dual-ring {
|
|
$scale-factor: 0.2;
|
|
margin-right: 64px * $scale-factor + 8px;
|
|
margin-bottom: 64px * $scale-factor;
|
|
width: 0;
|
|
height: 64px * $scale-factor * 0.8;
|
|
transform: scale($scale-factor);
|
|
}
|
|
|
|
.lds-dual-ring:after {
|
|
content: " ";
|
|
display: block;
|
|
width: 64px;
|
|
height: 64px;
|
|
margin: 8px;
|
|
border-radius: 50%;
|
|
border: 6px solid white;
|
|
border-color: white transparent white transparent;
|
|
animation: lds-dual-ring 1.2s linear infinite;
|
|
}
|
|
|
|
</style>
|