All Downloads are FREE. Search and download functionalities are using the official Maven repository.

META-INF.resources.js.LockErrorIndicator.js Maven / Gradle / Ivy

There is a newer version: 5.0.181
Show newest version
/**
 * SPDX-FileCopyrightText: (c) 2000 Liferay, Inc. https://liferay.com
 * SPDX-License-Identifier: LGPL-2.1-or-later OR LicenseRef-Liferay-DXP-EULA-2.0.0-2023-06
 */

import ClayIcon from '@clayui/icon';
import ClayPopover from '@clayui/popover';
import React, {useState} from 'react';

import useOnClickOutside from './hooks/useOnClickOutside';

export default function LockErrorIndicator() {
	const [openPopover, setOpenPopover] = useState(false);

	useOnClickOutside(['.lfr-lock-error-indicator'], () =>
		setOpenPopover(false)
	);

	return (
		 {
						setOpenPopover((open) => !open);
					}}
					small="true"
					symbol="exclamation-full"
				/>
			}
		>
			
{Liferay.Language.get( 'there-was-an-issue-completing-the-autosave.-this-may-be-due-to-missing-mandatory-fields-or-server-problems.-please-check-and-try-again' )}
); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy