chore: import upstream snapshot with attribution
CI / Migrate Dev DB (push) Has been skipped
CI / Detect Version (push) Has been cancelled
CI / Migrate DB (push) Has been cancelled
CI / Build Dev ECR (./docker/app.Dockerfile, ECR_APP) (push) Has been cancelled
CI / Build Dev ECR (./docker/db.Dockerfile, ECR_MIGRATIONS) (push) Has been cancelled
CI / Build Dev ECR (./docker/pii.Dockerfile, ECR_PII) (push) Has been cancelled
CI / Build Dev ECR (./docker/realtime.Dockerfile, ECR_REALTIME) (push) Has been cancelled
CI / Deploy Trigger.dev (Dev) (push) Has been cancelled
CI / Build AMD64 (./docker/app.Dockerfile, ECR_APP, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build AMD64 (./docker/db.Dockerfile, ECR_MIGRATIONS, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build AMD64 (./docker/pii.Dockerfile, ECR_PII, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build AMD64 (./docker/realtime.Dockerfile, ECR_REALTIME, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/app.Dockerfile, ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/db.Dockerfile, ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/pii.Dockerfile, ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Build ARM64 (GHCR Only) (./docker/realtime.Dockerfile, ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/migrations) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/pii) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/realtime) (push) Has been cancelled
CI / Create GHCR Manifests (ghcr.io/simstudioai/simstudio) (push) Has been cancelled
CI / Check Docs Changes (push) Has been cancelled
CI / Process Docs (push) Has been cancelled
CI / Create GitHub Release (push) Has been cancelled
CI / Test and Build (push) Has been cancelled
Publish CLI Package / publish-npm (push) Has been cancelled
Publish Python SDK / publish-pypi (push) Has been cancelled
Publish TypeScript SDK / publish-npm (push) Has been cancelled

This commit is contained in:
wehub-resource-sync
2026-07-13 13:20:55 +08:00
commit d25d482dc2
13754 changed files with 4996608 additions and 0 deletions
@@ -0,0 +1 @@
export { InlineRenameInput } from './inline-rename-input'
@@ -0,0 +1,78 @@
'use client'
import { useEffect, useRef } from 'react'
interface InlineRenameInputProps {
value: string
onChange: (value: string) => void
onSubmit: () => void
onCancel: () => void
/**
* Disables the field while the rename is in flight, mirroring the sidebar's
* `disabled={isRenaming}`. Threaded from `useInlineRename`'s `isSaving`.
*/
disabled?: boolean
}
/**
* Inline rename field used by every resource rename surface (tables, files,
* knowledge), triggered from a context menu. Matches the sidebar workflow rename
* (`useItemRename`) input verbatim: same focus-reset className and attribute set
* (`maxLength`, autocomplete/correct/capitalize off, spellCheck off), focus +
* select on mount, commit on blur, Enter to submit, Escape to cancel, disabled
* while saving. The only intentional delta is the table-cell `size={...}`
* auto-width, which the sidebar (full-width row) does not need.
*
* The triggering menu uses `onCloseAutoFocus={(e) => e.preventDefault()}`, so the
* Radix focus-scope teardown never steals focus back from this freshly-focused
* input. `onSubmit` (from `useInlineRename`) is idempotent via its `doneRef`
* guard, so a blur racing an Enter/Escape commit is a harmless no-op.
*
* TODO: the resource rename still intermittently unfocuses; the deeper re-render
* cause (parent remounting the editing cell) is tracked separately. This input is
* aligned to the proven sidebar pattern as the first step.
*/
export function InlineRenameInput({
value,
onChange,
onSubmit,
onCancel,
disabled = false,
}: InlineRenameInputProps) {
const inputRef = useRef<HTMLInputElement>(null)
useEffect(() => {
const el = inputRef.current
if (!el) return
el.focus()
el.select()
}, [])
return (
<input
ref={inputRef}
type='text'
value={value}
size={Math.max(value.length + 2, 5)}
onChange={(e) => onChange(e.target.value)}
onBlur={onSubmit}
onKeyDown={(e) => {
if (e.key === 'Enter') {
e.preventDefault()
onSubmit()
} else if (e.key === 'Escape') {
e.preventDefault()
onCancel()
}
}}
onClick={(e) => e.stopPropagation()}
className='w-full min-w-0 border-0 bg-transparent p-0 text-[var(--text-body)] text-sm outline-none focus:outline-none focus:ring-0 focus-visible:outline-none focus-visible:ring-0 focus-visible:ring-offset-0'
maxLength={100}
disabled={disabled}
autoComplete='off'
autoCorrect='off'
autoCapitalize='off'
spellCheck='false'
/>
)
}