Skip to content
Snippets Groups Projects
Commit a05dfc80 authored by Maxime Jacquemin's avatar Maxime Jacquemin
Browse files

[Ivette] Linter, again

parent 21f44fb1
No related branches found
No related tags found
No related merge requests found
...@@ -370,7 +370,7 @@ export function selectLine(view: View, line: number, atTop: boolean): void { ...@@ -370,7 +370,7 @@ export function selectLine(view: View, line: number, atTop: boolean): void {
const { from: goto } = doc.line(Math.max(line, 1)); const { from: goto } = doc.line(Math.max(line, 1));
if (here === goto) return; if (here === goto) return;
view.dispatch({ selection: { anchor: goto }, scrollIntoView: true }); view.dispatch({ selection: { anchor: goto }, scrollIntoView: true });
if (!atTop) return if (!atTop) return;
const effects = EditorView.scrollIntoView(goto, { y: 'start', yMargin: 0 }); const effects = EditorView.scrollIntoView(goto, { y: 'start', yMargin: 0 });
view.dispatch({ effects }); view.dispatch({ effects });
} }
......
...@@ -165,13 +165,13 @@ const extensions: Editor.Extension[] = [ ...@@ -165,13 +165,13 @@ const extensions: Editor.Extension[] = [
EventsHandler, EventsHandler,
]; ];
function markerLocation(m: Ast.marker | undefined): Ast.source | undefined { function useMarkerLocation(m: Ast.marker | undefined): Ast.source | undefined {
const markersInfo = States.useSyncArray(Ast.markerInfo); const markersInfo = States.useSyncArray(Ast.markerInfo);
if (m === undefined || m === '') return undefined; if (m === undefined || m === '') return undefined;
return markersInfo.getData(m)?.sloc; return markersInfo.getData(m)?.sloc;
} }
function functionLocation(fct: string | undefined): Ast.source | undefined { function useFunctionLocation(fct: string | undefined): Ast.source | undefined {
const functionsData = States.useSyncArray(Ast.functions).getArray(); const functionsData = States.useSyncArray(Ast.functions).getArray();
if (fct === undefined || fct === '') return undefined; if (fct === undefined || fct === '') return undefined;
return functionsData.find((e) => e.name === fct)?.sloc; return functionsData.find((e) => e.name === fct)?.sloc;
...@@ -187,8 +187,8 @@ export default function SourceCode(): JSX.Element { ...@@ -187,8 +187,8 @@ export default function SourceCode(): JSX.Element {
const fct = selection?.current?.fct; const fct = selection?.current?.fct;
const displayedFct = React.useRef<string | undefined>(undefined); const displayedFct = React.useRef<string | undefined>(undefined);
const markerSloc = markerLocation(marker); const markerSloc = useMarkerLocation(marker);
const fctSloc = functionLocation(fct); const fctSloc = useFunctionLocation(fct);
const file = fctSloc?.file ?? ''; const file = fctSloc?.file ?? '';
const filename = Path.parse(file).base; const filename = Path.parse(file).base;
......
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