Files
leporello-js/src/editor/files.js

213 lines
5.4 KiB
JavaScript
Raw Normal View History

2022-09-10 02:48:13 +08:00
import {el} from './domutils.js'
import {map_find} from '../utils.js'
import {load_dir, create_file} from '../filesystem.js'
2023-07-02 19:21:20 +03:00
import {exec, get_state, open_directory, reload_run_window} from '../index.js'
const is_html = path => path.endsWith('.htm') || path.endsWith('.html')
const is_js = path => path == '' || path.endsWith('.js') || path.endsWith('.mjs')
2022-09-10 02:48:13 +08:00
export class Files {
constructor(ui) {
this.ui = ui
this.el = el('div', 'files_container')
this.render(get_state())
}
2023-07-02 19:21:20 +03:00
change_entrypoint(e) {
const file = e.target.value
exec('change_entrypoint', file)
this.ui.editor.focus()
}
change_html_file(e) {
const html_file = e.target.value
exec('change_html_file', html_file)
reload_run_window(get_state())
}
2022-09-10 02:48:13 +08:00
render(state) {
if(state.project_dir == null) {
this.el.innerHTML = ''
this.el.appendChild(
el('div', 'allow_file_access',
el('a', {
href: 'javascript:void(0)',
click: open_directory,
2022-09-10 02:48:13 +08:00
},
`Allow access to local project folder`,
),
el('div', 'subtitle', `Your files will never leave your device`)
)
)
} else {
2023-07-02 19:21:20 +03:00
this.render_files(state)
2022-09-10 02:48:13 +08:00
}
}
2023-07-02 19:21:20 +03:00
render_files(state) {
2022-09-10 02:48:13 +08:00
const children = [
2023-07-02 19:21:20 +03:00
this.render_file({name: '*scratch*', path: ''}, state),
this.render_file(state.project_dir, state),
2022-09-10 02:48:13 +08:00
]
2023-07-02 19:21:20 +03:00
const files = this.el.querySelector('.files')
2022-09-10 02:48:13 +08:00
if(files == null) {
this.el.innerHTML = ''
this.el.appendChild(
el('div', 'file_actions',
el('a', {
2023-07-02 19:21:20 +03:00
'class': 'file_action',
2022-09-10 02:48:13 +08:00
href: 'javascript: void(0)',
click: this.create_file.bind(this, false),
},
'Create file'
),
el('a', {
2023-07-02 19:21:20 +03:00
'class': 'file_action',
2022-09-10 02:48:13 +08:00
href: 'javascript: void(0)',
click: this.create_file.bind(this, true),
}, 'Create dir'),
2023-07-02 19:21:20 +03:00
el('a', {
href: 'https://github.com/leporello-js/leporello-js#selecting-entrypoint-module',
target: '__blank',
"class": 'select_entrypoint_title',
title: 'Select entrypoint',
}, 'Entry point'),
2022-09-10 02:48:13 +08:00
)
)
this.el.appendChild(
el('div', 'files',
children
)
)
} else {
// Replace to preserve scroll position
files.replaceChildren(...children)
}
}
2023-07-02 19:21:20 +03:00
render_select_entrypoint(file, state) {
if(file.kind == 'directory') {
return null
} else if(is_js(file.path)) {
return el('span', 'select_entrypoint',
el('input', {
type: 'radio',
name: 'js_entrypoint',
value: file.path,
checked: state.entrypoint == file.path,
change: e => this.change_entrypoint(e),
click: e => e.stopPropagation(),
})
)
} else if(is_html(file.path)) {
return el('span', 'select_entrypoint',
el('input', {
type: 'radio',
name: 'html_file',
value: file.path,
checked: state.html_file == file.path,
change: e => this.change_html_file(e),
click: e => e.stopPropagation(),
})
)
} else {
return null
}
}
render_file(file, state) {
2022-09-10 02:48:13 +08:00
const result = el('div', 'file',
el('div', {
2023-07-02 19:21:20 +03:00
'class': 'file_title' + (file.path == state.current_module ? ' active' : ''),
2022-09-10 02:48:13 +08:00
click: e => this.on_click(e, file)
},
el('span', 'icon',
file.kind == 'directory'
? '\u{1F4C1}' // folder icon
: '\xa0',
),
file.name,
2023-07-02 19:21:20 +03:00
this.render_select_entrypoint(file, state),
2022-09-10 02:48:13 +08:00
),
file.children == null
? null
2023-07-02 19:21:20 +03:00
: file.children.map(c => this.render_file(c, state))
2022-09-10 02:48:13 +08:00
)
2023-07-02 19:21:20 +03:00
if(file.path == state.current_module) {
2022-09-10 02:48:13 +08:00
this.active_el = result
this.active_file = file
}
return result
}
async create_file(is_dir) {
if(this.active_file == null) {
throw new Error('no active file')
}
let name = prompt(`Enter ${is_dir ? 'directory' : 'file'} name`)
if(name == null) {
return
}
let dir
const root = get_state().project_dir
if(this.active_file.path == '' /* scratch */) {
// Create in root directory
dir = root
} else {
if(this.active_file.kind == 'directory') {
dir = this.active_file
} else {
const find_parent = (dir, parent) => {
if(dir.path == this.active_file.path) {
return parent
}
if(dir.children == null) {
return null
}
return map_find(dir.children, c => find_parent(c, dir))
}
dir = find_parent(root)
if(dir == null) {
throw new Error('illegal state')
}
}
}
const path = dir == root ? name : dir.path + '/' + name
await create_file(path, is_dir)
// Reload all files for simplicity
load_dir(false).then(dir => {
if(is_dir) {
exec('load_dir', dir)
} else {
exec('create_file', dir, path)
}
})
}
on_click(e, file) {
e.stopPropagation()
this.active_el.querySelector('.file_title').classList.remove('active')
this.active_el = e.currentTarget.parentElement
e.currentTarget.classList.add('active')
this.active_file = file
if(file.kind != 'directory') {
exec('change_current_module', file.path)
}
}
}