Island UI: fix a bug that broke completed step checkmarks in the side navigation

This commit is contained in:
VakarisZ 2021-07-15 11:35:48 +03:00
parent e9094bdfd6
commit 1a7b513ca3
3 changed files with 103 additions and 96 deletions

View File

@ -29,6 +29,7 @@ import {DisabledSidebarLayoutComponent} from "./layouts/DisabledSidebarLayoutCom
import {CompletedSteps} from "./side-menu/CompletedSteps"; import {CompletedSteps} from "./side-menu/CompletedSteps";
import Timeout = NodeJS.Timeout; import Timeout = NodeJS.Timeout;
import IslandHttpClient from "./IslandHttpClient"; import IslandHttpClient from "./IslandHttpClient";
import _ from "lodash";
let notificationIcon = require('../images/notification-logo-512x512.png'); let notificationIcon = require('../images/notification-logo-512x512.png');
@ -91,18 +92,13 @@ class AppComponent extends AuthComponent {
this.authFetch('/api') this.authFetch('/api')
.then(res => res.json()) .then(res => res.json())
.then(res => { .then(res => {
let completedSteps = CompletedSteps.buildFromResponse(res.completed_steps);
// This check is used to prevent unnecessary re-rendering // This check is used to prevent unnecessary re-rendering
let isChanged = false; if (_.isEqual(this.state.completedSteps, completedSteps)) {
for (let step in this.state.completedSteps) { return;
if (this.state.completedSteps[step] !== res['completed_steps'][step]) {
isChanged = true;
break;
} }
} this.setState({completedSteps: completedSteps});
if (isChanged) {
this.setState({completedSteps: res['completed_steps']});
this.showInfectionDoneNotification(); this.showInfectionDoneNotification();
}
}); });
} }
) )

View File

@ -22,6 +22,7 @@ type Props = {
const SideNavComponent = ({disabled=false, completedSteps}: Props) => { const SideNavComponent = ({disabled=false, completedSteps}: Props) => {
return ( return (
<> <>
<NavLink to={'/'} exact={true}> <NavLink to={'/'} exact={true}>

View File

@ -9,14 +9,24 @@ export class CompletedSteps {
public constructor(runServer?: boolean, public constructor(runServer?: boolean,
runMonkey?: boolean, runMonkey?: boolean,
infectinDone?: boolean, infectinDone?: boolean,
reportDone?: boolean, reportDone?: boolean) {
isLoggedIn?: boolean,
needsRegistration?: boolean) {
this.runServer = runServer || false; this.runServer = runServer || false;
this.runMonkey = runMonkey || false; this.runMonkey = runMonkey || false;
this.infectionDone = infectinDone || false; this.infectionDone = infectinDone || false;
this.reportDone = reportDone || false; this.reportDone = reportDone || false;
this.isLoggedIn = isLoggedIn || false; }
this.needsRegistration = needsRegistration || false;
static buildFromResponse(response: CompletedStepsRequest) {
return new CompletedSteps(response.run_server,
response.run_monkey,
response.infection_done,
response.report_done);
} }
} }
type CompletedStepsRequest = {
run_server: boolean,
run_monkey: boolean,
infection_done: boolean,
report_done: boolean
}