wisesplit/components/EditBox.tsx
2022-10-24 02:40:14 -05:00

63 lines
1.4 KiB
TypeScript

import { Atom, useAtom } from "jotai";
import { useState } from "react";
import { Form } from "react-bootstrap";
import styled from "styled-components";
export interface Props {
valueAtom: Atom<number>;
}
const ClickableContainer = styled.span`
&:hover {
background-color: #eee;
}
`;
export default function EditBox({ valueAtom }: Props) {
const [value, setValue] = useAtom(valueAtom);
const [valueInput, setValueInput] = useState("");
const [editing, setEditing] = useState(false);
const formatter = new Intl.NumberFormat("en-US", {
style: "currency",
currency: "USD",
});
const startEditing = (_: any) => {
setValueInput(value.toString());
setEditing(true);
};
const finalize = (e: Event) => {
e.preventDefault();
try {
const n = parseFloat(valueInput);
setValue(n);
setEditing(false);
} catch (e) {
// TODO: Handle
}
};
if (editing) {
return (
<form onSubmit={finalize} style={{ display: "inline" }}>
<input
autoFocus={true}
type="number"
step="0.01"
value={valueInput}
onBlur={finalize}
onInput={(e) => setValueInput(e.target.value)}
/>
</form>
);
} else {
return (
<ClickableContainer onClick={startEditing}>
{formatter.format(value)}
</ClickableContainer>
);
}
}