Skip to content
Snippets Groups Projects
Commit 1fec88cc authored by Loïc Correnson's avatar Loïc Correnson Committed by David Bühler
Browse files

[ivette] saved custom views

parent f2ecfaf9
No related branches found
No related tags found
No related merge requests found
...@@ -264,19 +264,24 @@ interface CustomViewsSettings { ...@@ -264,19 +264,24 @@ interface CustomViewsSettings {
shapes?: { [k: string]: Shape }; shapes?: { [k: string]: Shape };
} }
type CustomViews = { [id: string]: View };
function CustomViews(props: CustomViewsProps): JSX.Element { function CustomViews(props: CustomViewsProps): JSX.Element {
const { settings, shape, setShape, views: libViews } = props; const { settings, shape, setShape, views: libViews } = props;
const [local, setLocal] = Settings.useWindowSettings<CustomViewsSettings>( const [local, setLocal] = Settings.useWindowSettingsData<CustomViewsSettings>(
settings, settings,
Json.identity as Json.Decoder<CustomViewsSettings & Json.json>, // Clearly abusive conversion, a real decoder is needed Json.identity as Json.Decoder<CustomViewsSettings>,
Json.identity as Json.Encoder<CustomViewsSettings>,
// Clearly abusive conversion, real encoder/decoder are needed
{},
);
const [customs, setCustoms] = Settings.useLocalStorageData<CustomViews>(
'frama-c.labview',
Json.identity as Json.Decoder<CustomViews>,
Json.identity as Json.Encoder<CustomViews>,
// Clearly abusive conversion, real encoder/decoder are needed
{}, {},
); );
const [customs, setCustoms] =
Settings.useLocalStorage<{ [id: string]: View }>(
'frama-c.labview',
Json.identity as Json.Decoder<{ [id: string]: View } & Json.json>, // Clearly abusive conversion, a real decoder is needed
{},
);
const [edited, setEdited] = React.useState<string>(); const [edited, setEdited] = React.useState<string>();
const triggerDefault = React.useRef<View>(); const triggerDefault = React.useRef<View>();
const { current, shapes = {} } = local; const { current, shapes = {} } = local;
...@@ -340,7 +345,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element { ...@@ -340,7 +345,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element {
const base = `custom.${view.origin}`; const base = `custom.${view.origin}`;
const stock = getStock(view.origin); const stock = getStock(view.origin);
let k = 1; let k = 1;
let newId = base; let newId: string = base;
while (theViews[newId]) { while (theViews[newId]) {
k += 1; k += 1;
newId = `${base}~${k}`; newId = `${base}~${k}`;
...@@ -349,7 +354,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element { ...@@ -349,7 +354,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element {
if (newOrder && newOrder.concat) newOrder = newOrder.concat([k]); if (newOrder && newOrder.concat) newOrder = newOrder.concat([k]);
let newLabel = `Custom ${stock.label}`; let newLabel = `Custom ${stock.label}`;
if (k > 1) newLabel += `~${k}`; if (k > 1) newLabel += `~${k}`;
customs[newId] = { const customView = {
id: newId, id: newId,
label: newLabel, label: newLabel,
order: newOrder, order: newOrder,
...@@ -357,10 +362,11 @@ function CustomViews(props: CustomViewsProps): JSX.Element { ...@@ -357,10 +362,11 @@ function CustomViews(props: CustomViewsProps): JSX.Element {
origin: view.origin, origin: view.origin,
builtin: false, builtin: false,
}; };
setCustoms(customs); setCustoms({ ...customs, [newId]: customView });
const newShape = isCurrent ? shape : shapes[id]; const newShape =
shapes[newId] = newShape; isCurrent ? shape : (shapes[id] ?? getDefaultShape(view));
setLocal({ current: newId, shapes }); const newShapes = { ...shapes, [newId]: newShape } ;
setLocal({ current: newId, shapes: newShapes });
setShape(newShape); setShape(newShape);
setEdited(newId); setEdited(newId);
}; };
...@@ -368,7 +374,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element { ...@@ -368,7 +374,7 @@ function CustomViews(props: CustomViewsProps): JSX.Element {
const REMOVE = (): void => { const REMOVE = (): void => {
delete customs[id]; delete customs[id];
delete shapes[id]; delete shapes[id];
setCustoms(customs); setCustoms({ ...customs });
const newCurrent = current === id ? undefined : current; const newCurrent = current === id ? undefined : current;
setLocal({ current: newCurrent, shapes }); setLocal({ current: newCurrent, shapes });
}; };
...@@ -386,9 +392,8 @@ function CustomViews(props: CustomViewsProps): JSX.Element { ...@@ -386,9 +392,8 @@ function CustomViews(props: CustomViewsProps): JSX.Element {
if (edited === id) { if (edited === id) {
const RENAMED = (newLabel: string): void => { const RENAMED = (newLabel: string): void => {
if (newLabel) { if (newLabel) {
const custom = Json.jObj(customs[id] as Json.json) || {}; const customView : View = customs[id];
if (custom) custom.label = newLabel; setCustoms({ ...customs, [id]: { ...customView, label: newLabel } });
setCustoms(customs);
} }
setEdited(undefined); setEdited(undefined);
}; };
......
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