Let ... in ... block is working
This commit is contained in:
parent
f09261df93
commit
897824e07d
10 changed files with 28 additions and 24 deletions
|
|
@ -24,6 +24,7 @@ nav {
|
|||
|
||||
main {
|
||||
grid-area: content;
|
||||
overflow: scroll;
|
||||
}
|
||||
|
||||
aside {
|
||||
|
|
|
|||
|
|
@ -52,9 +52,9 @@ export function App() {
|
|||
|
||||
const commands = [
|
||||
["call" , "[c] call" ],
|
||||
["eval" , "[u] [Tab] [Enter] eval"],
|
||||
["eval" , "[e] [Tab] [Enter] eval"],
|
||||
["transform", "[t] [.] transform" ],
|
||||
["let" , "[=] let ... in ..." ],
|
||||
["let" , "[l] [=] let ... in ..." ],
|
||||
];
|
||||
|
||||
const [highlighted, setHighlighted] = useState(
|
||||
|
|
|
|||
|
|
@ -5,20 +5,11 @@
|
|||
color: black;
|
||||
}
|
||||
|
||||
.functionBlock.unifyError {
|
||||
/* background-color: pink; */
|
||||
/* color:white; */
|
||||
}
|
||||
|
||||
.functionName {
|
||||
/* text-align: center; */
|
||||
background-color: white;
|
||||
}
|
||||
|
||||
.functionBlock.unifyError .functionName {
|
||||
/* background-color: pink; */
|
||||
}
|
||||
|
||||
.inputParam:after {
|
||||
content: "";
|
||||
position: absolute;
|
||||
|
|
|
|||
|
|
@ -152,7 +152,7 @@ function FunctionHeader({ fn, setFn, input, onFnResolve }) {
|
|||
|
||||
// end of recursion - draw function name
|
||||
return <div className="functionName">
|
||||
𝑓𝑛
|
||||
𝑓𝑛
|
||||
<Editor
|
||||
state={fn}
|
||||
setState={setFn}
|
||||
|
|
|
|||
|
|
@ -26,7 +26,7 @@ interface EditorProps extends State2Props<EditorState> {
|
|||
}
|
||||
|
||||
function getCommands(type) {
|
||||
const commands = ['u', 't', 'Enter', 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'l', '=', '.'];
|
||||
const commands = ['e', 't', 'Enter', 'Backspace', 'ArrowLeft', 'ArrowRight', 'Tab', 'l', '=', '.'];
|
||||
if (getSymbol(type) === symbolFunction) {
|
||||
commands.push('c');
|
||||
}
|
||||
|
|
@ -82,7 +82,7 @@ export function Editor({state, setState, onResolve, onCancel, filter}: EditorPro
|
|||
e.preventDefault();
|
||||
setNeedCommand(false);
|
||||
// u -> pass Up
|
||||
if (e.key === "u" || e.key === "Enter" || e.key === "Tab" && !e.shiftKey) {
|
||||
if (e.key === "e" || e.key === "Enter" || e.key === "Tab" && !e.shiftKey) {
|
||||
onResolve(state);
|
||||
globalContext?.doHighlight.eval();
|
||||
return;
|
||||
|
|
|
|||
|
|
@ -154,7 +154,7 @@ export function InputBlock({ state, setState, filter, onResolve, onCancel }: Inp
|
|||
}
|
||||
{/* Input box */}
|
||||
<input ref={inputRef}
|
||||
placeholder="start typing..."
|
||||
placeholder="<name or literal>"
|
||||
className="editable"
|
||||
value={text}
|
||||
onInput={onInput}
|
||||
|
|
|
|||
6
src/LetInBlock.css
Normal file
6
src/LetInBlock.css
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
|
||||
.keyword {
|
||||
color: blue;
|
||||
margin: 0 2px 0 2px;
|
||||
}
|
||||
|
||||
|
|
@ -5,6 +5,8 @@ import type { Dynamic, State2Props } from "./util/extra";
|
|||
import { growEnv } from "dope2";
|
||||
import { autoInputWidth } from "./util/dom_trickery";
|
||||
|
||||
import "./LetInBlock.css";
|
||||
|
||||
export interface LetInBlockState {
|
||||
kind: "let";
|
||||
name: string;
|
||||
|
|
@ -23,6 +25,9 @@ export function LetInBlock({state, setState, onResolve}: LetInBlockProps) {
|
|||
const env = useContext(EnvContext);
|
||||
const nameRef = useRef<HTMLInputElement>(null);
|
||||
|
||||
const setInner = inner => setState({...state, inner});
|
||||
const setValue = value => setState({...state, value});
|
||||
|
||||
const onChangeName = (e: React.ChangeEvent<HTMLInputElement>) => {
|
||||
setState({...state, name: e.target.value});
|
||||
}
|
||||
|
|
@ -37,27 +42,29 @@ export function LetInBlock({state, setState, onResolve}: LetInBlockProps) {
|
|||
&& growEnv(env)(name)(value.resolved) || env;
|
||||
return <span className="letIn">
|
||||
<div className="decl">
|
||||
let <input
|
||||
<span className="keyword">let</span>
|
||||
<input
|
||||
ref={nameRef}
|
||||
className='editable'
|
||||
value={name}
|
||||
placeholder="<variable name>"
|
||||
onChange={onChangeName}
|
||||
/> =
|
||||
/>
|
||||
<span className="keyword">=</span>
|
||||
<Editor
|
||||
state={value}
|
||||
setState={setValue}
|
||||
filter={() => true}
|
||||
onResolve={(state: EditorState) => {} }
|
||||
onResolve={() => {}}
|
||||
onCancel={() => {}}
|
||||
setState={(state: EditorState) => {} }
|
||||
/>
|
||||
in
|
||||
<span className="keyword">in</span>
|
||||
</div>
|
||||
<div className="inner">
|
||||
<EnvContext value={innerEnv}>
|
||||
<Editor
|
||||
state={inner}
|
||||
setState={innerState => setState({...state, inner})}
|
||||
setState={setInner}
|
||||
filter={() => true}
|
||||
onResolve={onResolve}
|
||||
onCancel={() => {}}
|
||||
|
|
|
|||
|
|
@ -9,4 +9,3 @@ body {
|
|||
font-style: normal;
|
||||
font-variation-settings: "wdth" 100;
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -51,6 +51,6 @@ export function focusPrevElement() {
|
|||
|
||||
export const autoInputWidth = (inputRef: React.RefObject<HTMLInputElement| null>, text) => {
|
||||
if (inputRef.current) {
|
||||
inputRef.current.style.width = `${text.length === 0 ? 140 : (text.length*8.7)}px`;
|
||||
inputRef.current.style.width = `${text.length === 0 ? 150 : (text.length*8.7)}px`;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue