Remove semver logic from navigator & autohide banner (#3584)

This commit is contained in:
Krzysztof Żuraw 2023-04-28 13:37:24 +02:00 committed by GitHub
parent 13ca6bbba8
commit cb3f7d971c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 19 deletions

17
package-lock.json generated
View file

@ -83,7 +83,6 @@
"react-router-dom": "^5.0.1", "react-router-dom": "^5.0.1",
"react-sortable-hoc": "^1.10.1", "react-sortable-hoc": "^1.10.1",
"react-sortable-tree": "^2.6.2", "react-sortable-tree": "^2.6.2",
"semver-compare": "^1.0.0",
"slugify": "^1.4.6", "slugify": "^1.4.6",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"url-join": "^4.0.1", "url-join": "^4.0.1",
@ -136,7 +135,6 @@
"@types/react-router-dom": "^4.3.4", "@types/react-router-dom": "^4.3.4",
"@types/react-sortable-hoc": "^0.7.1", "@types/react-sortable-hoc": "^0.7.1",
"@types/react-sortable-tree": "^0.3.15", "@types/react-sortable-tree": "^0.3.15",
"@types/semver-compare": "^1.0.1",
"@types/url-join": "^4.0.1", "@types/url-join": "^4.0.1",
"@types/webappsec-credential-management": "^0.5.1", "@types/webappsec-credential-management": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/eslint-plugin": "^5.41.0",
@ -10253,11 +10251,6 @@
"dev": true, "dev": true,
"license": "MIT" "license": "MIT"
}, },
"node_modules/@types/semver-compare": {
"version": "1.0.1",
"dev": true,
"license": "MIT"
},
"node_modules/@types/setup-polly-jest": { "node_modules/@types/setup-polly-jest": {
"version": "0.5.1", "version": "0.5.1",
"license": "MIT", "license": "MIT",
@ -32519,7 +32512,8 @@
}, },
"node_modules/semver-compare": { "node_modules/semver-compare": {
"version": "1.0.0", "version": "1.0.0",
"license": "MIT" "license": "MIT",
"optional": true
}, },
"node_modules/semver-diff": { "node_modules/semver-diff": {
"version": "3.1.1", "version": "3.1.1",
@ -45004,10 +44998,6 @@
"version": "7.3.13", "version": "7.3.13",
"dev": true "dev": true
}, },
"@types/semver-compare": {
"version": "1.0.1",
"dev": true
},
"@types/setup-polly-jest": { "@types/setup-polly-jest": {
"version": "0.5.1", "version": "0.5.1",
"optional": true, "optional": true,
@ -60222,7 +60212,8 @@
} }
}, },
"semver-compare": { "semver-compare": {
"version": "1.0.0" "version": "1.0.0",
"optional": true
}, },
"semver-diff": { "semver-diff": {
"version": "3.1.1", "version": "3.1.1",

View file

@ -90,7 +90,6 @@
"react-router-dom": "^5.0.1", "react-router-dom": "^5.0.1",
"react-sortable-hoc": "^1.10.1", "react-sortable-hoc": "^1.10.1",
"react-sortable-tree": "^2.6.2", "react-sortable-tree": "^2.6.2",
"semver-compare": "^1.0.0",
"slugify": "^1.4.6", "slugify": "^1.4.6",
"tslib": "^2.4.1", "tslib": "^2.4.1",
"url-join": "^4.0.1", "url-join": "^4.0.1",
@ -143,7 +142,6 @@
"@types/react-router-dom": "^4.3.4", "@types/react-router-dom": "^4.3.4",
"@types/react-sortable-hoc": "^0.7.1", "@types/react-sortable-hoc": "^0.7.1",
"@types/react-sortable-tree": "^0.3.15", "@types/react-sortable-tree": "^0.3.15",
"@types/semver-compare": "^1.0.1",
"@types/url-join": "^4.0.1", "@types/url-join": "^4.0.1",
"@types/webappsec-credential-management": "^0.5.1", "@types/webappsec-credential-management": "^0.5.1",
"@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/eslint-plugin": "^5.41.0",

View file

@ -1,4 +1,3 @@
import { APP_VERSION } from "@dashboard/config";
import useLocalStorage from "@dashboard/hooks/useLocalStorage"; import useLocalStorage from "@dashboard/hooks/useLocalStorage";
import useNotifier from "@dashboard/hooks/useNotifier"; import useNotifier from "@dashboard/hooks/useNotifier";
import { Divider, Fade, Modal, Paper } from "@material-ui/core"; import { Divider, Fade, Modal, Paper } from "@material-ui/core";
@ -7,7 +6,6 @@ import Downshift from "downshift";
import hotkeys from "hotkeys-js"; import hotkeys from "hotkeys-js";
import React from "react"; import React from "react";
import { useIntl } from "react-intl"; import { useIntl } from "react-intl";
import cmp from "semver-compare";
import { import {
getActions, getActions,
@ -83,9 +81,8 @@ const Navigator: React.FC<NavigatorProps> = ({ visible, setVisibility }) => {
setVisibility(!visible); setVisibility(!visible);
}); });
if (cmp(APP_VERSION, "2.1.0") !== 1 && !notifiedAboutNavigator) { if (!notifiedAboutNavigator) {
notify({ notify({
autohide: null,
text: intl.formatMessage( text: intl.formatMessage(
{ {
id: "EM+30g", id: "EM+30g",