Skip to content

Commit

Permalink
deploy: 6bf4635
Browse files Browse the repository at this point in the history
  • Loading branch information
amitu committed Aug 14, 2024
1 parent 6cd6819 commit 0a2e27f
Show file tree
Hide file tree
Showing 194 changed files with 268,555 additions and 268,352 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import {keymap} from "@codemirror/view";
import {insertNewlineAndIndent} from "@codemirror/commands";
import {repl, repl_parser} from "./language";
import {autocompletion, completionKeymap} from '@codemirror/autocomplete';
import {update_context_menu_path} from "../panels/package/package-content";

export class CommandEditor extends HTMLElement {
constructor() {
Expand Down Expand Up @@ -44,6 +45,7 @@ window.ide_open_command_k = (cmd) => {
selection: {anchor: cmd.length, head: cmd.length}
});
window.command_editor.focus();
ide_clear_context_menu();
}

function get_extensions() {
Expand Down Expand Up @@ -110,6 +112,7 @@ window.ide_run_command_parser = run_parser;
document.addEventListener("keydown", (e) => {
if (e.key === "Escape") {
ftd.set_value("ui.fifthtry.com/components/editor/vars#command-k", false);
ide_clear_context_menu();
} else if (e.key === "s" && (e.metaKey || e.ctrlKey)) {
ide_open_command_k("push-file " + ftd.get_value("ui.fifthtry.com/components/editor/vars#current-file"));
e.preventDefault();
Expand All @@ -119,3 +122,9 @@ document.addEventListener("keydown", (e) => {
window.command_editor.focus();
}
});

window.ide_clear_context_menu = () => {
ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path", "");
ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-visible", "hidden");
update_context_menu_path("");
}
2 changes: 1 addition & 1 deletion -/ui.fifthtry.com/components/editor/editor-bundle.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion -/ui.fifthtry.com/components/editor/editor-bundle.js.map

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions -/ui.fifthtry.com/components/editor/editor.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ import {
initialize_package_ui,
update_current_file,
update_modified_files,
update_context_menu_path,
update_only_show_modified_files,
} from "./panels/package/package-content";
import {indentationMarkers} from '@replit/codemirror-indentation-markers';
Expand Down Expand Up @@ -124,6 +125,7 @@ function v(name) {

const VAR_PACKAGE_DATA = v`package-data`;
const VAR_CURRENT_FILE = v`current-file`;
const VAR_CONTEXT_MENU_PATH = v`context-menu-path`;
const VAR_MODIFIED_FILES = v`modified-files`;
const VAR_ONLY_MODIFIED_FILES = v`only-show-modified-files`;
const VAR_PREVIEW_CONTENT = v`preview-content`;
Expand All @@ -134,6 +136,7 @@ window.ide_update_ftd_var = function (name, value) {
if (name === VAR_PACKAGE_DATA) update_package_content(value.folders, value.files);
if (name === VAR_CURRENT_FILE) update_current_file(value);
if (name === VAR_MODIFIED_FILES) update_modified_files(value);
if (name === VAR_CONTEXT_MENU_PATH) update_context_menu_path(value);

if (name === VAR_PREVIEW_CONTENT) {
console.log('ide_update_ftd_var', name, "<html omitted>");
Expand Down
3 changes: 0 additions & 3 deletions -/ui.fifthtry.com/components/editor/ftd2.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,6 @@ export class FastnTik {
}

set(new_value) {
console.log("set called", this.#value, new_value)
this.set_key([], new_value)
}

Expand All @@ -90,7 +89,6 @@ export class FastnTik {

set_key(key, new_value) {
if (key.length === 0) {
console.log("set_key called", this.#value, key, new_value);
this.#value = new_value;
return this.notify_preact();
}
Expand All @@ -104,7 +102,6 @@ export class FastnTik {

f[key[i]] = new_value; // the last element

console.log("set_key called", this.#value, key, new_value);
this.notify_preact()

// earlier we had a ctx tracking based approach, where we also passed
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import * as preact from "preact";
const ROOT_ID = "package-content-placeholder";
const ROOT_DATA = "outer-folder";
const CURRENT_FILE = "current-file";
const CONTEXT_MENU_PATH = "context-menu-path";
const MODIFIED_FILES = "modified-files";
const ONLY_MODIFIED_FILES = "only-modified-files";

Expand All @@ -24,6 +25,11 @@ export function update_modified_files(files) {
ftd2.set_value(ROOT_ID, MODIFIED_FILES, files);
}

export function update_context_menu_path(context_menu_path) {
console.log("update_context_menu_path", context_menu_path);
ftd2.set_value(ROOT_ID, CONTEXT_MENU_PATH, context_menu_path);
}

export function update_current_file(current_file) {
ftd2.set_value(ROOT_ID, CURRENT_FILE, current_file);
let p = ftd2.get_value(ROOT_ID, ROOT_DATA);
Expand Down Expand Up @@ -74,12 +80,13 @@ function show_package_content({folders, files, ftd_root}) {
{folders, files, name: "root", open: true}, ftd_root, ROOT_DATA
);
let current_file = new ftd2.FastnTik(null, ftd_root, CURRENT_FILE).get();
let context_menu_path = new ftd2.FastnTik("", ftd_root, CONTEXT_MENU_PATH).get();
let modified_files = new ftd2.FastnTik([], ftd_root, MODIFIED_FILES).get();
let only_modified_files = new ftd2.FastnTik(false, ftd_root, ONLY_MODIFIED_FILES).get();
return preact.h(
show_folder, {
folder, hide_name: true, level: 0,
current_file, modified_files, only_modified_files,
current_file, context_menu_path, modified_files, only_modified_files,
parent_full_name: "",
}
);
Expand All @@ -100,7 +107,7 @@ const file_color = (file, is_modified) => {
}
}

function triple_dot_icon(open, isFile) {
function triple_dot_icon(open, isFile, fullPath) {
if (!open.get()) return null;
return hover_icon(
"dots-three-circle-vertical", {
Expand All @@ -113,6 +120,9 @@ function triple_dot_icon(open, isFile) {
);
ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-left", pos.left + 16);
ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-top", pos.top + 16);
console.log("ui.fifthtry.com/components/editor/vars#context-menu-path", fullPath);
ftd.set_value("ui.fifthtry.com/components/editor/vars#context-menu-path", fullPath);
update_context_menu_path(fullPath);
e.preventDefault();
e.stopPropagation();
return false;
Expand Down Expand Up @@ -171,6 +181,7 @@ const show_file = ({
file,
level,
current_file,
context_menu_path,
modified_files,
only_modified_files,
}) => {
Expand All @@ -187,6 +198,13 @@ const show_file = ({

let triple_dot = new ftd2.FastnTik(false);

let background = "white";
if (file.full_name === context_menu_path) {
background = "#f5f5f5";
} else if (file.full_name === current_file && context_menu_path === "") {
background = "#f0f0f0";
}

return preact.h(
"a", {
style: {
Expand All @@ -198,7 +216,7 @@ const show_file = ({
flexDirection: "row",
width: "100%",
gap: "3px",
background: file.full_name === current_file ? "#f5f5f5" : "white",
background,
position: "relative",
},
onmouseenter: () => triple_dot.set(true),
Expand All @@ -207,7 +225,7 @@ const show_file = ({
},
icon("file-text", {}),
file.name,
triple_dot_icon(triple_dot, true),
triple_dot_icon(triple_dot, true, file.full_name),
)
}

Expand All @@ -217,6 +235,7 @@ const show_folder = ({
level,
hide_name,
current_file,
context_menu_path,
modified_files,
only_modified_files,
}) => {
Expand Down Expand Up @@ -261,6 +280,7 @@ const show_folder = ({
width: "100%",
"font-family": "monospace",
fontSize: "12px",
background: folder.get().full_name === context_menu_path ? "#f5f5f5" : "white",
}
},
preact.h(
Expand All @@ -283,19 +303,21 @@ const show_folder = ({
},
icon(open.get() ? "folder-open" : "folder", {}),
folder.get().name,
triple_dot_icon(triple_dot, false),
triple_dot_icon(triple_dot, false, folder.get().full_name),
),
open.get() ? folder.index("folders").map((f) => preact.h(show_folder, {
folder: f,
level: level + 1,
current_file,
context_menu_path,
modified_files,
only_modified_files,
parent_full_name: full_name,
})).concat(folder.index("files").map((f) => preact.h(show_file, {
file: f.get(),
level: level + 1,
current_file,
context_menu_path,
modified_files,
only_modified_files,
}))) : [],
Expand Down
Loading

0 comments on commit 0a2e27f

Please sign in to comment.