Skip to content
Snippets Groups Projects
Commit 68593beb authored by Loïc Correnson's avatar Loïc Correnson
Browse files

[ivette] new console auto-scroll

parent eca5716d
No related branches found
No related tags found
No related merge requests found
......@@ -228,27 +228,26 @@ const RenderConsole = (): JSX.Element => {
const scratch = React.useRef([] as string[]);
const [cursor, setCursor] = React.useState(-1);
const [isEmpty, setEmpty] = React.useState(true);
const [noTrash, _setNoTrash] = React.useState(true);
const [noTrash, setNoTrash] = React.useState(true);
const [history, setHistory] = useHistory();
/*
React.useEffect(() => {
const callback = (): void => {
const [maxLines] = Settings.useGlobalSettings(Preferences.ConsoleScrollback);
const headCmd = history[0];
const onChanged = React.useCallback(() => {
if (cursor < 0) {
const { length, toLine: lines } = Server.buffer.range();
if (lines > maxLines) {
const cut = Server.buffer.lineRange(lines - maxLines + 1);
Server.buffer.replaceContents({ offset: 0, length: cut.offset });
Server.buffer.scrollTo({ offset: length - cut.offset, length: 0 });
} else
Server.buffer.scrollTo({ offset: length, length: 0 });
} else {
const cmd = editor.toString().trim();
setEmpty(cmd === '');
setNoTrash(noTrash && cmd === history[0]);
};
editor.on('change', callback);
return () => { editor.off('change', callback); };
});
*/
const [_maxLines] = Settings.useGlobalSettings(Preferences.ConsoleScrollback);
/*
React.useEffect(() => {
Server.buffer.setMaxlines(maxLines);
});
*/
setNoTrash((noTrash) => noTrash && cmd === headCmd);
}
}, [cursor, maxLines, headCmd]);
const doReload = (): void => {
const cfg = Server.getConfig();
......@@ -369,6 +368,7 @@ const RenderConsole = (): JSX.Element => {
<TextView
text={edited ? editor : Server.buffer}
readOnly={!edited}
onChange={onChanged}
/>
</>
);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment