Building phase one
This commit is contained in:
24
publisher/.gitignore
vendored
Normal file
24
publisher/.gitignore
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
# Nuxt dev/build outputs
|
||||
.output
|
||||
.data
|
||||
.nuxt
|
||||
.nitro
|
||||
.cache
|
||||
dist
|
||||
|
||||
# Node dependencies
|
||||
node_modules
|
||||
|
||||
# Logs
|
||||
logs
|
||||
*.log
|
||||
|
||||
# Misc
|
||||
.DS_Store
|
||||
.fleet
|
||||
.idea
|
||||
|
||||
# Local env files
|
||||
.env
|
||||
.env.*
|
||||
!.env.example
|
||||
75
publisher/README.md
Normal file
75
publisher/README.md
Normal file
@@ -0,0 +1,75 @@
|
||||
# Nuxt Minimal Starter
|
||||
|
||||
Look at the [Nuxt documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
|
||||
|
||||
## Setup
|
||||
|
||||
Make sure to install dependencies:
|
||||
|
||||
```bash
|
||||
# npm
|
||||
npm install
|
||||
|
||||
# pnpm
|
||||
pnpm install
|
||||
|
||||
# yarn
|
||||
yarn install
|
||||
|
||||
# bun
|
||||
bun install
|
||||
```
|
||||
|
||||
## Development Server
|
||||
|
||||
Start the development server on `http://localhost:3000`:
|
||||
|
||||
```bash
|
||||
# npm
|
||||
npm run dev
|
||||
|
||||
# pnpm
|
||||
pnpm dev
|
||||
|
||||
# yarn
|
||||
yarn dev
|
||||
|
||||
# bun
|
||||
bun run dev
|
||||
```
|
||||
|
||||
## Production
|
||||
|
||||
Build the application for production:
|
||||
|
||||
```bash
|
||||
# npm
|
||||
npm run build
|
||||
|
||||
# pnpm
|
||||
pnpm build
|
||||
|
||||
# yarn
|
||||
yarn build
|
||||
|
||||
# bun
|
||||
bun run build
|
||||
```
|
||||
|
||||
Locally preview production build:
|
||||
|
||||
```bash
|
||||
# npm
|
||||
npm run preview
|
||||
|
||||
# pnpm
|
||||
pnpm preview
|
||||
|
||||
# yarn
|
||||
yarn preview
|
||||
|
||||
# bun
|
||||
bun run preview
|
||||
```
|
||||
|
||||
Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information.
|
||||
334
publisher/app/app.vue
Normal file
334
publisher/app/app.vue
Normal file
@@ -0,0 +1,334 @@
|
||||
<template>
|
||||
<div class="app">
|
||||
<header class="top-bar">
|
||||
<h1>Simple Publisher</h1>
|
||||
<button class="theme-toggle" @click="toggleDarkMode"
|
||||
:aria-label="darkMode ? 'Switch to light mode' : 'Switch to dark mode'">
|
||||
{{ darkMode ? 'Light Mode' : 'Dark Mode' }}
|
||||
</button>
|
||||
</header>
|
||||
|
||||
<div class="layout">
|
||||
<Sidebar :sites="sites"
|
||||
:selected-id="selectedId"
|
||||
:pending-add="pendingAdd"
|
||||
@select-site="selectSite"
|
||||
@start-add="startAdd"
|
||||
@cancel-add="cancelAdd"
|
||||
@add-site="confirmAdd" />
|
||||
|
||||
<SettingsPanel v-if="selectedSite"
|
||||
:site="selectedSite"
|
||||
:last-saved="lastSaved"
|
||||
:site-id="selectedSite.id"
|
||||
@delete="deleteSelected"
|
||||
@preview="openPreview"
|
||||
@changed="handleEditChanged" />
|
||||
<SettingsEmpty v-else />
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, onMounted, computed } from 'vue'
|
||||
import Sidebar from './components/Sidebar.vue'
|
||||
import SettingsPanel from './components/SettingsPanel.vue'
|
||||
import SettingsEmpty from './components/SettingsEmpty.vue'
|
||||
|
||||
const API_BASE = import.meta.url.match(/^https?:\/\/[^/]+/)
|
||||
? `${location.protocol}//${location.host}`
|
||||
: ''
|
||||
|
||||
function api(url: string, options: RequestInit = {}) {
|
||||
return fetch(`${API_BASE}/api/sites${url}`, {
|
||||
headers: { 'Content-Type': 'application/json', ...options.headers },
|
||||
...options,
|
||||
})
|
||||
}
|
||||
|
||||
function genId() {
|
||||
return crypto.randomUUID?.() ?? Date.now().toString(36) + Math.random().toString(36).slice(2)
|
||||
}
|
||||
|
||||
const STORAGE_KEY = 'simple-publisher-sites'
|
||||
const THEME_KEY = 'simple-publisher-theme'
|
||||
|
||||
function defaultSite(name: string) {
|
||||
return {
|
||||
id: genId(),
|
||||
name,
|
||||
url: '',
|
||||
description: '',
|
||||
themeColor: '#2563eb',
|
||||
targetWindow: '_blank',
|
||||
enabled: true,
|
||||
}
|
||||
}
|
||||
|
||||
const darkMode = ref(false)
|
||||
|
||||
function toggleDarkMode() {
|
||||
darkMode.value = !darkMode.value
|
||||
applyClass()
|
||||
try { localStorage.setItem(THEME_KEY, darkMode.value ? 'dark' : 'light') } catch {}
|
||||
}
|
||||
|
||||
function applyClass() {
|
||||
document.documentElement.classList.toggle('dark', darkMode.value)
|
||||
}
|
||||
|
||||
const sites = ref<Array<{ _id: string; id: string; name: string; url: string; description: string; themeColor: string; targetWindow: string; enabled: boolean }>>([])
|
||||
const selectedId = ref(null)
|
||||
const pendingAdd = ref(false)
|
||||
const lastSaved = ref('')
|
||||
|
||||
let newSites = new Map<string, any>()
|
||||
let dirtyEdits = new Map<string, any>()
|
||||
let loadTimer: ReturnType<typeof setTimeout> | null = null
|
||||
let lastSavedTimeout: ReturnType<typeof setTimeout> | null = null
|
||||
|
||||
const selectedSite = computed(() => {
|
||||
return sites.value.find(s => s.id === selectedId.value) || null
|
||||
})
|
||||
|
||||
onMounted(async () => {
|
||||
try {
|
||||
const saved = localStorage.getItem(THEME_KEY)
|
||||
if (saved === 'dark' || saved === 'light') {
|
||||
darkMode.value = saved === 'dark'
|
||||
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
|
||||
darkMode.value = true
|
||||
}
|
||||
} catch {}
|
||||
|
||||
applyClass()
|
||||
|
||||
try {
|
||||
const res = await api('/')
|
||||
if (res.ok) {
|
||||
sites.value = await res.json()
|
||||
return
|
||||
}
|
||||
} catch {}
|
||||
|
||||
const stored = localStorage.getItem(STORAGE_KEY)
|
||||
if (stored) {
|
||||
sites.value = JSON.parse(stored)
|
||||
}
|
||||
})
|
||||
|
||||
onMounted(() => {
|
||||
loadTimer = setInterval(async () => {
|
||||
try {
|
||||
const res = await api('/')
|
||||
if (res.ok) {
|
||||
const sitesFromServer = await res.json()
|
||||
sites.value = sitesFromServer.map((serverSite: any) => {
|
||||
if (dirtyEdits.has(serverSite.id)) {
|
||||
return { ...serverSite, ...dirtyEdits.get(serverSite.id) }
|
||||
}
|
||||
return serverSite
|
||||
})
|
||||
}
|
||||
} catch {}
|
||||
}, 5000)
|
||||
})
|
||||
|
||||
async function refreshSites() {
|
||||
try {
|
||||
const res = await api('/')
|
||||
if (res.ok) {
|
||||
sites.value = await res.json()
|
||||
}
|
||||
} catch {
|
||||
// keep local state on network failure
|
||||
}
|
||||
}
|
||||
|
||||
async function saveSite(site: any) {
|
||||
try {
|
||||
const serverSite = sites.value.find(s => s.id === site.id)
|
||||
const res = await api(`/${encodeURIComponent(site.id)}`, {
|
||||
method: 'PUT',
|
||||
body: JSON.stringify({
|
||||
name: site.name,
|
||||
url: site.url,
|
||||
description: site.description,
|
||||
themeColor: site.themeColor,
|
||||
targetWindow: site.targetWindow,
|
||||
enabled: site.enabled,
|
||||
}),
|
||||
})
|
||||
if (res.ok) {
|
||||
const updated = await res.json()
|
||||
lastSaved.value = 'Updated at ' + new Date().toLocaleTimeString()
|
||||
return true
|
||||
}
|
||||
return false
|
||||
} catch {
|
||||
return false
|
||||
}
|
||||
}
|
||||
|
||||
async function bulkSave() {
|
||||
const allEntries = [...newSites.entries(), ...dirtyEdits.entries()]
|
||||
for (const [, site] of allEntries) {
|
||||
await saveSite(site)
|
||||
}
|
||||
newSites.clear()
|
||||
dirtyEdits.clear()
|
||||
try {
|
||||
await refreshSites()
|
||||
} catch {}
|
||||
lastSaved.value = 'Updated at ' + new Date().toLocaleTimeString()
|
||||
|
||||
if (lastSavedTimeout) clearTimeout(lastSavedTimeout)
|
||||
lastSavedTimeout = setTimeout(() => {
|
||||
lastSaved.value = ''
|
||||
}, 3000)
|
||||
}
|
||||
|
||||
async function handleEditChanged(site: { id: string; name: string; url: string; description: string; themeColor: string; targetWindow: string; enabled: boolean }) {
|
||||
if (newSites.has(site.id)) {
|
||||
newSites.set(site.id, site)
|
||||
} else {
|
||||
dirtyEdits.set(site.id, site)
|
||||
}
|
||||
}
|
||||
|
||||
function selectSite(site: { id: string; name: string; enabled: boolean }) {
|
||||
if (selectedId.value && dirtyEdits.has(selectedId.value)) {
|
||||
bulkSave()
|
||||
}
|
||||
selectedId.value = site.id
|
||||
}
|
||||
|
||||
function startAdd() {
|
||||
pendingAdd.value = true
|
||||
}
|
||||
|
||||
async function confirmAdd(name: string) {
|
||||
const trimmed = name.trim()
|
||||
if (!trimmed) return
|
||||
const site = defaultSite(trimmed)
|
||||
|
||||
try {
|
||||
const res = await api('/', {
|
||||
method: 'POST',
|
||||
body: JSON.stringify(site),
|
||||
})
|
||||
if (res.ok) {
|
||||
const created = await res.json()
|
||||
sites.value.unshift(created)
|
||||
pendingAdd.value = false
|
||||
selectedId.value = created.id
|
||||
lastSaved.value = 'Updated at ' + new Date().toLocaleTimeString()
|
||||
|
||||
if (lastSavedTimeout) clearTimeout(lastSavedTimeout)
|
||||
lastSavedTimeout = setTimeout(() => {
|
||||
lastSaved.value = ''
|
||||
}, 3000)
|
||||
return
|
||||
}
|
||||
} catch {}
|
||||
|
||||
sites.value.unshift(site)
|
||||
pendingAdd.value = false
|
||||
selectedId.value = site.id
|
||||
try { saveSites() } catch {}
|
||||
}
|
||||
|
||||
function cancelAdd() {
|
||||
pendingAdd.value = false
|
||||
}
|
||||
|
||||
async function removeSite(index: number) {
|
||||
const site = sites.value[index]
|
||||
newSites.delete(site.id)
|
||||
dirtyEdits.delete(site.id)
|
||||
try {
|
||||
const res = await api(`/${encodeURIComponent(site.id)}`, { method: 'DELETE' })
|
||||
if (res.ok) await res.json()
|
||||
} catch {}
|
||||
if (site.id === selectedId.value) selectedId.value = null
|
||||
sites.value.splice(index, 1)
|
||||
try { localStorage.setItem(STORAGE_KEY, JSON.stringify(sites.value)) } catch {}
|
||||
}
|
||||
|
||||
async function deleteSelected() {
|
||||
if (!selectedSite.value) return
|
||||
const idx = sites.value.findIndex(s => s.id === selectedSite.value!.id)
|
||||
if (idx !== -1) await removeSite(idx)
|
||||
}
|
||||
|
||||
function openPreview() {
|
||||
const site = selectedSite.value
|
||||
if (!site?.url) return
|
||||
let url = site.url.trim()
|
||||
if (!/^https?:\/\//i.test(url)) url = 'https://' + url
|
||||
window.open(url, site.targetWindow || '_blank')
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.app {
|
||||
max-width: 960px;
|
||||
margin: 0 auto;
|
||||
padding: 40px 20px;
|
||||
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
|
||||
}
|
||||
|
||||
.top-bar {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-bottom: 32px;
|
||||
}
|
||||
|
||||
h1 {
|
||||
text-align: left;
|
||||
margin: 0;
|
||||
font-size: 2rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.theme-toggle {
|
||||
padding: 8px 16px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 6px;
|
||||
background: var(--bg-secondary);
|
||||
color: var(--text-secondary);
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
transition: background 0.2s, border-color 0.2s, color 0.2s;
|
||||
}
|
||||
|
||||
.theme-toggle:hover {
|
||||
background: var(--cancel-bg);
|
||||
border-color: var(--border-input);
|
||||
}
|
||||
|
||||
.layout {
|
||||
display: flex;
|
||||
gap: 24px;
|
||||
align-items: flex-start;
|
||||
}
|
||||
</style>
|
||||
|
||||
<style>
|
||||
html, body {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
min-height: 100vh;
|
||||
background: var(--bg-primary);
|
||||
color: var(--text-primary);
|
||||
transition: background 0.3s, color 0.3s;
|
||||
}
|
||||
|
||||
#__nuxt {
|
||||
min-height: 100vh;
|
||||
background: var(--bg-primary);
|
||||
transition: background 0.3s;
|
||||
}
|
||||
</style>
|
||||
39
publisher/app/assets/themes.scss
Normal file
39
publisher/app/assets/themes.scss
Normal file
@@ -0,0 +1,39 @@
|
||||
/* Light theme (default) */
|
||||
:root {
|
||||
--bg-primary: #fff;
|
||||
--bg-secondary: #fafafa;
|
||||
--bg-active: #eff6ff;
|
||||
--text-primary: #1a1a1a;
|
||||
--text-secondary: #374151;
|
||||
--text-muted: #9ca3af;
|
||||
--border-color: #e5e7eb;
|
||||
--border-input: #d1d5db;
|
||||
--placeholder-bg: transparent;
|
||||
--danger-bg: #fee2e2;
|
||||
--danger-hover: #fecaca;
|
||||
--danger-text: #dc2626;
|
||||
--cancel-bg: #f3f4f6;
|
||||
--cancel-border: #d1d5db;
|
||||
--cancel-text: #6b7280;
|
||||
--cancel-hover: #e5e7eb;
|
||||
}
|
||||
|
||||
/* Dark theme */
|
||||
.dark {
|
||||
--bg-primary: #0f0f0f;
|
||||
--bg-secondary: #1a1a1a;
|
||||
--bg-active: #1e293b;
|
||||
--text-primary: #e5e5e5;
|
||||
--text-secondary: #a3a3a3;
|
||||
--text-muted: #737373;
|
||||
--border-color: #333;
|
||||
--border-input: #404040;
|
||||
--placeholder-bg: #141414;
|
||||
--danger-bg: #2d1b1e;
|
||||
--danger-hover: #3d2528;
|
||||
--danger-text: #f87171;
|
||||
--cancel-bg: #262626;
|
||||
--cancel-border: #404040;
|
||||
--cancel-text: #a3a3a3;
|
||||
--cancel-hover: #333;
|
||||
}
|
||||
120
publisher/app/components/AddSiteForm.vue
Normal file
120
publisher/app/components/AddSiteForm.vue
Normal file
@@ -0,0 +1,120 @@
|
||||
<template>
|
||||
<div v-if="show" class="card add-form-card">
|
||||
<input ref="nameInput" v-model="pendingName" type="text"
|
||||
placeholder="Site name" class="edit-input" @keyup.enter="submit" />
|
||||
<div class="edit-actions">
|
||||
<button class="save-btn" @click.prevent="submit">Add</button>
|
||||
<button class="cancel-btn" @click.prevent="emit('cancel')">Cancel</button>
|
||||
</div>
|
||||
</div>
|
||||
<div v-else class="add-placeholder card" @click="$emit('start')">
|
||||
<span class="plus-sign">+</span>
|
||||
<span class="add-label">Add site</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, nextTick } from 'vue'
|
||||
|
||||
const props = defineProps<{ show: boolean }>()
|
||||
const emit = defineEmits<{ start: []; cancel: []; submit: [name: string] }>()
|
||||
|
||||
const pendingName = ref('')
|
||||
const nameInput = ref<HTMLInputElement | null>(null)
|
||||
|
||||
watch(() => props.show, async (val) => {
|
||||
if (val) {
|
||||
pendingName.value = ''
|
||||
await nextTick()
|
||||
nameInput.value?.focus()
|
||||
}
|
||||
})
|
||||
|
||||
function submit() {
|
||||
const name = pendingName.value.trim()
|
||||
if (!name) return
|
||||
emit('submit', name)
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.add-placeholder {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
gap: 4px;
|
||||
border: 2px dashed var(--border-input);
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
background: var(--placeholder-bg);
|
||||
transition: border-color 0.2s, background 0.2s;
|
||||
margin-top: 8px;
|
||||
min-height: 72px;
|
||||
}
|
||||
|
||||
.add-placeholder:hover {
|
||||
border-color: #2563eb;
|
||||
background: var(--bg-active);
|
||||
}
|
||||
|
||||
.plus-sign {
|
||||
font-size: 28px;
|
||||
color: var(--text-muted);
|
||||
line-height: 1;
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.add-placeholder:hover .plus-sign {
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.add-label {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
transition: color 0.2s;
|
||||
}
|
||||
|
||||
.add-placeholder:hover .add-label {
|
||||
color: #2563eb;
|
||||
}
|
||||
|
||||
.add-form-card {
|
||||
margin-top: 8px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
|
||||
.edit-actions {
|
||||
display: flex;
|
||||
gap: 6px;
|
||||
}
|
||||
|
||||
.save-btn, .cancel-btn {
|
||||
padding: 8px 16px;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
}
|
||||
|
||||
.save-btn {
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.save-btn:hover {
|
||||
background: #1d4ed8;
|
||||
}
|
||||
|
||||
.cancel-btn {
|
||||
background: var(--cancel-bg);
|
||||
color: var(--cancel-text);
|
||||
border: 1px solid var(--cancel-border) !important;
|
||||
}
|
||||
|
||||
.cancel-btn:hover {
|
||||
background: var(--cancel-hover);
|
||||
}
|
||||
</style>
|
||||
17
publisher/app/components/SettingsEmpty.vue
Normal file
17
publisher/app/components/SettingsEmpty.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div class="settings-empty">
|
||||
<p>Select a site from the list to configure its settings</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<style scoped>
|
||||
.settings-empty {
|
||||
flex: 1;
|
||||
min-width: 320px;
|
||||
padding: 48px;
|
||||
text-align: center;
|
||||
color: var(--text-muted);
|
||||
border: 1px dashed var(--border-input);
|
||||
border-radius: 12px;
|
||||
}
|
||||
</style>
|
||||
274
publisher/app/components/SettingsPanel.vue
Normal file
274
publisher/app/components/SettingsPanel.vue
Normal file
@@ -0,0 +1,274 @@
|
||||
<template>
|
||||
<div class="settings-panel">
|
||||
<h2>Edit: {{ site.name }}</h2>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Name</label>
|
||||
<input v-model="editName" type="text" class="edit-input" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>URL</label>
|
||||
<input v-model="editUrl" type="url" placeholder="https://example.com" class="edit-input" />
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Description</label>
|
||||
<textarea v-model="editDescription" rows="3"
|
||||
placeholder="Optional description..." class="edit-input"></textarea>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Theme Color</label>
|
||||
<div class="color-row">
|
||||
<input v-model="editThemeColor" type="color" class="color-picker" />
|
||||
<input v-model="editThemeColor" type="text"
|
||||
placeholder="#2563eb" class="edit-input color-text" />
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="form-group">
|
||||
<label>Link Target</label>
|
||||
<select v-model="editTargetWindow" class="edit-input">
|
||||
<option value="_blank">Open in new tab</option>
|
||||
<option value="_self">Open in same tab</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="form-group checkbox-group">
|
||||
<label>
|
||||
<input v-model="editEnabled" type="checkbox" />
|
||||
Enabled (visible on the site)
|
||||
</label>
|
||||
</div>
|
||||
|
||||
<div class="form-actions">
|
||||
<button class="delete-btn" @click.prevent="$emit('delete')">Delete</button>
|
||||
<span class="save-status" v-if="lastSaved">{{ lastSaved }}</span>
|
||||
<button class="preview-btn" @click.prevent="$emit('preview')" :disabled="!site.url">
|
||||
Preview Link
|
||||
</button>
|
||||
</div>
|
||||
|
||||
<div class="form-actions save-bar">
|
||||
<div></div>
|
||||
<button class="save-btn" @click="handleSave" :disabled="!isDirty" :class="{ 'save-btn-dirty': isDirty }">
|
||||
Save
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import { ref, computed, watch } from 'vue'
|
||||
|
||||
const props = defineProps<{
|
||||
site: { name: string; url: string; description: string; themeColor: string; targetWindow: string; enabled: boolean }
|
||||
lastSaved: string
|
||||
siteId?: string
|
||||
}>()
|
||||
|
||||
const emit = defineEmits<{ delete: []; preview: []; changed: [{ name: string; url: string; description: string; themeColor: string; targetWindow: string; enabled: boolean, id: string }] }>()
|
||||
|
||||
const editName = ref(props.site.name)
|
||||
const editUrl = ref(props.site.url)
|
||||
const editDescription = ref(props.site.description)
|
||||
const editThemeColor = ref(props.site.themeColor)
|
||||
const editTargetWindow = ref(props.site.targetWindow)
|
||||
const editEnabled = ref(props.site.enabled)
|
||||
|
||||
const isDirty = computed(() => {
|
||||
return (
|
||||
editName.value !== props.site.name ||
|
||||
editUrl.value !== props.site.url ||
|
||||
editDescription.value !== props.site.description ||
|
||||
editThemeColor.value !== props.site.themeColor ||
|
||||
editTargetWindow.value !== props.site.targetWindow ||
|
||||
editEnabled.value !== props.site.enabled
|
||||
)
|
||||
})
|
||||
|
||||
watch([editName, editUrl, editDescription, editThemeColor, editTargetWindow, editEnabled], () => {
|
||||
emit('changed', {
|
||||
name: editName.value,
|
||||
url: editUrl.value,
|
||||
description: editDescription.value,
|
||||
themeColor: editThemeColor.value,
|
||||
targetWindow: editTargetWindow.value,
|
||||
enabled: editEnabled.value,
|
||||
id: props.siteId!,
|
||||
})
|
||||
})
|
||||
|
||||
function handleSave() {
|
||||
emit('changed', {
|
||||
name: editName.value,
|
||||
url: editUrl.value,
|
||||
description: editDescription.value,
|
||||
themeColor: editThemeColor.value,
|
||||
targetWindow: editTargetWindow.value,
|
||||
enabled: editEnabled.value,
|
||||
id: props.siteId!,
|
||||
})
|
||||
}
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.settings-panel {
|
||||
flex: 1;
|
||||
min-width: 320px;
|
||||
padding: 24px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 12px;
|
||||
background: var(--bg-secondary);
|
||||
}
|
||||
|
||||
.settings-panel h2 {
|
||||
margin: 0 0 20px;
|
||||
font-size: 1.25rem;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.form-group {
|
||||
margin-bottom: 16px;
|
||||
}
|
||||
|
||||
.form-group label {
|
||||
display: block;
|
||||
font-size: 13px;
|
||||
font-weight: 600;
|
||||
color: var(--text-secondary);
|
||||
margin-bottom: 6px;
|
||||
}
|
||||
|
||||
.edit-input {
|
||||
width: 100%;
|
||||
padding: 10px 12px;
|
||||
border: 1px solid var(--border-input);
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
box-sizing: border-box;
|
||||
background: var(--bg-primary);
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.edit-input:focus {
|
||||
outline: none;
|
||||
border-color: #2563eb;
|
||||
box-shadow: 0 0 0 2px rgba(37, 99, 235, 0.15);
|
||||
}
|
||||
|
||||
.edit-input::placeholder {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
textarea.edit-input {
|
||||
resize: vertical;
|
||||
font-family: inherit;
|
||||
}
|
||||
|
||||
.color-row {
|
||||
display: flex;
|
||||
gap: 8px;
|
||||
align-items: center;
|
||||
}
|
||||
|
||||
.color-picker {
|
||||
width: 48px;
|
||||
height: 40px;
|
||||
padding: 2px;
|
||||
border: 1px solid var(--border-input);
|
||||
border-radius: 6px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.color-text {
|
||||
flex: 1;
|
||||
}
|
||||
|
||||
.checkbox-group label {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 8px;
|
||||
font-weight: 400;
|
||||
cursor: pointer;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.form-actions {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
margin-top: 24px;
|
||||
padding-top: 16px;
|
||||
border-top: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.delete-btn {
|
||||
padding: 8px 16px;
|
||||
background: var(--danger-bg);
|
||||
color: var(--danger-text);
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.delete-btn:hover {
|
||||
background: var(--danger-hover);
|
||||
}
|
||||
|
||||
.save-status {
|
||||
font-size: 12px;
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.preview-btn {
|
||||
padding: 8px 16px;
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
.preview-btn:hover:not(:disabled) {
|
||||
background: #1d4ed8;
|
||||
}
|
||||
|
||||
.preview-btn:disabled {
|
||||
opacity: 0.5;
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.save-bar {
|
||||
margin-top: 8px;
|
||||
padding-top: 12px;
|
||||
border-top: none;
|
||||
}
|
||||
|
||||
.save-btn {
|
||||
padding: 8px 32px;
|
||||
border: none;
|
||||
border-radius: 6px;
|
||||
font-size: 14px;
|
||||
font-weight: 600;
|
||||
cursor: pointer;
|
||||
background: var(--border-color);
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.save-btn:disabled {
|
||||
cursor: not-allowed;
|
||||
}
|
||||
|
||||
.save-btn-dirty {
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
}
|
||||
|
||||
.save-btn-dirty:hover {
|
||||
background: #1d4ed8;
|
||||
}
|
||||
</style>
|
||||
39
publisher/app/components/Sidebar.vue
Normal file
39
publisher/app/components/Sidebar.vue
Normal file
@@ -0,0 +1,39 @@
|
||||
<template>
|
||||
<div class="sidebar">
|
||||
<SiteCard v-for="(site, index) in sites" :key="site.id"
|
||||
:site="site"
|
||||
:active="selectedId === site.id"
|
||||
:disabled="!site.enabled"
|
||||
@select="$emit('select-site', site)" />
|
||||
|
||||
<AddSiteForm :show="pendingAdd"
|
||||
@start="$emit('start-add')"
|
||||
@cancel="$emit('cancel-add')"
|
||||
@submit="(name) => $emit('add-site', name)" />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
import SiteCard from './SiteCard.vue'
|
||||
import AddSiteForm from './AddSiteForm.vue'
|
||||
|
||||
defineProps<{
|
||||
sites: Array<{ id: string; name: string; enabled: boolean }>
|
||||
selectedId: string | null
|
||||
pendingAdd: boolean
|
||||
}>()
|
||||
|
||||
defineEmits<{ 'select-site': [site: { id: string; name: string; enabled: boolean }]; 'start-add': []; 'cancel-add': []; 'add-site': [name: string] }>()
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.sidebar {
|
||||
width: 280px;
|
||||
min-width: 280px;
|
||||
position: sticky;
|
||||
top: 20px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 8px;
|
||||
}
|
||||
</style>
|
||||
59
publisher/app/components/SiteCard.vue
Normal file
59
publisher/app/components/SiteCard.vue
Normal file
@@ -0,0 +1,59 @@
|
||||
<template>
|
||||
<div class="site-card"
|
||||
:class="{ active, disabled }"
|
||||
@click="$emit('select')">
|
||||
<span class="site-name">{{ site.name }}</span>
|
||||
<span v-if="!site.enabled" class="badge disabled">Disabled</span>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup lang="ts">
|
||||
defineProps<{
|
||||
site: { id: string; name: string; enabled: boolean }
|
||||
active: boolean
|
||||
disabled: boolean
|
||||
}>()
|
||||
|
||||
defineEmits<{ select: [] }>()
|
||||
</script>
|
||||
|
||||
<style scoped>
|
||||
.site-card {
|
||||
padding: 12px 16px;
|
||||
border: 1px solid var(--border-color);
|
||||
border-radius: 8px;
|
||||
cursor: pointer;
|
||||
background: var(--bg-secondary);
|
||||
transition: border-color 0.2s, box-shadow 0.2s;
|
||||
}
|
||||
|
||||
.site-card:hover {
|
||||
border-color: #2563eb;
|
||||
box-shadow: 0 2px 8px rgba(37, 99, 235, 0.1);
|
||||
}
|
||||
|
||||
.site-card.active {
|
||||
border-color: #2563eb;
|
||||
background: var(--bg-active);
|
||||
box-shadow: 0 2px 8px rgba(37, 99, 235, 0.15);
|
||||
}
|
||||
|
||||
.site-card.disabled {
|
||||
opacity: 0.5;
|
||||
}
|
||||
|
||||
.site-name {
|
||||
font-weight: 600;
|
||||
color: var(--text-primary);
|
||||
}
|
||||
|
||||
.badge.disabled {
|
||||
font-size: 10px;
|
||||
color: var(--danger-text);
|
||||
background: var(--danger-bg);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
margin-top: 4px;
|
||||
display: inline-block;
|
||||
}
|
||||
</style>
|
||||
23
publisher/nuxt.config.ts
Normal file
23
publisher/nuxt.config.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { defineNuxtConfig } from 'nuxt/config'
|
||||
import { resolve } from 'node:path'
|
||||
|
||||
// https://nuxt.com/docs/api/configuration/nuxt-config
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
srcDir: 'app',
|
||||
css: [resolve(__dirname, 'app/assets/themes.scss')],
|
||||
nitro: {
|
||||
routeRules: {
|
||||
'/api/sites/**': { proxy: 'http://localhost:5000/api/sites/**' },
|
||||
},
|
||||
},
|
||||
vite: {
|
||||
optimizeDeps: {
|
||||
include: [
|
||||
'@vue/devtools-core',
|
||||
'@vue/devtools-kit',
|
||||
]
|
||||
}
|
||||
}
|
||||
})
|
||||
10671
publisher/package-lock.json
generated
Normal file
10671
publisher/package-lock.json
generated
Normal file
File diff suppressed because it is too large
Load Diff
20
publisher/package.json
Normal file
20
publisher/package.json
Normal file
@@ -0,0 +1,20 @@
|
||||
{
|
||||
"name": "publisher",
|
||||
"type": "module",
|
||||
"private": true,
|
||||
"scripts": {
|
||||
"build": "nuxt build",
|
||||
"dev": "nuxt dev",
|
||||
"generate": "nuxt generate",
|
||||
"preview": "nuxt preview",
|
||||
"postinstall": "nuxt prepare"
|
||||
},
|
||||
"dependencies": {
|
||||
"nuxt": "^4.4.8",
|
||||
"vue": "^3.5.39",
|
||||
"vue-router": "^5.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"sass": "^1.101.0"
|
||||
}
|
||||
}
|
||||
BIN
publisher/public/favicon.ico
Normal file
BIN
publisher/public/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 4.2 KiB |
2
publisher/public/robots.txt
Normal file
2
publisher/public/robots.txt
Normal file
@@ -0,0 +1,2 @@
|
||||
User-Agent: *
|
||||
Disallow:
|
||||
18
publisher/tsconfig.json
Normal file
18
publisher/tsconfig.json
Normal file
@@ -0,0 +1,18 @@
|
||||
{
|
||||
// https://nuxt.com/docs/guide/concepts/typescript
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.server.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.shared.json"
|
||||
},
|
||||
{
|
||||
"path": "./.nuxt/tsconfig.node.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user