Skip to content

feat: repl: Select top file in file UI when we can't match #1356

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 17 additions & 1 deletion packages/repl/src/lib/Workspace.svelte.ts
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,23 @@ export class Workspace {
if (matching_file) {
this.#select(matching_file as File);
} else {
this.#select(first);
// Try to select the first file in the file selector thing.
// The file selector lists files in the root directory after all files in
// other directories.
const top_file = files.filter(is_file).sort((a, b) => {
const in_root_dir = x => x.basename === x.name

if (in_root_dir(a) != in_root_dir(b)) {
return in_root_dir(a) - in_root_dir(b)
} else if (a.name < b.name) {
return -1
} else if (a.name > b.name) {
return 1
else {
return 0
}
})[0]
this.#select(top_file);
}

this.#files = files;
Expand Down
Loading