2024-04-16 20:20:30 +02:00
|
|
|
<template>
|
2024-05-01 01:45:45 +02:00
|
|
|
<div class="fixed w-full flex flex-row px-2 bg-[#11111189] h-14 z-10 gap-1" style="-webkit-app-region: drag">
|
|
|
|
<div class="w-full flex gap-10 flex-row items-center justify-center px-5">
|
|
|
|
<button
|
|
|
|
@click="openAddAnime"
|
|
|
|
class="flex items-center justify-center px-2 py-2 gap-1 transition-all bg-[#ffffff16] hover:bg-[#ffffff25] rounded-lg select-none"
|
|
|
|
style="-webkit-app-region: no-drag"
|
|
|
|
>
|
|
|
|
<Icon name="ph:plus-bold" class="h-3.5 w-3.5 text-white" />
|
|
|
|
<div class="text-[11px] text-white font-dm"> ADD DOWNLOAD </div>
|
|
|
|
</button>
|
2024-04-26 15:40:08 +02:00
|
|
|
</div>
|
2024-05-01 01:45:45 +02:00
|
|
|
<div class="w-full flex flex-row items-center justify-center">
|
|
|
|
<img src="/logo.png" class="h-8" />
|
|
|
|
<div class="text-[10px] leading-[10px] text-opacity-90 text-white select-none"
|
|
|
|
>Crunchyroll <br />
|
|
|
|
Downloader</div
|
|
|
|
>
|
|
|
|
</div>
|
|
|
|
<div class="w-full flex gap-2 flex-row items-center justify-center">
|
|
|
|
<!-- <button class="flex items-center justify-center px-2 py-2 gap-1 transition-all bg-[#ffffff16] hover:bg-[#ffffff25] rounded-lg select-none" style="-webkit-app-region: no-drag">
|
2024-04-26 15:40:08 +02:00
|
|
|
<Icon name="iconamoon:playlist" class="h-3.5 w-3.5 text-white" />
|
|
|
|
<div class="text-[11px] text-white font-dm">
|
|
|
|
PLAYLIST
|
|
|
|
</div>
|
|
|
|
</button> -->
|
2024-05-01 01:45:45 +02:00
|
|
|
<button
|
|
|
|
@click="openSettings"
|
|
|
|
class="flex items-center justify-center px-2 py-2 gap-1 transition-all bg-[#ffffff16] hover:bg-[#ffffff25] rounded-lg select-none"
|
|
|
|
style="-webkit-app-region: no-drag"
|
|
|
|
>
|
|
|
|
<Icon name="ic:round-settings" class="h-3.5 w-3.5 text-white" />
|
|
|
|
<div class="text-[11px] text-white font-dm"> SETTINGS </div>
|
|
|
|
</button>
|
2024-04-26 15:40:08 +02:00
|
|
|
</div>
|
2024-04-16 20:20:30 +02:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
|
|
|
import { checkAccount, crunchyLogin } from './Crunchyroll/Account'
|
|
|
|
import { openNewWindow } from './Functions/WindowHandler'
|
|
|
|
|
|
|
|
const isProduction = process.env.NODE_ENV !== 'development'
|
|
|
|
|
|
|
|
async function openSettings() {
|
2024-05-01 01:45:45 +02:00
|
|
|
;(window as any).myAPI.openWindow({
|
|
|
|
title: 'Settings',
|
|
|
|
url: isProduction ? 'http://localhost:8079/settings' : 'http://localhost:3000/settings',
|
|
|
|
width: 600,
|
|
|
|
height: 700,
|
|
|
|
backgroundColor: '#111111'
|
|
|
|
})
|
2024-04-16 20:20:30 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
async function openAddAnime() {
|
2024-05-01 01:45:45 +02:00
|
|
|
// const { data, error } = await checkAccount()
|
2024-04-16 20:20:30 +02:00
|
|
|
|
2024-05-01 01:45:45 +02:00
|
|
|
// if (error.value) {
|
|
|
|
// (window as any).myAPI.openWindow({
|
|
|
|
// title: "Crunchyroll Login",
|
|
|
|
// url: isProduction ? 'http://localhost:8079/crunchylogin' : 'http://localhost:3000/crunchylogin',
|
|
|
|
// width: 600,
|
|
|
|
// height: 300,
|
|
|
|
// backgroundColor: "#111111"
|
|
|
|
// })
|
|
|
|
// return
|
|
|
|
// }
|
2024-04-16 20:20:30 +02:00
|
|
|
|
2024-05-01 01:45:45 +02:00
|
|
|
;(window as any).myAPI.openWindow({
|
|
|
|
title: 'Add Anime',
|
|
|
|
url: isProduction ? 'http://localhost:8079/addanime' : 'http://localhost:3000/addanime',
|
|
|
|
width: 700,
|
|
|
|
height: 450,
|
|
|
|
backgroundColor: '#111111'
|
|
|
|
})
|
2024-04-16 20:20:30 +02:00
|
|
|
}
|
|
|
|
</script>
|