components#Form JavaScript Examples
The following examples show how to use
components#Form.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: index.jsx From apps with GNU Affero General Public License v3.0 | 5 votes |
UploadKeyPairsModal = () => {
const mediator = useMediator();
const [invalidFile, setInvalidFile] = useState(false);
const readFile = (e) => {
const file = e.target.files[0];
const reader = new FileReader();
reader.onload = function (e) {
const json = JSON.parse(e.target.result);
if (
json.signing === undefined ||
json.encryption === undefined ||
json.provider === undefined
)
setInvalidFile(true);
else mediator.keyPairs = json;
};
reader.readAsBinaryString(file);
};
let notice;
if (invalidFile)
notice = (
<Message type="danger">
<T t={t} k="upload-key-pairs.invalid-file" />
</Message>
);
else notice = <T t={t} k="upload-key-pairs.notice" />;
const footer = (
<Form>
<FieldSet>
<label htmlFor="file-upload" className="custom-file-upload">
<T t={t} k="upload-key-pairs.input" />
<input
id="file-upload"
className="bulma-input"
type="file"
onChange={(e) => readFile(e)}
/>
</label>
</FieldSet>
</Form>
);
return (
<Modal
footer={footer}
className="kip-upload-key-pairs"
title={<T t={t} k="upload-key-pairs.title" />}
>
{notice}
</Modal>
);
}
Example #2
Source File: settings.jsx From apps with GNU Affero General Public License v3.0 | 5 votes |
TestQueuesModal = withRouter(
withActions(({ keyPairs, router, testQueues, testQueuesAction }) => {
const [initialized, setInitialized] = useState(false);
useEffect(() => {
if (initialized) return;
setInitialized(true);
testQueuesAction(keyPairs);
});
const readFile = (e) => {
const file = e.target.files[0];
const reader = new FileReader();
reader.onload = function (e) {
const json = JSON.parse(e.target.result);
testQueuesAction(keyPairs, json);
};
reader.readAsBinaryString(file);
};
let notice;
const { status } = testQueues;
if (status === 'invalid')
notice = (
<Message type="danger">
<T t={t} k="upload-queues.invalid-file" />
</Message>
);
else if (status === 'valid')
notice = (
<Message type="success">
<T t={t} k="upload-queues.valid-file" />
</Message>
);
else notice = <T t={t} k="upload-queues.notice" />;
const footer = (
<Form>
<FieldSet>
<label htmlFor="file-upload" className="custom-file-upload">
<T t={t} k="upload-queues.input" />
<input
id="file-upload"
disabled={
keyPairs === undefined || keyPairs.data === null
}
className="bulma-input"
type="file"
onChange={(e) => readFile(e)}
/>
</label>
</FieldSet>
</Form>
);
return (
<Modal
footer={footer}
onClose={() => router.navigateToUrl('/mediator/settings')}
className="kip-upload-file"
title={<T t={t} k="upload-queues.title" />}
>
{notice}
</Modal>
);
}, [])
)