mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-23 07:10:41 +00:00
* Implement creating and importing new projects * Add downloading a zip of a project * Project validation (WIP) * Add project side panel, remove project pages * Project file saving * Add file tree actions to rename and delete * Fix file creation auto focus * Add button to save file from menu * Add project creation * Fix specificity on version switcher button * Update default version to 1.19 * List project files by type, remember project and delete project
123 lines
4.2 KiB
TypeScript
123 lines
4.2 KiB
TypeScript
import type { DataModel } from '@mcschema/core'
|
|
import { useCallback, useMemo, useRef, useState } from 'preact/hooks'
|
|
import { Analytics } from '../../Analytics'
|
|
import { disectFilePath, DRAFT_PROJECT, getFilePath, useLocale, useProject } from '../../contexts'
|
|
import type { VersionId } from '../../services'
|
|
import { stringifySource } from '../../services'
|
|
import { Store } from '../../Store'
|
|
import { writeZip } from '../../Utils'
|
|
import { Btn } from '../Btn'
|
|
import { BtnMenu } from '../BtnMenu'
|
|
import type { EntryAction } from '../TreeView'
|
|
import { TreeView } from '../TreeView'
|
|
|
|
interface Props {
|
|
model: DataModel | undefined,
|
|
version: VersionId,
|
|
id: string,
|
|
onError: (message: string) => unknown,
|
|
onRename: (file: { type: string, id: string }) => unknown,
|
|
onCreate: () => unknown,
|
|
onDeleteProject: () => unknown,
|
|
}
|
|
export function ProjectPanel({ onRename, onCreate, onDeleteProject }: Props) {
|
|
const { locale } = useLocale()
|
|
const { projects, project, changeProject, file, openFile, updateFile } = useProject()
|
|
|
|
const [treeViewMode, setTreeViewMode] = useState(Store.getTreeViewMode())
|
|
|
|
const changeTreeViewMode = useCallback((mode: string) => {
|
|
Store.setTreeViewMode(mode)
|
|
Analytics.setTreeViewMode(mode)
|
|
setTreeViewMode(mode)
|
|
}, [])
|
|
|
|
const disectEntry = useCallback((entry: string) => {
|
|
if (treeViewMode === 'resources') {
|
|
const [type, id] = entry.split('/')
|
|
return {
|
|
type: type.replaceAll('\u2215', '/'),
|
|
id: id.replaceAll('\u2215', '/'),
|
|
}
|
|
}
|
|
return disectFilePath(entry)
|
|
}, [treeViewMode])
|
|
|
|
const entries = useMemo(() => project.files.flatMap(f => {
|
|
const path = getFilePath(f)
|
|
if (!path) return []
|
|
if (treeViewMode === 'resources') {
|
|
return [`${f.type.replaceAll('/', '\u2215')}/${f.id.replaceAll('/', '\u2215')}`]
|
|
}
|
|
return [path]
|
|
}), [treeViewMode, ...project.files])
|
|
|
|
const selected = useMemo(() => file && getFilePath(file), [file])
|
|
|
|
const selectFile = useCallback((entry: string) => {
|
|
const file = disectEntry(entry)
|
|
if (file) {
|
|
openFile(file.type, file.id)
|
|
}
|
|
}, [disectEntry])
|
|
|
|
const download = useRef<HTMLAnchorElement>(null)
|
|
|
|
const onDownload = async () => {
|
|
if (!download.current) return
|
|
const entries = project.files.flatMap(file => {
|
|
const path = getFilePath(file)
|
|
if (path === undefined) return []
|
|
return [[path, stringifySource(file.data)]] as [string, string][]
|
|
})
|
|
const url = await writeZip(entries)
|
|
download.current.setAttribute('href', url)
|
|
download.current.setAttribute('download', `${project.name.replaceAll(' ', '_')}.zip`)
|
|
download.current.click()
|
|
}
|
|
|
|
const actions = useMemo<EntryAction[]>(() => [
|
|
{
|
|
icon: 'pencil',
|
|
label: locale('project.rename_file'),
|
|
onAction: (e) => {
|
|
const file = disectEntry(e)
|
|
if (file) {
|
|
onRename(file)
|
|
}
|
|
},
|
|
},
|
|
{
|
|
icon: 'trashcan',
|
|
label: locale('project.delete_file'),
|
|
onAction: (e) => {
|
|
const file = disectEntry(e)
|
|
if (file) {
|
|
Analytics.deleteProjectFile(file.type, projects.length, project.files.length, 'menu')
|
|
updateFile(file.type, file.id, {})
|
|
}
|
|
},
|
|
},
|
|
], [disectEntry, updateFile, onRename])
|
|
|
|
return <>
|
|
<div class="project-controls">
|
|
<BtnMenu icon="chevron_down" label={project.name} tooltip={locale('switch_project')} tooltipLoc="se">
|
|
{projects.map(p => <Btn label={p.name} active={p.name === project.name} onClick={() => changeProject(p.name)} />)}
|
|
</BtnMenu>
|
|
<BtnMenu icon="kebab_horizontal" >
|
|
<Btn icon="file_zip" label={locale('project.download')} onClick={onDownload} />
|
|
<Btn icon="plus_circle" label={locale('project.new')} onClick={onCreate} />
|
|
<Btn icon={treeViewMode === 'resources' ? 'three_bars' : 'rows'} label={locale(treeViewMode === 'resources' ? 'project.show_file_paths' : 'project.show_resources')} onClick={() => changeTreeViewMode(treeViewMode === 'resources' ? 'files' : 'resources')} />
|
|
{project.name !== DRAFT_PROJECT.name && <Btn icon="trashcan" label={locale('project.delete')} onClick={onDeleteProject} />}
|
|
</BtnMenu>
|
|
</div>
|
|
<div class="file-view">
|
|
{entries.length === 0
|
|
? <span>{locale('project.no_files')}</span>
|
|
: <TreeView entries={entries} selected={selected} onSelect={selectFile} actions={actions} />}
|
|
</div>
|
|
<a ref={download} style="display: none;"></a>
|
|
</>
|
|
}
|