You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
55 lines
1.3 KiB
TypeScript
55 lines
1.3 KiB
TypeScript
import { isEmpty } from 'lodash';
|
|
import { useState } from 'react';
|
|
import { useDispatch } from 'react-redux';
|
|
import { useMount } from 'react-use';
|
|
import { Data } from '../data/data';
|
|
import { updateEnterPasswordModal } from '../state/ducks/modalDialog';
|
|
|
|
export function usePasswordModal({
|
|
onSuccess,
|
|
onClose,
|
|
title,
|
|
}: {
|
|
onSuccess: () => void;
|
|
onClose: () => void;
|
|
title?: string;
|
|
}) {
|
|
const [passwordHash, setPasswordHash] = useState('');
|
|
const [passwordValid, setPasswordValid] = useState(false);
|
|
|
|
const dispatch = useDispatch();
|
|
|
|
const validateAccess = async () => {
|
|
if (!isEmpty(passwordHash)) {
|
|
return;
|
|
}
|
|
|
|
const hash = await Data.getPasswordHash();
|
|
if (hash && !isEmpty(hash)) {
|
|
setPasswordHash(hash);
|
|
dispatch(
|
|
updateEnterPasswordModal({
|
|
passwordHash,
|
|
passwordValid,
|
|
setPasswordValid,
|
|
onClickOk: () => {
|
|
onSuccess();
|
|
setPasswordHash('');
|
|
dispatch(updateEnterPasswordModal(null));
|
|
},
|
|
onClickClose: () => {
|
|
onClose();
|
|
setPasswordHash('');
|
|
dispatch(updateEnterPasswordModal(null));
|
|
},
|
|
title,
|
|
})
|
|
);
|
|
}
|
|
};
|
|
|
|
useMount(() => {
|
|
void validateAccess();
|
|
});
|
|
}
|