mirror of
https://gitlab.nic.cz/turris/reforis/foris-js.git
synced 2024-11-14 17:35:35 +01:00
Compare commits
9 Commits
15f6cf6709
...
1bb20e01c1
Author | SHA1 | Date | |
---|---|---|---|
|
1bb20e01c1 | ||
|
f2ae6c4d0a | ||
|
f382e743aa | ||
|
d71f4a7967 | ||
|
aeabc0bf06 | ||
|
46fe75d3cf | ||
|
c469d8dfde | ||
|
f327428765 | ||
|
badb043554 |
2
Makefile
2
Makefile
|
@ -97,8 +97,6 @@ test-js-watch:
|
||||||
.PHONY: test-js-update-snapshots
|
.PHONY: test-js-update-snapshots
|
||||||
test-js-update-snapshots:
|
test-js-update-snapshots:
|
||||||
npm test -- -u
|
npm test -- -u
|
||||||
test-js-watch:
|
|
||||||
npm test -- --watch
|
|
||||||
|
|
||||||
|
|
||||||
# Translations
|
# Translations
|
||||||
|
|
26
package-lock.json
generated
26
package-lock.json
generated
|
@ -4874,14 +4874,20 @@
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"node_modules/caniuse-lite": {
|
"node_modules/caniuse-lite": {
|
||||||
"version": "1.0.30001309",
|
"version": "1.0.30001441",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz",
|
||||||
"integrity": "sha512-Pl8vfigmBXXq+/yUz1jUwULeq9xhMJznzdc/xwl4WclDAuebcTHVefpz8lE/bMI+UN7TOkSSe7B7RnZd6+dzjA==",
|
"integrity": "sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==",
|
||||||
"dev": true,
|
"dev": true,
|
||||||
"funding": {
|
"funding": [
|
||||||
"type": "opencollective",
|
{
|
||||||
"url": "https://opencollective.com/browserslist"
|
"type": "opencollective",
|
||||||
}
|
"url": "https://opencollective.com/browserslist"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"type": "tidelift",
|
||||||
|
"url": "https://tidelift.com/funding/github/npm/caniuse-lite"
|
||||||
|
}
|
||||||
|
]
|
||||||
},
|
},
|
||||||
"node_modules/capture-exit": {
|
"node_modules/capture-exit": {
|
||||||
"version": "2.0.0",
|
"version": "2.0.0",
|
||||||
|
@ -22831,9 +22837,9 @@
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"caniuse-lite": {
|
"caniuse-lite": {
|
||||||
"version": "1.0.30001309",
|
"version": "1.0.30001441",
|
||||||
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001309.tgz",
|
"resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001441.tgz",
|
||||||
"integrity": "sha512-Pl8vfigmBXXq+/yUz1jUwULeq9xhMJznzdc/xwl4WclDAuebcTHVefpz8lE/bMI+UN7TOkSSe7B7RnZd6+dzjA==",
|
"integrity": "sha512-OyxRR4Vof59I3yGWXws6i908EtGbMzVUi3ganaZQHmydk1iwDhRnvaPG2WaR0KcqrDFKrxVZHULT396LEPhXfg==",
|
||||||
"dev": true
|
"dev": true
|
||||||
},
|
},
|
||||||
"capture-exit": {
|
"capture-exit": {
|
||||||
|
|
|
@ -14,7 +14,7 @@ import { ForisURLs } from "../utils/forisUrls";
|
||||||
|
|
||||||
import { Button } from "../bootstrap/Button";
|
import { Button } from "../bootstrap/Button";
|
||||||
import { Modal, ModalHeader, ModalBody, ModalFooter } from "../bootstrap/Modal";
|
import { Modal, ModalHeader, ModalBody, ModalFooter } from "../bootstrap/Modal";
|
||||||
import { useAlert } from "../alertContext/AlertContext";
|
import { useAlert } from "../context/alertContext/AlertContext";
|
||||||
|
|
||||||
export function RebootButton(props) {
|
export function RebootButton(props) {
|
||||||
const [triggered, setTriggered] = useState(false);
|
const [triggered, setTriggered] = useState(false);
|
||||||
|
|
|
@ -9,7 +9,7 @@ import React, { useEffect, useState } from "react";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
import { Button } from "../../bootstrap/Button";
|
import { Button } from "../../bootstrap/Button";
|
||||||
import { useAlert } from "../../alertContext/AlertContext";
|
import { useAlert } from "../../context/alertContext/AlertContext";
|
||||||
import { ALERT_TYPES } from "../../bootstrap/Alert";
|
import { ALERT_TYPES } from "../../bootstrap/Alert";
|
||||||
import { useAPIPost } from "../../api/hooks";
|
import { useAPIPost } from "../../api/hooks";
|
||||||
import { API_STATE } from "../../api/utils";
|
import { API_STATE } from "../../api/utils";
|
||||||
|
|
|
@ -8,8 +8,8 @@
|
||||||
import React, { useState, useContext, useCallback } from "react";
|
import React, { useState, useContext, useCallback } from "react";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
import { Alert, ALERT_TYPES } from "../bootstrap/Alert";
|
import { Alert, ALERT_TYPES } from "../../bootstrap/Alert";
|
||||||
import { Portal } from "../utils/Portal";
|
import { Portal } from "../../utils/Portal";
|
||||||
|
|
||||||
AlertContextProvider.propTypes = {
|
AlertContextProvider.propTypes = {
|
||||||
children: PropTypes.oneOfType([
|
children: PropTypes.oneOfType([
|
|
@ -8,10 +8,10 @@
|
||||||
import React, { useContext, useEffect } from "react";
|
import React, { useContext, useEffect } from "react";
|
||||||
import PropTypes from "prop-types";
|
import PropTypes from "prop-types";
|
||||||
|
|
||||||
import { useAPIGet } from "../api/hooks";
|
import { useAPIGet } from "../../api/hooks";
|
||||||
import { ForisURLs } from "../utils/forisUrls";
|
import { ForisURLs } from "../../utils/forisUrls";
|
||||||
|
|
||||||
import { Spinner } from "../bootstrap/Spinner";
|
import { Spinner } from "../../bootstrap/Spinner";
|
||||||
|
|
||||||
CustomizationContextProvider.propTypes = {
|
CustomizationContextProvider.propTypes = {
|
||||||
children: PropTypes.oneOfType([
|
children: PropTypes.oneOfType([
|
|
@ -7,7 +7,7 @@
|
||||||
|
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
|
||||||
import { render, wait } from "customTestRender";
|
import { render, wait, getByText } from "customTestRender";
|
||||||
import mockAxios from "jest-mock-axios";
|
import mockAxios from "jest-mock-axios";
|
||||||
|
|
||||||
import {
|
import {
|
||||||
|
@ -18,39 +18,35 @@ import {
|
||||||
const CUSTOM = "Description / component for customized reForis (Shield)";
|
const CUSTOM = "Description / component for customized reForis (Shield)";
|
||||||
const ORIGINAL = "Description / component for original reForis (other devices)";
|
const ORIGINAL = "Description / component for original reForis (other devices)";
|
||||||
|
|
||||||
function CustomizationTest() {
|
const CustomizationTest = () => {
|
||||||
const isCustomized = useCustomizationContext();
|
const { isCustomized } = useCustomizationContext();
|
||||||
|
|
||||||
return <p>{isCustomized ? CUSTOM : ORIGINAL}</p>;
|
return <p>{isCustomized ? CUSTOM : ORIGINAL}</p>;
|
||||||
}
|
};
|
||||||
|
|
||||||
describe("CustomizationContext", () => {
|
describe("CustomizationContext", () => {
|
||||||
let componentContainer;
|
let componentContainer;
|
||||||
|
beforeEach(() => {
|
||||||
it("should render component without customization", async () => {
|
const { container } = render(
|
||||||
const { container, getByText } = render(
|
|
||||||
<CustomizationContextProvider>
|
<CustomizationContextProvider>
|
||||||
<CustomizationTest />
|
<CustomizationTest />
|
||||||
</CustomizationContextProvider>
|
</CustomizationContextProvider>
|
||||||
);
|
);
|
||||||
componentContainer = container;
|
componentContainer = container;
|
||||||
|
});
|
||||||
|
|
||||||
|
it("should render component without customization", async () => {
|
||||||
mockAxios.mockResponse({ data: {} });
|
mockAxios.mockResponse({ data: {} });
|
||||||
await wait(() => getByText(ORIGINAL));
|
|
||||||
|
await wait(() => getByText(componentContainer, ORIGINAL));
|
||||||
|
|
||||||
expect(componentContainer).toMatchSnapshot();
|
expect(componentContainer).toMatchSnapshot();
|
||||||
});
|
});
|
||||||
|
|
||||||
it("should render customized component", async () => {
|
it("should render customized component", async () => {
|
||||||
const { container, getByText } = render(
|
|
||||||
<CustomizationContextProvider>
|
|
||||||
<CustomizationTest />
|
|
||||||
</CustomizationContextProvider>
|
|
||||||
);
|
|
||||||
componentContainer = container;
|
|
||||||
|
|
||||||
mockAxios.mockResponse({ data: { customization: "shield" } });
|
mockAxios.mockResponse({ data: { customization: "shield" } });
|
||||||
await wait(() => getByText(CUSTOM));
|
|
||||||
|
await wait(() => getByText(componentContainer, CUSTOM));
|
||||||
|
|
||||||
expect(componentContainer).toMatchSnapshot();
|
expect(componentContainer).toMatchSnapshot();
|
||||||
});
|
});
|
|
@ -13,7 +13,7 @@ import { ALERT_TYPES } from "../../bootstrap/Alert";
|
||||||
import { API_STATE } from "../../api/utils";
|
import { API_STATE } from "../../api/utils";
|
||||||
import { formFieldsSize } from "../../bootstrap/constants";
|
import { formFieldsSize } from "../../bootstrap/constants";
|
||||||
import { Spinner } from "../../bootstrap/Spinner";
|
import { Spinner } from "../../bootstrap/Spinner";
|
||||||
import { useAlert } from "../../alertContext/AlertContext";
|
import { useAlert } from "../../context/alertContext/AlertContext";
|
||||||
import { useAPIPost } from "../../api/hooks";
|
import { useAPIPost } from "../../api/hooks";
|
||||||
|
|
||||||
import { useForisModule, useForm } from "../hooks";
|
import { useForisModule, useForm } from "../hooks";
|
||||||
|
|
|
@ -90,10 +90,13 @@ export {
|
||||||
} from "./utils/validations";
|
} from "./utils/validations";
|
||||||
|
|
||||||
// Alert context
|
// Alert context
|
||||||
export { AlertContextProvider, useAlert } from "./alertContext/AlertContext";
|
export {
|
||||||
|
AlertContextProvider,
|
||||||
|
useAlert,
|
||||||
|
} from "./context/alertContext/AlertContext";
|
||||||
|
|
||||||
// Customization context
|
// Customization context
|
||||||
export {
|
export {
|
||||||
CustomizationContextProvider,
|
CustomizationContextProvider,
|
||||||
useCustomizationContext,
|
useCustomizationContext,
|
||||||
} from "./customizationContext/CustomizationContext";
|
} from "./context/customizationContext/CustomizationContext";
|
||||||
|
|
|
@ -9,11 +9,12 @@ import React from "react";
|
||||||
|
|
||||||
window.CustomizationContext = React.createContext();
|
window.CustomizationContext = React.createContext();
|
||||||
|
|
||||||
|
const deviceDetails = {};
|
||||||
const isCustomized = jest.fn();
|
const isCustomized = jest.fn();
|
||||||
|
|
||||||
function CustomizationContextMock({ children }) {
|
function CustomizationContextMock({ children }) {
|
||||||
return (
|
return (
|
||||||
<CustomizationContext.Provider value={isCustomized}>
|
<CustomizationContext.Provider value={(deviceDetails, isCustomized)}>
|
||||||
{children}
|
{children}
|
||||||
</CustomizationContext.Provider>
|
</CustomizationContext.Provider>
|
||||||
);
|
);
|
||||||
|
|
|
@ -43,7 +43,7 @@ module.exports = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Alert Context",
|
name: "Alert Context",
|
||||||
components: ["src/alertContext/AlertContext.js"],
|
components: ["src/context/alertContext/AlertContext.js"],
|
||||||
exampleMode: "expand",
|
exampleMode: "expand",
|
||||||
usageMode: "expand",
|
usageMode: "expand",
|
||||||
},
|
},
|
||||||
|
@ -53,7 +53,9 @@ module.exports = {
|
||||||
|
|
||||||
{
|
{
|
||||||
name: "Customization Context",
|
name: "Customization Context",
|
||||||
components: ["src/customizationContext/CustomizationContext.js"],
|
components: [
|
||||||
|
"src/context/customizationContext/CustomizationContext.js",
|
||||||
|
],
|
||||||
exampleMode: "expand",
|
exampleMode: "expand",
|
||||||
usageMode: "expand",
|
usageMode: "expand",
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue
Block a user