mirror of
https://github.com/leporello-js/leporello-js
synced 2026-01-13 21:14:28 -08:00
871 lines
22 KiB
JavaScript
871 lines
22 KiB
JavaScript
import {map_object, filter_object, pick_keys, collect_nodes_with_parents, uniq}
|
|
from './utils.js'
|
|
import {
|
|
is_eq, is_child, ancestry, ancestry_inc, map_tree,
|
|
find_leaf, find_fn_by_location, find_node, find_error_origin_node,
|
|
collect_external_imports
|
|
} from './ast_utils.js'
|
|
import {load_modules} from './parse_js.js'
|
|
import {find_export} from './find_definitions.js'
|
|
import {eval_modules} from './eval.js'
|
|
import {
|
|
root_calltree_node, root_calltree_module, make_calltree,
|
|
get_deferred_calls,
|
|
calltree_commands,
|
|
add_frame, calltree_node_loc, expand_path,
|
|
initial_calltree_node, default_expand_path, toggle_expanded, active_frame,
|
|
find_call, find_call_node, set_active_calltree_node,
|
|
set_cursor_position, current_cursor_position, set_location
|
|
} from './calltree.js'
|
|
|
|
const collect_logs = (logs, call) => {
|
|
const id_to_log = new Map(
|
|
collect_nodes_with_parents(call, n => n.is_log)
|
|
.map(({parent, node}) => (
|
|
[
|
|
node.id,
|
|
{
|
|
id: node.id,
|
|
toplevel: parent.toplevel,
|
|
module: parent.toplevel
|
|
? parent.module
|
|
: parent.fn.__location.module,
|
|
parent_name: parent.fn?.name,
|
|
args: node.args,
|
|
log_fn_name: node.fn.name,
|
|
}
|
|
]
|
|
))
|
|
)
|
|
return logs.map(l => id_to_log.get(l.id))
|
|
}
|
|
|
|
const apply_eval_result = (state, eval_result) => {
|
|
// TODO what if console.log called from native fn (like Array::map)?
|
|
// Currently it is not recorded. Maybe we should monkey patch `console`?
|
|
return {
|
|
...state,
|
|
calltree: make_calltree(eval_result.calltree, null),
|
|
eval_cxt: eval_result.eval_cxt,
|
|
logs: {
|
|
logs: collect_logs(eval_result.logs, eval_result.calltree),
|
|
log_position: null
|
|
},
|
|
modules: eval_result.modules,
|
|
io_cache:
|
|
(eval_result.io_cache == null || eval_result.io_cache.length == 0)
|
|
// If new cache is empty, reuse previous cache
|
|
? state.io_cache
|
|
: eval_result.io_cache
|
|
}
|
|
}
|
|
|
|
const run_code = (s, dirty_files) => {
|
|
|
|
const parse_result = load_modules(s.entrypoint, module => {
|
|
if(dirty_files != null && dirty_files.includes(module)) {
|
|
return s.files[module]
|
|
}
|
|
|
|
if(s.parse_result != null) {
|
|
const result = s.parse_result.cache[module]
|
|
if(result != null) {
|
|
return result
|
|
} else {
|
|
return s.files[module]
|
|
}
|
|
} else {
|
|
return s.files[module]
|
|
}
|
|
|
|
})
|
|
|
|
const state = {
|
|
...s,
|
|
parse_result,
|
|
calltree: null,
|
|
modules: null,
|
|
|
|
// Shows that calltree is brand new and requires entire rerender
|
|
calltree_changed_token: {},
|
|
|
|
eval_cxt: null,
|
|
logs: null,
|
|
current_calltree_node: null,
|
|
active_calltree_node: null,
|
|
calltree_node_is_expanded: null,
|
|
frames: null,
|
|
calltree_node_by_loc: null,
|
|
selection_state: null,
|
|
loading_external_imports_state: null,
|
|
value_explorer: null,
|
|
}
|
|
|
|
if(!state.parse_result.ok) {
|
|
return state
|
|
}
|
|
|
|
const external_imports = uniq(
|
|
collect_external_imports(state.parse_result.modules)
|
|
.map(i => i.node.full_import_path)
|
|
)
|
|
|
|
if(
|
|
external_imports.length != 0
|
|
&&
|
|
(
|
|
state.external_imports_cache == null
|
|
||
|
|
external_imports.some(i => state.external_imports_cache[i] == null)
|
|
)
|
|
) {
|
|
// Trigger loading of external modules
|
|
return {...state,
|
|
loading_external_imports_state: {
|
|
external_imports,
|
|
}
|
|
}
|
|
} else {
|
|
// Modules were loaded and cached, proceed
|
|
return external_imports_loaded(
|
|
state,
|
|
state,
|
|
state.external_imports_cache == null
|
|
? null
|
|
: filter_object(
|
|
state.external_imports_cache,
|
|
(module_name, module) => external_imports.includes(module_name)
|
|
),
|
|
)
|
|
}
|
|
|
|
}
|
|
|
|
const external_imports_loaded = (
|
|
s,
|
|
prev_state,
|
|
external_imports,
|
|
) => {
|
|
if(
|
|
s.loading_external_imports_state
|
|
!=
|
|
prev_state.loading_external_imports_state
|
|
) {
|
|
// code was modified after loading started, discard
|
|
return s
|
|
}
|
|
|
|
const state = {
|
|
...s,
|
|
external_imports_cache: external_imports,
|
|
loading_external_imports_state: null
|
|
}
|
|
|
|
if(external_imports != null) {
|
|
const errors = new Set(
|
|
Object
|
|
.entries(external_imports)
|
|
.filter(([url, result]) => !result.ok)
|
|
.map(([url, result]) => url)
|
|
)
|
|
if(errors.size != 0) {
|
|
const problems = collect_external_imports(state.parse_result.modules)
|
|
.filter(({node}) => errors.has(node.full_import_path))
|
|
.map(({node, module_name}) => ({
|
|
index: node.index,
|
|
message: external_imports[node.full_import_path].error.message,
|
|
module: module_name,
|
|
}))
|
|
return {...state,
|
|
parse_result: {
|
|
ok: false,
|
|
cache: state.parse_result.cache,
|
|
problems,
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const node = find_call_node(state, current_cursor_position(state))
|
|
|
|
let toplevel, result
|
|
|
|
if(
|
|
// edit module that is not imported (maybe recursively by state.entrypoint)
|
|
// TODO if module not imported, then do not run code on edit at all
|
|
node == null
|
|
||
|
|
node.type == 'do' /* toplevel AST node */
|
|
) {
|
|
result = eval_modules(
|
|
state.parse_result,
|
|
external_imports,
|
|
state.on_deferred_call,
|
|
state.calltree_changed_token,
|
|
state.io_cache,
|
|
)
|
|
toplevel = true
|
|
} else {
|
|
result = eval_modules(
|
|
state.parse_result,
|
|
external_imports,
|
|
state.on_deferred_call,
|
|
state.calltree_changed_token,
|
|
state.io_cache,
|
|
{index: node.index, module: state.current_module},
|
|
)
|
|
toplevel = false
|
|
}
|
|
|
|
if(result.then != null) {
|
|
return {...state,
|
|
eval_modules_state: {
|
|
promise: result, node, toplevel,
|
|
}
|
|
}
|
|
} else {
|
|
return eval_modules_finished(state, state, result, node, toplevel)
|
|
}
|
|
}
|
|
|
|
const eval_modules_finished = (state, prev_state, result, node, toplevel) => {
|
|
if(state.calltree_changed_token != prev_state.calltree_changed_token) {
|
|
// code was modified after prev vesion of code was executed, discard
|
|
return state
|
|
}
|
|
const next = apply_eval_result(state, result)
|
|
|
|
let active_calltree_node
|
|
|
|
if(toplevel) {
|
|
if(node == state.parse_result.modules[root_calltree_module(next)]) {
|
|
active_calltree_node = root_calltree_node(next)
|
|
} else {
|
|
active_calltree_node = null
|
|
}
|
|
} else {
|
|
if(result.call == null) {
|
|
// Unreachable call
|
|
active_calltree_node = null
|
|
} else {
|
|
active_calltree_node = result.call
|
|
}
|
|
}
|
|
|
|
let result_state
|
|
|
|
if(active_calltree_node == null) {
|
|
const {node, state: next2} = initial_calltree_node(next)
|
|
result_state = set_active_calltree_node(next2, null, node)
|
|
} else {
|
|
result_state = add_frame(
|
|
default_expand_path(
|
|
expand_path(
|
|
next,
|
|
active_calltree_node
|
|
)
|
|
),
|
|
active_calltree_node,
|
|
)
|
|
}
|
|
|
|
const eval_state_clear = result_state.eval_modules_state == null
|
|
? result_state
|
|
: {...result_state, eval_modules_state: null}
|
|
|
|
return do_move_cursor(
|
|
eval_state_clear,
|
|
current_cursor_position(eval_state_clear)
|
|
)
|
|
}
|
|
|
|
const input = (state, code, index) => {
|
|
const files = {...state.files, [state.current_module]: code}
|
|
const next = run_code(
|
|
set_cursor_position({...state, files}, index),
|
|
[state.current_module]
|
|
)
|
|
const effect_save = next.current_module == ''
|
|
? {type: 'save_to_localstorage', args: ['code', code]}
|
|
: {type: 'write', args: [
|
|
next.current_module,
|
|
next.files[next.current_module],
|
|
]}
|
|
return {state: next, effects: [effect_save]}
|
|
}
|
|
|
|
const can_evaluate_node = (parent, node) => {
|
|
// TODO also can evaluate in top level even if stepped into (and evaluate in
|
|
// any stack frame that was before current one)
|
|
|
|
const anc = ancestry(node, parent)
|
|
if(anc == null){
|
|
return {ok: false, message: 'out of scope'}
|
|
}
|
|
|
|
const intermediate_fn = anc.find(n =>
|
|
!is_eq(n, parent) && !is_eq(n, node) && n.type == 'function_expr'
|
|
)
|
|
|
|
if(intermediate_fn != null){
|
|
// TODO check if identifier is defined in current scope, and eval
|
|
return {ok: false, message: 'cannot eval inside function: first step into it'}
|
|
}
|
|
|
|
return {ok: true}
|
|
}
|
|
|
|
const validate_index_action = state => {
|
|
if(!state.parse_result.ok){
|
|
return {state, effects: {type: 'set_status', args: ['invalid syntax']}}
|
|
}
|
|
|
|
if(
|
|
state.loading_external_imports_state != null
|
|
||
|
|
state.eval_modules_state != null
|
|
) {
|
|
return {state, effects: {type: 'set_status', args: ['loading']}}
|
|
}
|
|
|
|
if(
|
|
state.active_calltree_node == null
|
|
||
|
|
calltree_node_loc(state.active_calltree_node).module != state.current_module
|
|
) {
|
|
return {
|
|
state,
|
|
effects: {
|
|
type: 'set_status',
|
|
args: ['code was not reached during program execution']
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const get_step_into_node = (ast, frame, index) => {
|
|
// TODO step into from toplevel (must be fixed by frame follows cursor)
|
|
|
|
const node = find_leaf(ast, index)
|
|
|
|
// Find parent node with function call
|
|
const call = ancestry_inc(node, ast).find(n => n.type == 'function_call')
|
|
|
|
if(call == null){
|
|
return {ok: false, message: 'no function call to step into'}
|
|
}
|
|
|
|
const can_eval = can_evaluate_node(frame, call)
|
|
if(!can_eval.ok){
|
|
return {ok: false, message: can_eval.message}
|
|
}
|
|
|
|
const callnode = find_node(frame, n => is_eq(n, call))
|
|
if(callnode.result == null) {
|
|
return {ok: false, message: 'call was not reached during program execution'}
|
|
} else {
|
|
return {ok: true, calltree_node: callnode.result.call}
|
|
}
|
|
}
|
|
|
|
const step_into = (state, index) => {
|
|
|
|
const validate_result = validate_index_action(state)
|
|
if(validate_result != null) {
|
|
return validate_result
|
|
}
|
|
|
|
const {ok, message, calltree_node} = get_step_into_node(
|
|
state.parse_result.modules[state.current_module],
|
|
active_frame(state),
|
|
index
|
|
)
|
|
if(!ok){
|
|
return {state, effects: {type: 'set_status', args: [message]}}
|
|
} else {
|
|
const expanded = {
|
|
...state, calltree_node_is_expanded: {
|
|
...state.calltree_node_is_expanded, [calltree_node.id]: true
|
|
}
|
|
}
|
|
return toggle_expanded(
|
|
{...expanded, current_calltree_node: calltree_node},
|
|
true
|
|
)
|
|
}
|
|
}
|
|
|
|
const get_next_selection_state = (selection_state, frame, is_expand, index) => {
|
|
if(selection_state != null && selection_state.index == index){
|
|
// Expanding/collapsing selection
|
|
let next_node
|
|
const effective_is_expand = selection_state.initial_is_expand == is_expand
|
|
if(effective_is_expand){
|
|
if(is_eq(selection_state.node, frame)) {
|
|
next_node = selection_state.node
|
|
} else {
|
|
next_node = ancestry(selection_state.node, frame).find(n => !n.not_evaluatable)
|
|
if(next_node.is_statement) {
|
|
next_node = selection_state.node
|
|
}
|
|
}
|
|
} else {
|
|
// TODO when collapsing, also check that node is evaluatable
|
|
// collapse
|
|
if(selection_state.node.children != null){
|
|
next_node =
|
|
selection_state.node.children.find(n =>
|
|
n.index <= index && n.index + n.length > index
|
|
)
|
|
??
|
|
// cursor not inside child but in whitespace
|
|
selection_state.node
|
|
} else {
|
|
// no children, cannot collapse
|
|
next_node = selection_state.node
|
|
}
|
|
}
|
|
return {
|
|
ok: true,
|
|
initial_is_expand: selection_state.initial_is_expand,
|
|
node: next_node,
|
|
index,
|
|
}
|
|
} else {
|
|
// Creating new selection
|
|
const leaf = find_leaf(frame, index);
|
|
const a = ancestry_inc(leaf, frame);
|
|
const node = a.find(n => !n.not_evaluatable);
|
|
if(node.is_statement) {
|
|
return {
|
|
ok: false,
|
|
message: 'can only evaluate expression, not statement',
|
|
}
|
|
}
|
|
return {
|
|
ok: true,
|
|
index,
|
|
node,
|
|
initial_is_expand: is_expand,
|
|
}
|
|
}
|
|
}
|
|
|
|
export const selection = (selection_state, frame, is_expand, index) => {
|
|
const leaf = find_leaf(frame, index)
|
|
if(leaf == null) {
|
|
return {
|
|
ok: false,
|
|
message: 'out of scope',
|
|
}
|
|
}
|
|
|
|
const next_selection_state = get_next_selection_state(selection_state, frame, is_expand, index)
|
|
|
|
if(!next_selection_state.ok) {
|
|
return next_selection_state
|
|
}
|
|
|
|
const {ok, message} = can_evaluate_node(frame, next_selection_state.node)
|
|
if(ok){
|
|
const node = find_node(frame, n => is_eq(n, next_selection_state.node))
|
|
if(node.result == null) {
|
|
return {
|
|
...next_selection_state,
|
|
ok: false,
|
|
message: 'expression was not reached during program execution',
|
|
}
|
|
} else {
|
|
let result
|
|
if(node.result.ok) {
|
|
result = node.result
|
|
} else {
|
|
const error_node = find_error_origin_node(node)
|
|
result = error_node.result
|
|
}
|
|
return {...next_selection_state, ok: true, result}
|
|
}
|
|
} else {
|
|
return {...next_selection_state, ok: false, message}
|
|
}
|
|
}
|
|
|
|
const eval_selection = (state, index, is_expand) => {
|
|
const validate_result = validate_index_action(state)
|
|
if(validate_result != null) {
|
|
return validate_result
|
|
}
|
|
|
|
const selection_state = selection(
|
|
state.selection_state,
|
|
active_frame(state),
|
|
is_expand,
|
|
index
|
|
)
|
|
|
|
const nextstate = {...state, selection_state}
|
|
|
|
if(!selection_state.ok) {
|
|
return {state: nextstate, effects: {type: 'set_status', args: [selection_state.message]}}
|
|
}
|
|
|
|
return {state: nextstate}
|
|
}
|
|
|
|
|
|
const change_current_module = (state, current_module) => {
|
|
if(state.files[current_module] == null) {
|
|
return {
|
|
state,
|
|
effects: {type: 'set_status', args: ['File not found']}
|
|
}
|
|
} else {
|
|
return {...state, current_module}
|
|
}
|
|
}
|
|
|
|
const change_entrypoint = (state, entrypoint) => {
|
|
return run_code(
|
|
{...state,
|
|
entrypoint,
|
|
current_module: entrypoint,
|
|
}
|
|
)
|
|
}
|
|
|
|
const change_html_file = (state, html_file) => {
|
|
return {...state, html_file}
|
|
}
|
|
|
|
const goto_definition = (state, index) => {
|
|
if(!state.parse_result.ok){
|
|
return {state, effects: {type: 'set_status', args: ['unresolved syntax errors']}}
|
|
} else {
|
|
const module = state.parse_result.modules[state.current_module]
|
|
const node = find_leaf(module, index)
|
|
if(node == null || node.type != 'identifier') {
|
|
return {state, effects: {type: 'set_status', args: ['not an identifier']}}
|
|
} else {
|
|
const d = node.definition
|
|
if(d == 'global') {
|
|
return {state, effects: {type: 'set_status', args: ['global variable']}}
|
|
} else if (d == 'self') {
|
|
// place where identifier is declared, nothing to do
|
|
return {state}
|
|
} else {
|
|
let loc
|
|
if(d.module != null) {
|
|
const exp = find_export(node.value, state.parse_result.modules[d.module])
|
|
loc = {module: d.module, index: exp.index}
|
|
} else {
|
|
loc = {module: state.current_module, index: d.index}
|
|
}
|
|
return {
|
|
state: move_cursor(
|
|
{...state, current_module: loc.module},
|
|
loc.index,
|
|
)
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
const goto_problem = (state, p) => {
|
|
return {
|
|
state: set_location(state, p),
|
|
effects: {type: 'set_focus'}
|
|
}
|
|
}
|
|
|
|
|
|
// TODO remove?
|
|
// TODO: to every child, add displayed_children property
|
|
/*
|
|
const filter_calltree = (calltree, pred) => {
|
|
const do_filter_calltree = calltree => {
|
|
const children = calltree.children && calltree.children
|
|
.map(c => do_filter_calltree(c))
|
|
.flat()
|
|
|
|
if(pred(calltree)) {
|
|
return [{...calltree, children}]
|
|
} else {
|
|
return children
|
|
}
|
|
}
|
|
|
|
const result = do_filter_calltree(calltree)
|
|
|
|
if(result.length == 1 && result[0].toplevel) {
|
|
return result[0]
|
|
} else {
|
|
return {...calltree, children: result}
|
|
}
|
|
}
|
|
*/
|
|
|
|
const get_value_explorer = (state, index) => {
|
|
if(
|
|
state.active_calltree_node == null
|
|
||
|
|
(
|
|
state.current_module
|
|
!=
|
|
calltree_node_loc(state.active_calltree_node).module
|
|
)
|
|
) {
|
|
return null
|
|
}
|
|
|
|
const frame = active_frame(state)
|
|
|
|
if(
|
|
true
|
|
// not toplevel, function expr
|
|
&& frame.type == 'function_expr'
|
|
&& index >= frame.children[0].index
|
|
&& index < frame.children[0].index + frame.children[0].length
|
|
) {
|
|
if(frame.children[0].children.length == 0) {
|
|
// Zero args
|
|
return null
|
|
} else {
|
|
// cursor in args, show args
|
|
return {
|
|
index: frame.children[0].index,
|
|
result: frame.children[0].result,
|
|
}
|
|
}
|
|
}
|
|
|
|
if(frame.type == 'function_expr' && frame.body.type != 'do') {
|
|
const result = frame.children[1].result
|
|
return {
|
|
index: frame.children[1].index,
|
|
result: result.ok
|
|
? result
|
|
: find_error_origin_node(frame.children[1]).result
|
|
}
|
|
}
|
|
|
|
const leaf = find_leaf(frame, index)
|
|
const adjusted_leaf = (
|
|
// We are in the whitespace at the beginning or at the end of the file
|
|
leaf == null
|
|
||
|
|
// Empty body or cursor between statements
|
|
leaf.type == 'do' && index > frame.index
|
|
)
|
|
// Try find statement one symbol before, in case we are typing at the end
|
|
// of current statement
|
|
? find_leaf(frame, index - 1)
|
|
: leaf
|
|
|
|
if(
|
|
adjusted_leaf == null
|
|
||
|
|
adjusted_leaf.type == 'do'
|
|
||
|
|
/* between body and args*/
|
|
is_eq(frame, adjusted_leaf)
|
|
) {
|
|
return null
|
|
}
|
|
|
|
const anc = ancestry_inc(adjusted_leaf, frame)
|
|
const intermediate_fn = anc.find(n =>
|
|
!is_eq(n, frame) && !is_eq(n, adjusted_leaf) && n.type == 'function_expr'
|
|
)
|
|
if(intermediate_fn != null) {
|
|
// TODO maybe cut `anc` from frame to intermediate fn, so we do not look
|
|
// inside intermediate fn. But it should be fixed by frame follows cursor
|
|
return null
|
|
}
|
|
|
|
// Find inner do
|
|
const do_index = anc.findIndex(n => n.type == 'do')
|
|
const do_node = anc[do_index]
|
|
const stmt = anc[do_index - 1]
|
|
|
|
if(stmt.result == null) {
|
|
// statement was not evaluated
|
|
return null
|
|
}
|
|
|
|
let result
|
|
|
|
if(stmt.result.ok) {
|
|
if(['const', 'assignment'].includes(stmt.type)) {
|
|
result = stmt.children[1].result
|
|
} else if(stmt.type == 'return') {
|
|
result = stmt.children[0].result
|
|
} else if(stmt.type == 'let') {
|
|
return {
|
|
index: stmt.index,
|
|
result:
|
|
{
|
|
ok: true,
|
|
value: Object.fromEntries(
|
|
stmt.children.map(c =>
|
|
[c.value, c.result.value]
|
|
)
|
|
)
|
|
}
|
|
}
|
|
} else if(stmt.type == 'if'){
|
|
return null
|
|
} else if(stmt.type == 'import'){
|
|
result = {
|
|
ok: true,
|
|
value: pick_keys(
|
|
state.modules[stmt.full_import_path],
|
|
stmt.imports.map(i => i.value)
|
|
),
|
|
}
|
|
} else if (stmt.type == 'export') {
|
|
result = stmt.children[0].children[1].result
|
|
} else {
|
|
result = stmt.result
|
|
}
|
|
} else {
|
|
result = find_error_origin_node(stmt).result
|
|
}
|
|
|
|
return {index: stmt.index, result}
|
|
}
|
|
|
|
const do_move_cursor = (state, index) => {
|
|
return { ...state, value_explorer: get_value_explorer(state, index) }
|
|
}
|
|
|
|
const move_cursor = (s, index) => {
|
|
|
|
const with_cursor = set_cursor_position(s, index)
|
|
|
|
if(!s.parse_result.ok){
|
|
return {state: with_cursor}
|
|
}
|
|
|
|
if(s.loading_external_imports_state != null || s.eval_modules_state != null) {
|
|
// Code will be executed when imports will load, do not do it right now
|
|
return {state: with_cursor}
|
|
}
|
|
|
|
// Remove selection on move cursor
|
|
const state_sel_removed = {...with_cursor, selection_state: null}
|
|
|
|
const state = find_call(state_sel_removed, index)
|
|
|
|
const validate_result = validate_index_action(state)
|
|
if(validate_result != null) {
|
|
return { ...state, value_explorer: null }
|
|
}
|
|
|
|
return do_move_cursor(state, index)
|
|
}
|
|
|
|
const on_deferred_call = (state, call, calltree_changed_token, logs) => {
|
|
if(state.calltree_changed_token != calltree_changed_token) {
|
|
return state
|
|
}
|
|
return {...state,
|
|
calltree: make_calltree(
|
|
root_calltree_node(state),
|
|
[...(get_deferred_calls(state) ?? []), call],
|
|
),
|
|
logs: {
|
|
...state.logs,
|
|
logs: state.logs.logs.concat(collect_logs(logs, call))
|
|
},
|
|
}
|
|
}
|
|
|
|
const clear_io_cache = state => {
|
|
return run_code({...state, io_cache: null})
|
|
}
|
|
|
|
const do_load_dir = (state, dir) => {
|
|
const collect_files = dir => dir.kind == 'file'
|
|
? [dir]
|
|
: dir.children.map(collect_files).flat()
|
|
|
|
const files = Object.fromEntries(
|
|
collect_files(dir).map(f => [f.path, f.contents])
|
|
)
|
|
|
|
return {
|
|
...state,
|
|
project_dir: dir,
|
|
files: {...files, ...state.files},
|
|
}
|
|
}
|
|
|
|
const load_dir = (state, dir) => {
|
|
// Clear parse cache and rerun code
|
|
return run_code({
|
|
...do_load_dir(state, dir),
|
|
// remove cache. We have to clear cache because imports of modules that are
|
|
// not available because project_dir is not available have errors and the
|
|
// errors are cached
|
|
parse_result: null,
|
|
})
|
|
}
|
|
|
|
const create_file = (state, dir, current_module) => {
|
|
return {...load_dir(state, dir), current_module}
|
|
}
|
|
|
|
const open_run_window = state => {
|
|
// After we reopen run window, we should reload external modules in the
|
|
// context of new window. Clear external_imports_cache
|
|
return run_code({
|
|
...state,
|
|
external_imports_cache: null,
|
|
})
|
|
}
|
|
|
|
const get_initial_state = state => {
|
|
const with_files = state.project_dir == null
|
|
? state
|
|
: do_load_dir(state, state.project_dir)
|
|
|
|
const blank_if_not_exists = key =>
|
|
with_files.files[with_files[key]] == null
|
|
? ''
|
|
: with_files[key]
|
|
|
|
const entrypoint = blank_if_not_exists('entrypoint')
|
|
const current_module = blank_if_not_exists('current_module')
|
|
const html_file = blank_if_not_exists('html_file')
|
|
|
|
return {
|
|
...with_files,
|
|
entrypoint,
|
|
current_module,
|
|
html_file,
|
|
cursor_position_by_file: {[current_module]: 0},
|
|
}
|
|
}
|
|
|
|
export const COMMANDS = {
|
|
get_initial_state,
|
|
input,
|
|
open_run_window,
|
|
load_dir,
|
|
create_file,
|
|
step_into,
|
|
change_current_module,
|
|
change_entrypoint,
|
|
change_html_file,
|
|
goto_definition,
|
|
goto_problem,
|
|
move_cursor,
|
|
eval_selection,
|
|
external_imports_loaded,
|
|
eval_modules_finished,
|
|
on_deferred_call,
|
|
clear_io_cache,
|
|
calltree: calltree_commands,
|
|
}
|