Skip to content
Snippets Groups Projects
Commit c46d61a8 authored by David Bühler's avatar David Bühler
Browse files

[Ivette] Shows a message in the status bar when multiple markers are selected.

parent 77661feb
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,7 @@ import { Client, useModel } from 'dome/table/models';
import { CompactModel } from 'dome/table/arrays';
import * as Ast from 'frama-c/kernel/api/ast';
import * as Server from './server';
import * as Status from 'frama-c/kernel/Status';
// --------------------------------------------------------------------------
// --- Pretty Printing (Browser Console)
......@@ -789,6 +790,14 @@ export function useSelection(): [Selection, (a: SelectionActions) => void] {
const [current, setCurrent] = useGlobalState(GlobalSelection);
const callback = React.useCallback((action) => {
setCurrent(reducer(current, action));
if (isMultipleSelect(action)) {
const l = action.locations.length;
const markers =
(l > 1) ? `${l} markers selected, listed in the 'Locations' panel` :
(l === 1) ? `1 marker selected` : `no markers selected`;
const text = `${action.name}: ${markers}`;
Status.setMessage({ text, title: action.title, kind: 'success' });
}
}, [current, setCurrent]);
return [current, callback];
}
......
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