Merge branch 'delete-repo'
This commit is contained in:
commit
abdfaf8402
|
|
@ -14,7 +14,6 @@ import {
|
||||||
import { AppDetail } from './AppDetail'
|
import { AppDetail } from './AppDetail'
|
||||||
import { AppSelector } from './AppSelector'
|
import { AppSelector } from './AppSelector'
|
||||||
import { DashboardLanding } from './DashboardLanding'
|
import { DashboardLanding } from './DashboardLanding'
|
||||||
import { Modal } from './modal'
|
|
||||||
import { SettingsPage } from './SettingsPage'
|
import { SettingsPage } from './SettingsPage'
|
||||||
import { Sidebar } from './Sidebar'
|
import { Sidebar } from './Sidebar'
|
||||||
|
|
||||||
|
|
@ -55,7 +54,6 @@ export function Dashboard({ render }: { render: () => void }) {
|
||||||
<Styles />
|
<Styles />
|
||||||
{!isNarrow && <Sidebar render={render} />}
|
{!isNarrow && <Sidebar render={render} />}
|
||||||
<MainContent render={render} />
|
<MainContent render={render} />
|
||||||
<Modal />
|
|
||||||
</Layout>
|
</Layout>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,19 +1,21 @@
|
||||||
import type { Child } from 'hono/jsx'
|
import type { Child } from 'hono/jsx'
|
||||||
|
import { render } from 'hono/jsx/dom'
|
||||||
import { define } from '@because/forge'
|
import { define } from '@because/forge'
|
||||||
import { theme } from '../themes'
|
import { theme } from '../themes'
|
||||||
|
|
||||||
let modalTitle: string | null = null
|
let modalTitle: string | null = null
|
||||||
let modalContent: (() => Child) | null = null
|
let modalContent: (() => Child) | null = null
|
||||||
let renderFn: (() => void) | null = null
|
|
||||||
|
|
||||||
export const initModal = (render: () => void) => {
|
const root = document.getElementById('modal')!
|
||||||
renderFn = render
|
|
||||||
|
const renderModal = () => {
|
||||||
|
render(<Modal />, root)
|
||||||
}
|
}
|
||||||
|
|
||||||
export const openModal = (title: string, content: () => Child) => {
|
export const openModal = (title: string, content: () => Child) => {
|
||||||
modalTitle = title
|
modalTitle = title
|
||||||
modalContent = content
|
modalContent = content
|
||||||
renderFn?.()
|
renderModal()
|
||||||
requestAnimationFrame(() => {
|
requestAnimationFrame(() => {
|
||||||
document.querySelector<HTMLInputElement>('[data-modal-body] input')?.focus()
|
document.querySelector<HTMLInputElement>('[data-modal-body] input')?.focus()
|
||||||
})
|
})
|
||||||
|
|
@ -22,12 +24,10 @@ export const openModal = (title: string, content: () => Child) => {
|
||||||
export const closeModal = () => {
|
export const closeModal = () => {
|
||||||
modalTitle = null
|
modalTitle = null
|
||||||
modalContent = null
|
modalContent = null
|
||||||
renderFn?.()
|
renderModal()
|
||||||
}
|
}
|
||||||
|
|
||||||
export const rerenderModal = () => {
|
export { renderModal }
|
||||||
renderFn?.()
|
|
||||||
}
|
|
||||||
|
|
||||||
// ESC key handler
|
// ESC key handler
|
||||||
document.addEventListener('keydown', (e) => {
|
document.addEventListener('keydown', (e) => {
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,5 @@
|
||||||
import { render as renderApp } from 'hono/jsx/dom'
|
import { render as renderApp } from 'hono/jsx/dom'
|
||||||
import { Dashboard } from './components'
|
import { Dashboard } from './components'
|
||||||
import { initModal } from './components/modal'
|
|
||||||
import { initRouter, navigate } from './router'
|
import { initRouter, navigate } from './router'
|
||||||
import { apps, dashboardTab, getSelectedTab, selectedApp, setApps, setIsNarrow } from './state'
|
import { apps, dashboardTab, getSelectedTab, selectedApp, setApps, setIsNarrow } from './state'
|
||||||
import { initToolIframes, updateToolIframes } from './tool-iframes'
|
import { initToolIframes, updateToolIframes } from './tool-iframes'
|
||||||
|
|
@ -21,7 +20,6 @@ const render = () => {
|
||||||
}
|
}
|
||||||
|
|
||||||
// Initialize render functions
|
// Initialize render functions
|
||||||
initModal(render)
|
|
||||||
initUpdate(render)
|
initUpdate(render)
|
||||||
initToolIframes()
|
initToolIframes()
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { App } from '../../shared/types'
|
import type { App } from '../../shared/types'
|
||||||
import { closeModal, openModal, rerenderModal } from '../components/modal'
|
import { closeModal, openModal, renderModal } from '../components/modal'
|
||||||
import { navigate } from '../router'
|
import { navigate } from '../router'
|
||||||
import { selectedApp } from '../state'
|
import { selectedApp } from '../state'
|
||||||
import { Button, Form, FormActions, FormError, FormField, FormInput, FormLabel } from '../styles'
|
import { Button, Form, FormActions, FormError, FormField, FormInput, FormLabel } from '../styles'
|
||||||
|
|
@ -17,13 +17,13 @@ async function deleteApp(input: HTMLInputElement) {
|
||||||
|
|
||||||
if (value !== expected) {
|
if (value !== expected) {
|
||||||
deleteAppError = `Type "${expected}" to confirm`
|
deleteAppError = `Type "${expected}" to confirm`
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
deleteAppDeleting = true
|
deleteAppDeleting = true
|
||||||
deleteAppError = ''
|
deleteAppError = ''
|
||||||
rerenderModal()
|
renderModal()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch(`/api/sync/apps/${deleteAppTarget.name}`, {
|
const res = await fetch(`/api/sync/apps/${deleteAppTarget.name}`, {
|
||||||
|
|
@ -41,7 +41,7 @@ async function deleteApp(input: HTMLInputElement) {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
deleteAppError = err instanceof Error ? err.message : 'Failed to delete app'
|
deleteAppError = err instanceof Error ? err.message : 'Failed to delete app'
|
||||||
deleteAppDeleting = false
|
deleteAppDeleting = false
|
||||||
rerenderModal()
|
renderModal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
import { closeModal, openModal, rerenderModal } from '../components/modal'
|
import { closeModal, openModal, renderModal } from '../components/modal'
|
||||||
import { navigate } from '../router'
|
import { navigate } from '../router'
|
||||||
import { apps } from '../state'
|
import { apps } from '../state'
|
||||||
import { Button, Form, FormActions, FormCheckbox, FormCheckboxField, FormCheckboxLabel, FormError, FormField, FormInput, FormLabel, FormSelect } from '../styles'
|
import { Button, Form, FormActions, FormCheckbox, FormCheckboxField, FormCheckboxLabel, FormError, FormField, FormInput, FormLabel, FormSelect } from '../styles'
|
||||||
|
|
@ -16,25 +16,25 @@ async function createNewApp() {
|
||||||
|
|
||||||
if (!name) {
|
if (!name) {
|
||||||
newAppError = 'App name is required'
|
newAppError = 'App name is required'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!/^[a-z][a-z0-9-]*$/.test(name)) {
|
if (!/^[a-z][a-z0-9-]*$/.test(name)) {
|
||||||
newAppError = 'Name must start with a letter and contain only lowercase letters, numbers, and hyphens'
|
newAppError = 'Name must start with a letter and contain only lowercase letters, numbers, and hyphens'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (apps.some(a => a.name === name)) {
|
if (apps.some(a => a.name === name)) {
|
||||||
newAppError = 'An app with this name already exists'
|
newAppError = 'An app with this name already exists'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
newAppCreating = true
|
newAppCreating = true
|
||||||
newAppError = ''
|
newAppError = ''
|
||||||
rerenderModal()
|
renderModal()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch('/api/apps', {
|
const res = await fetch('/api/apps', {
|
||||||
|
|
@ -55,7 +55,7 @@ async function createNewApp() {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
newAppError = err instanceof Error ? err.message : 'Failed to create app'
|
newAppError = err instanceof Error ? err.message : 'Failed to create app'
|
||||||
newAppCreating = false
|
newAppCreating = false
|
||||||
rerenderModal()
|
renderModal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -105,7 +105,7 @@ export function openNewAppModal() {
|
||||||
checked={newAppTool}
|
checked={newAppTool}
|
||||||
onChange={(e: Event) => {
|
onChange={(e: Event) => {
|
||||||
newAppTool = (e.target as HTMLInputElement).checked
|
newAppTool = (e.target as HTMLInputElement).checked
|
||||||
rerenderModal()
|
renderModal()
|
||||||
}}
|
}}
|
||||||
/>
|
/>
|
||||||
<FormCheckboxLabel for="app-tool">Tool</FormCheckboxLabel>
|
<FormCheckboxLabel for="app-tool">Tool</FormCheckboxLabel>
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,5 @@
|
||||||
import type { App } from '../../shared/types'
|
import type { App } from '../../shared/types'
|
||||||
import { closeModal, openModal, rerenderModal } from '../components/modal'
|
import { closeModal, openModal, renderModal } from '../components/modal'
|
||||||
import { navigate } from '../router'
|
import { navigate } from '../router'
|
||||||
import { apps } from '../state'
|
import { apps } from '../state'
|
||||||
import { Button, Form, FormActions, FormError, FormField, FormInput, FormLabel } from '../styles'
|
import { Button, Form, FormActions, FormError, FormField, FormInput, FormLabel } from '../styles'
|
||||||
|
|
@ -15,13 +15,13 @@ async function doRenameApp(input: HTMLInputElement) {
|
||||||
|
|
||||||
if (!newName) {
|
if (!newName) {
|
||||||
renameAppError = 'App name is required'
|
renameAppError = 'App name is required'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!/^[a-z][a-z0-9-]*$/.test(newName)) {
|
if (!/^[a-z][a-z0-9-]*$/.test(newName)) {
|
||||||
renameAppError = 'Name must start with a letter and contain only lowercase letters, numbers, and hyphens'
|
renameAppError = 'Name must start with a letter and contain only lowercase letters, numbers, and hyphens'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -32,13 +32,13 @@ async function doRenameApp(input: HTMLInputElement) {
|
||||||
|
|
||||||
if (apps.some(a => a.name === newName)) {
|
if (apps.some(a => a.name === newName)) {
|
||||||
renameAppError = 'An app with this name already exists'
|
renameAppError = 'An app with this name already exists'
|
||||||
rerenderModal()
|
renderModal()
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
renameAppRenaming = true
|
renameAppRenaming = true
|
||||||
renameAppError = ''
|
renameAppError = ''
|
||||||
rerenderModal()
|
renderModal()
|
||||||
|
|
||||||
try {
|
try {
|
||||||
const res = await fetch(`/api/apps/${renameAppTarget.name}/rename`, {
|
const res = await fetch(`/api/apps/${renameAppTarget.name}/rename`, {
|
||||||
|
|
@ -65,7 +65,7 @@ async function doRenameApp(input: HTMLInputElement) {
|
||||||
} catch (err) {
|
} catch (err) {
|
||||||
renameAppError = err instanceof Error ? err.message : 'Failed to rename app'
|
renameAppError = err instanceof Error ? err.message : 'Failed to rename app'
|
||||||
renameAppRenaming = false
|
renameAppRenaming = false
|
||||||
rerenderModal()
|
renderModal()
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -9,6 +9,7 @@ export const Shell = () => (
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
<div id="modal"></div>
|
||||||
<div id="tool-iframes"></div>
|
<div id="tool-iframes"></div>
|
||||||
<script type="module" src="/client/index.js"></script>
|
<script type="module" src="/client/index.js"></script>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue
Block a user