mirror of
https://github.com/4ev-link/4ev.link.git
synced 2026-01-13 16:18:05 +00:00
147 lines
15 KiB
HTML
147 lines
15 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Dashboard - 4ev.link</title>
|
|
<link rel="icon" href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 100 100%22><text y=%22.9em%22 font-size=%2290%22>🔗</text></svg>">
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script defer src="https://unpkg.com/alpinejs@3.x.x/dist/cdn.min.js"></script>
|
|
<script src="https://unpkg.com/lucide@latest"></script>
|
|
<script src="https://www.google.com/recaptcha/api.js" async defer></script>
|
|
</head>
|
|
<body class="bg-slate-50 text-slate-800 font-sans">
|
|
<script>if (!localStorage.getItem('username')) window.location.href = '/';</script>
|
|
|
|
<div x-data="dashboard()" x-init="fetchLinks()" @link-modified.window="fetchLinks(); view='create'" class="min-h-screen flex flex-col">
|
|
<header class="bg-white/80 backdrop-blur-sm border-b border-slate-200 sticky top-0 z-10">
|
|
<div class="max-w-5xl mx-auto px-4 sm:px-6 lg:px-8">
|
|
<div class="flex items-center justify-between h-16">
|
|
<a href="/dash/" class="text-2xl font-bold flex items-center gap-2">
|
|
<i data-lucide="link" class="w-6 h-6 text-slate-800"></i> 4ev.link
|
|
</a>
|
|
<div class="flex items-center gap-4">
|
|
<span class="text-slate-600">Welcome, <strong x-text="user"></strong></span>
|
|
<button @click="localStorage.clear(); window.location.href='/'" class="text-sm font-semibold text-slate-500 hover:text-slate-900 transition-colors">
|
|
Logout
|
|
</button>
|
|
<button @click="sidebarOpen = !sidebarOpen" class="text-slate-500 hover:text-slate-900 transition-colors">
|
|
<i data-lucide="panel-right" class="w-6 h-6"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</header>
|
|
|
|
<div x-show="sidebarOpen" @click.away="sidebarOpen = false" x-transition:enter="transition ease-out duration-150" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="transition ease-in duration-100" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0" class="fixed inset-0 bg-black/30 z-20" style="display: none;"></div>
|
|
<aside x-show="sidebarOpen" x-transition:enter="transition ease-out duration-150" x-transition:enter-start="translate-x-full" x-transition:enter-end="translate-x-0" x-transition:leave="transition ease-in duration-100" x-transition:leave-start="translate-x-0" x-transition:leave-end="translate-x-full" class="fixed top-0 right-0 h-full w-full max-w-sm bg-white border-l border-slate-200 shadow-lg z-30 flex flex-col" style="display: none;">
|
|
<div class="p-4 border-b border-slate-200 flex justify-between items-center">
|
|
<h2 class="text-lg font-semibold">Your Links</h2>
|
|
<button @click="sidebarOpen = false" class="text-slate-500 hover:text-slate-900"><i data-lucide="x"></i></button>
|
|
</div>
|
|
<div class="flex-grow overflow-y-auto p-4">
|
|
<template x-if="linksLoading"><div class="flex justify-center p-8"><i data-lucide="loader-2" class="animate-spin w-8 h-8 text-slate-400"></i></div></template>
|
|
<template x-if="!linksLoading && linksError"><p class="text-rose-500 text-center" x-text="linksError"></p></template>
|
|
<template x-if="!linksLoading && !linksError">
|
|
<template x-if="links.length === 0"><p class="text-slate-500 text-center py-4">You haven't created any links yet.</p></template>
|
|
<template x-if="links.length > 0">
|
|
<ul class="space-y-2">
|
|
<template x-for="link in links" :key="link.slug">
|
|
<li @click="edit(link)" class="p-3 rounded-md border border-slate-200 hover:bg-slate-100 transition-colors cursor-pointer">
|
|
<p class="font-mono text-slate-800 font-semibold truncate" x-text="`${window.location.host}/${link.slug}`"></p>
|
|
<p class="text-sm text-slate-500 truncate" x-text="link.destination"></p>
|
|
</li>
|
|
</template>
|
|
</ul>
|
|
</template>
|
|
</template>
|
|
</div>
|
|
</aside>
|
|
|
|
<main class="flex-grow">
|
|
<div class="max-w-5xl mx-auto p-4 sm:p-6 lg:p-8">
|
|
<div class="max-w-2xl mx-auto">
|
|
<template x-if="view === 'create'">
|
|
<div class="bg-white p-8 rounded-xl shadow-sm border border-slate-200">
|
|
<h1 class="text-2xl font-bold mb-1">Create a new link</h1>
|
|
<p class="text-slate-500 mb-6">Shorten a long URL into a memorable link.</p>
|
|
<template x-if="result.url">
|
|
<div x-data="{copied:false}" class="bg-green-100 border border-green-300 text-green-800 p-3.5 rounded-md mb-6" role="alert">
|
|
<p class="font-semibold">Success! Your link is ready:</p>
|
|
<div class="flex items-center gap-2 mt-2">
|
|
<a :href="result.url" x-text="result.url" target="_blank" class="font-mono text-slate-700 hover:underline"></a>
|
|
<button @click="navigator.clipboard.writeText(result.url); copied = true; setTimeout(() => copied = false, 2000)" class="text-slate-500 hover:text-slate-900">
|
|
<i data-lucide="copy" class="w-4 h-4" x-show="!copied"></i>
|
|
<i data-lucide="check" class="w-4 h-4 text-green-600" x-show="copied" style="display: none;"></i>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
<form @submit.prevent="createLink" class="space-y-4">
|
|
<div>
|
|
<label for="longUrl" class="block text-sm font-medium text-slate-700 mb-1">Destination URL</label>
|
|
<input x-model="form.destination_url" type="text" id="longUrl" placeholder="example.com/very-long-url-to-shorten" required class="w-full p-3 bg-slate-50 border border-slate-300 rounded-md focus:outline-none focus:ring-2 focus:ring-slate-400 focus:border-slate-400 transition">
|
|
</div>
|
|
<div>
|
|
<label for="customSlug" class="block text-sm font-medium text-slate-700 mb-1">Custom slug (optional)</label>
|
|
<div class="flex items-center">
|
|
<span class="p-3 bg-slate-100 border border-r-0 border-slate-300 rounded-l-md text-slate-500">4ev.link/</span>
|
|
<input x-model="form.slug" type="text" id="customSlug" placeholder="my-custom-link" class="w-full p-3 bg-slate-50 border border-slate-300 rounded-r-md focus:outline-none focus:ring-2 focus:ring-slate-400 focus:border-slate-400 transition">
|
|
</div>
|
|
</div>
|
|
<div class="g-recaptcha my-4 flex justify-center" data-sitekey="6LeXhdYrAAAAALW6DdgxNeHU0kwBncdicLnVYvXT"></div>
|
|
<p x-text="error" x-show="error" class="text-rose-500 text-sm h-5 -mt-2 text-center"></p>
|
|
<button type="submit" :disabled="loading" class="w-full py-3 font-semibold rounded-lg text-white bg-slate-800 hover:bg-slate-900 transition-colors flex items-center justify-center disabled:opacity-50 disabled:cursor-not-allowed">
|
|
<span x-show="!loading">Create Short Link</span>
|
|
<i x-show="loading" data-lucide="loader-2" class="animate-spin w-6 h-6"></i>
|
|
</button>
|
|
<p class="text-xs text-slate-500 text-center pt-2">Links are permanent and do not expire.</p>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
<template x-if="view === 'edit'">
|
|
<div class="bg-white p-8 rounded-xl shadow-sm border border-slate-200">
|
|
<div class="flex justify-between items-start mb-6">
|
|
<div>
|
|
<h1 class="text-2xl font-bold mb-1">Edit link</h1>
|
|
<p class="text-slate-500 font-mono" x-text="`4ev.link/${form.slug}`"></p>
|
|
</div>
|
|
<button @click="view = 'create'" class="text-sm font-semibold text-slate-500 hover:text-slate-900">← Back</button>
|
|
</div>
|
|
<template x-if="result.message">
|
|
<div class="bg-green-100 border border-green-300 text-green-800 p-3.5 rounded-md mb-6" role="alert">
|
|
<p class="font-semibold" x-text="result.message"></p>
|
|
</div>
|
|
</template>
|
|
<form @submit.prevent="updateLink" class="space-y-4">
|
|
<div>
|
|
<label for="editDestinationUrl" class="block text-sm font-medium text-slate-700 mb-1">Destination URL</label>
|
|
<input x-model="form.destination_url" type="text" id="editDestinationUrl" required class="w-full p-3 bg-slate-50 border border-slate-300 rounded-md focus:outline-none focus:ring-2 focus:ring-slate-400 focus:border-slate-400 transition">
|
|
</div>
|
|
<div class="g-recaptcha my-4 flex justify-center" data-sitekey="6LeXhdYrAAAAALW6DdgxNeHU0kwBncdicLnVYvXT"></div>
|
|
<p x-text="error" x-show="error" class="text-rose-500 text-sm h-5 -mt-2 text-center"></p>
|
|
<div class="flex gap-4">
|
|
<button type="button" @click="deleteLink" :disabled="loading" class="w-full py-3 font-semibold rounded-lg text-rose-600 bg-rose-100 hover:bg-rose-200 transition-colors flex items-center justify-center disabled:opacity-50 disabled:cursor-not-allowed">
|
|
<span x-show="!loading">Delete</span>
|
|
<i x-show="loading" data-lucide="loader-2" class="animate-spin w-6 h-6"></i>
|
|
</button>
|
|
<button type="submit" :disabled="loading" class="w-full py-3 font-semibold rounded-lg text-white bg-slate-800 hover:bg-slate-900 transition-colors flex items-center justify-center disabled:opacity-50 disabled:cursor-not-allowed">
|
|
<span x-show="!loading">Update Link</span>
|
|
<i x-show="loading" data-lucide="loader-2" class="animate-spin w-6 h-6"></i>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</template>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
</div>
|
|
|
|
<script>
|
|
function dashboard(){return{sidebarOpen:!1,view:"create",links:[],linksLoading:!0,linksError:"",user:localStorage.getItem("username"),loading:!1,error:"",result:{},form:{destination_url:"",slug:"",original_destination:""},async fetchLinks(){this.linksLoading=!0,this.linksError="";try{const t=localStorage.getItem("username"),s=localStorage.getItem("pass_hash");if(!t||!s)throw new Error("Auth error.");const i=await fetch("/api/links/list",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({username:t,pass_hash:s})});if(!i.ok)throw new Error(await i.text()||"Failed to fetch links.");this.links=await i.json()}catch(t){this.linksError=t.message}finally{this.linksLoading=!1,this.$nextTick(()=>lucide.createIcons())}},edit(t){this.view="edit",this.form.slug=t.slug,this.form.destination_url=t.destination,this.form.original_destination=t.destination,this.sidebarOpen=!1,this.error="",this.result={}},async createLink(){this.loading=!0,this.error="",this.result={};const t=grecaptcha.getResponse();if(!t)return this.error="Complete CAPTCHA",this.loading=!1;try{const e=localStorage.getItem("username"),s=localStorage.getItem("pass_hash");if(!e||!s)throw new Error("Auth error.");const a=await fetch("/api/links/create",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({destination_url:this.form.destination_url,slug:this.form.slug||null,username:e,pass_hash:s,"g-recaptcha-response":t})});if(!a.ok)throw new Error(await a.text()||"Failed to create.");const i=await a.json(),o=window.location.host;this.result={...i,url:`https://${o}/${i.slug}`},this.form.destination_url="",this.form.slug="",this.fetchLinks()}catch(e){this.error=e.message}finally{this.loading=!1,grecaptcha.reset()}},async updateLink(){if(this.form.destination_url===this.form.original_destination)return this.error="Destination unchanged.";this.loading=!0,this.error="",this.result={};const t=grecaptcha.getResponse();if(!t)return this.error="Complete CAPTCHA",this.loading=!1;try{const e=localStorage.getItem("username"),s=localStorage.getItem("pass_hash");if(!e||!s)throw new Error("Auth error.");const a=await fetch("/api/links/update",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({slug:this.form.slug,destination_url:this.form.destination_url,username:e,pass_hash:s,"g-recaptcha-response":t})});if(!a.ok)throw new Error(await a.text()||"Failed to update.");this.result={message:"Update successful."},setTimeout(()=>{this.view="create",this.fetchLinks()},1500)}catch(e){this.error=e.message}finally{this.loading=!1,grecaptcha.reset()}},async deleteLink(){if(!confirm(`Delete 4ev.link/${this.form.slug}? This is permanent.`))return;this.loading=!0,this.error="",this.result={};const t=grecaptcha.getResponse();if(!t)return this.error="Complete CAPTCHA",this.loading=!1;try{const e=localStorage.getItem("username"),s=localStorage.getItem("pass_hash");if(!e||!s)throw new Error("Auth error.");const a=await fetch("/api/links/delete",{method:"POST",headers:{"Content-Type":"application/json"},body:JSON.stringify({slug:this.form.slug,username:e,pass_hash:s,"g-recaptcha-response":t})});if(!a.ok)throw new Error(await a.text()||"Failed to delete.");this.result={message:"Delete successful."},setTimeout(()=>{this.view="create",this.fetchLinks()},1500)}catch(e){this.error=e.message}finally{this.loading=!1,grecaptcha.reset()}}}}
|
|
lucide.createIcons();
|
|
</script>
|
|
</body>
|
|
</html>
|