1
0
mirror of https://gitlab.nic.cz/turris/reforis/foris-js.git synced 2024-10-04 12:14:19 +02:00
foris-js/src/index.js

91 lines
2.7 KiB
JavaScript
Raw Normal View History

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