1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-06-28 20:03:59 +00:00
foris-js/src/index.js

103 lines
3.0 KiB
JavaScript
Raw Normal View History

2019-09-26 10:23:22 +00:00
/*
* Copyright (C) 2019-2022 CZ.NIC z.s.p.o. (https://www.nic.cz/)
2019-09-26 10:23:22 +00:00
*
* This is free software, licensed under the GNU General Public License v3.
* See /LICENSE for more information.
*/
2019-08-27 14:09:18 +00:00
// API
export {
2019-11-15 11:54:12 +00:00
useAPIGet,
useAPIPost,
useAPIPatch,
useAPIPut,
useAPIDelete,
useAPIPolling,
2019-12-26 22:34:59 +00:00
} from "./api/hooks";
export { API_STATE } from "./api/utils";
2019-08-23 13:20:22 +00:00
2019-08-27 09:54:57 +00:00
// Bootstrap
2019-12-26 22:34:59 +00:00
export { Alert, ALERT_TYPES } from "./bootstrap/Alert";
export { Button } from "./bootstrap/Button";
export { CheckBox } from "./bootstrap/CheckBox";
2022-04-13 13:50:08 +00:00
export { CopyInput } from "./bootstrap/CopyInput";
2019-12-26 22:34:59 +00:00
export { DownloadButton } from "./bootstrap/DownloadButton";
export { DataTimeInput } from "./bootstrap/DataTimeInput";
export { EmailInput } from "./bootstrap/EmailInput";
export { FileInput } from "./bootstrap/FileInput";
export { Input } from "./bootstrap/Input";
export { NumberInput } from "./bootstrap/NumberInput";
export { PasswordInput } from "./bootstrap/PasswordInput";
export { Radio, RadioSet } from "./bootstrap/RadioSet";
export { Select } from "./bootstrap/Select";
export { TextInput } from "./bootstrap/TextInput";
export { formFieldsSize, buttonFormFieldsSize } from "./bootstrap/constants";
2020-08-18 08:13:57 +00:00
export { Switch } from "./bootstrap/Switch";
2019-08-27 15:46:45 +00:00
2020-08-18 08:13:57 +00:00
export { Spinner, SpinnerElement } from "./bootstrap/Spinner";
export { Modal, ModalBody, ModalFooter, ModalHeader } from "./bootstrap/Modal";
2019-08-27 14:09:18 +00:00
// Common
2019-12-26 22:34:59 +00:00
export { RebootButton } from "./common/RebootButton";
2020-01-09 10:25:29 +00:00
export { WiFiSettings } from "./common/WiFiSettings/WiFiSettings";
export { ResetWiFiSettings } from "./common/WiFiSettings/ResetWiFiSettings";
2019-08-27 09:54:57 +00:00
// Form
2019-12-26 22:34:59 +00:00
export { ForisForm } from "./form/components/ForisForm";
2020-08-18 08:13:57 +00:00
export {
SubmitButton,
STATES as SUBMIT_BUTTON_STATES,
} from "./form/components/SubmitButton";
2019-12-26 22:34:59 +00:00
export { useForisModule, useForm } from "./form/hooks";
2019-08-27 14:09:18 +00:00
2019-08-27 09:54:57 +00:00
// WebSockets
2019-12-26 22:34:59 +00:00
export { useWSForisModule } from "./webSockets/hooks";
export { WebSockets } from "./webSockets/WebSockets";
2019-08-27 09:54:57 +00:00
// Utils
2019-12-26 22:34:59 +00:00
export { Portal } from "./utils/Portal";
2019-11-07 17:21:14 +00:00
export {
2020-08-18 08:13:57 +00:00
undefinedIfEmpty,
withoutUndefinedKeys,
onlySpecifiedKeys,
} from "./utils/objectHelpers";
export {
withEither,
withSpinner,
withSending,
withSpinnerOnSending,
withError,
withErrorMessage,
2019-12-26 22:34:59 +00:00
} from "./utils/conditionalHOCs";
export { ErrorMessage } from "./utils/ErrorMessage";
export { useClickOutside } from "./utils/hooks";
2020-02-20 13:30:28 +00:00
export { toLocaleDateString } from "./utils/datetime";
2020-11-22 22:45:27 +00:00
export { displayCard } from "./utils/displayCard";
2020-12-14 18:04:41 +00:00
export { isPluginInstalled } from "./utils/isPluginInstalled";
2019-08-27 09:54:57 +00:00
// Foris URL
export { ForisURLs, REFORIS_URL_PREFIX } from "./utils/forisUrls";
2019-08-27 14:09:18 +00:00
2019-08-27 09:54:57 +00:00
// Validation
2019-08-23 13:20:22 +00:00
export {
2019-08-27 09:54:57 +00:00
validateIPv4Address,
validateIPv6Address,
validateIPv6Prefix,
validateDomain,
validateHostname,
2019-08-27 09:54:57 +00:00
validateDUID,
validateMAC,
validateMultipleEmails,
} from "./utils/validations";
// Alert context
2022-12-22 14:14:32 +00:00
export {
AlertContextProvider,
useAlert,
} from "./context/alertContext/AlertContext";
// Customization context
export {
CustomizationContextProvider,
useCustomizationContext,
2022-12-22 14:14:32 +00:00
} from "./context/customizationContext/CustomizationContext";