mirror of
				https://gitlab.nic.cz/turris/reforis/foris-js.git
				synced 2025-11-03 23:00:31 +01:00 
			
		
		
		
	Fix imports.
This commit is contained in:
		@@ -8,7 +8,7 @@
 | 
			
		||||
import React from "react";
 | 
			
		||||
import { render } from "customTestRender";
 | 
			
		||||
 | 
			
		||||
import SubmitButton, { STATES } from "../components/SubmitButton";
 | 
			
		||||
import { STATES, SubmitButton } from "../components/SubmitButton";
 | 
			
		||||
 | 
			
		||||
describe("<SubmitButton/>", () => {
 | 
			
		||||
    it("Render ready", () => {
 | 
			
		||||
 
 | 
			
		||||
@@ -99,7 +99,7 @@ export default function ForisForm({
 | 
			
		||||
 | 
			
		||||
    const [alertIsDismissed, setAlertIsDismissed] = useState(false);
 | 
			
		||||
 | 
			
		||||
    if (!formState.data) return <Spinner className="row justify-content-center"/>;
 | 
			
		||||
    if (!formState.data) return <Spinner className="row justify-content-center" />;
 | 
			
		||||
 | 
			
		||||
    const formIsDisabled = disabled || forisModuleState.isLoading || postState.isSending;
 | 
			
		||||
    const submitButtonIsDisabled = disabled || !!formState.errors;
 | 
			
		||||
@@ -126,15 +126,15 @@ export default function ForisForm({
 | 
			
		||||
    let alert = null;
 | 
			
		||||
    if (!alertIsDismissed) {
 | 
			
		||||
        if (postState.isSuccess) {
 | 
			
		||||
            alert = <SuccessAlert onDismiss={() => setAlertIsDismissed(true)}/>;
 | 
			
		||||
            alert = <SuccessAlert onDismiss={() => setAlertIsDismissed(true)} />;
 | 
			
		||||
        } else if (postState.isError) {
 | 
			
		||||
            alert = <FailAlert onDismiss={() => setAlertIsDismissed(true)}/>;
 | 
			
		||||
            alert = <FailAlert onDismiss={() => setAlertIsDismissed(true)} />;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return (
 | 
			
		||||
        <>
 | 
			
		||||
            <Prompt message={getMessageOnLeavingPage}/>
 | 
			
		||||
            <Prompt message={getMessageOnLeavingPage} />
 | 
			
		||||
            {alert}
 | 
			
		||||
            <form onSubmit={onSubmit}>
 | 
			
		||||
                {childrenWithFormProps}
 | 
			
		||||
 
 | 
			
		||||
							
								
								
									
										56
									
								
								src/index.js
									
									
									
									
									
								
							
							
						
						
									
										56
									
								
								src/index.js
									
									
									
									
									
								
							@@ -1,19 +1,40 @@
 | 
			
		||||
import * as Alert from "bootstrap/Alert";
 | 
			
		||||
import * as Button from "bootstrap/Button";
 | 
			
		||||
import * as CheckBox from "bootstrap/Checkbox";
 | 
			
		||||
import * as formFieldsSize from "bootstrap/constants";
 | 
			
		||||
import * as DataTimeInput from "bootstrap/DataTimeInput";
 | 
			
		||||
import * as EmailInput from "bootstrap/EmailInput";
 | 
			
		||||
import * as Input from "bootstrap/Input";
 | 
			
		||||
import * as NumberInput from "bootstrap/NumberInput";
 | 
			
		||||
import * as PasswordInput from "bootstrap/PasswordInput";
 | 
			
		||||
import * as RadioSet from "bootstrap/RadioSet";
 | 
			
		||||
import * as Select from "bootstrap/Select";
 | 
			
		||||
import * as TextInput from "bootstrap/TextInput";
 | 
			
		||||
 | 
			
		||||
import * as useWSForisModule from "webSockets/hooks";
 | 
			
		||||
import * as WebSockets from "webSockets/WebSockets";
 | 
			
		||||
import * as Portal from "utils/Portal";
 | 
			
		||||
 | 
			
		||||
import ForisForm from "form/components/ForisForm";
 | 
			
		||||
 | 
			
		||||
// API
 | 
			
		||||
export { useAPIGet, useAPIPost } from "./api/hooks";
 | 
			
		||||
 | 
			
		||||
// Bootstrap
 | 
			
		||||
export * as Alert from "bootstrap/Alert";
 | 
			
		||||
export * as Button from "bootstrap/Button";
 | 
			
		||||
export * as CheckBox from "bootstrap/Checkbox";
 | 
			
		||||
export * as formFieldsSize from "bootstrap/constants";
 | 
			
		||||
export * as DataTimeInput from "bootstrap/DataTimeInput";
 | 
			
		||||
export * as EmailInput from "bootstrap/EmailInput";
 | 
			
		||||
export * as Input from "bootstrap/Input";
 | 
			
		||||
export * as NumberInput from "bootstrap/NumberInput";
 | 
			
		||||
export * as PasswordInput from "bootstrap/PasswordInput";
 | 
			
		||||
export * as RadioSet from "bootstrap/RadioSet";
 | 
			
		||||
export * as Select from "bootstrap/Select";
 | 
			
		||||
export * as TextInput from "bootstrap/TextInput";
 | 
			
		||||
export {
 | 
			
		||||
    Alert,
 | 
			
		||||
    Button,
 | 
			
		||||
    CheckBox,
 | 
			
		||||
    formFieldsSize,
 | 
			
		||||
    DataTimeInput,
 | 
			
		||||
    EmailInput,
 | 
			
		||||
    Input,
 | 
			
		||||
    NumberInput,
 | 
			
		||||
    PasswordInput,
 | 
			
		||||
    RadioSet,
 | 
			
		||||
    Select,
 | 
			
		||||
    TextInput,
 | 
			
		||||
};
 | 
			
		||||
export {
 | 
			
		||||
    Spinner,
 | 
			
		||||
    SpinnerElement,
 | 
			
		||||
@@ -27,7 +48,7 @@ export {
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// Form
 | 
			
		||||
export ForisForm from "form/components/ForisForm";
 | 
			
		||||
export { ForisForm };
 | 
			
		||||
export { SubmitButton, STATES as SUBMIT_BUTTON_STATES } from "form/components/SubmitButton";
 | 
			
		||||
export { useForisModule, useForm } from "form/hooks";
 | 
			
		||||
 | 
			
		||||
@@ -35,20 +56,15 @@ export { useForisModule, useForm } from "form/hooks";
 | 
			
		||||
// Test Utils
 | 
			
		||||
export { mockedWS } from "testUtils/mockWS";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// WebSockets
 | 
			
		||||
export * as useWSForisModule from "webSockets/hooks";
 | 
			
		||||
export * as WebSockets from "webSockets/WebSockets";
 | 
			
		||||
 | 
			
		||||
export { useWSForisModule, WebSockets };
 | 
			
		||||
 | 
			
		||||
// Utils
 | 
			
		||||
export * as Portal from "utils/Portal";
 | 
			
		||||
 | 
			
		||||
export { Portal };
 | 
			
		||||
 | 
			
		||||
// Foris URL
 | 
			
		||||
export { ForisURLs, REFORIS_URL_PREFIX } from "./forisUrls";
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// Validation
 | 
			
		||||
export {
 | 
			
		||||
    validateIPv4Address,
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user