| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- import React, { useCallback } from 'react';
- import { toastSuccess, toastError } from '~/client/util/apiNotification';
- import { apiv3Post } from '~/client/util/apiv3-client';
- // TODO: i18n
- export const PluginInstallerForm = (): JSX.Element => {
- const submitHandler = useCallback(async(e) => {
- e.preventDefault();
- const formData = e.target.elements;
- const {
- 'pluginInstallerForm[url]': { value: url },
- // 'pluginInstallerForm[ghBranch]': { value: ghBranch },
- // 'pluginInstallerForm[ghTag]': { value: ghTag },
- } = formData;
- const pluginInstallerForm = {
- url,
- // ghBranch,
- // ghTag,
- };
- try {
- await apiv3Post('/plugins-extension', { pluginInstallerForm });
- toastSuccess('Plugin Install Successed!');
- }
- catch (err) {
- toastError(err);
- // logger.error(err);
- }
- }, []);
- return (
- <form role="form" onSubmit={submitHandler}>
- <div className='form-group row'>
- <label className="text-left text-md-right col-md-3 col-form-label">GitHub Repository URL</label>
- <div className="col-md-6">
- <input
- className="form-control"
- type="text"
- name="pluginInstallerForm[url]"
- placeholder="https://github.com/weseek/growi-plugin-lsx"
- required
- />
- <p className="form-text text-muted">You can install plugins by inputting the GitHub URL.</p>
- </div>
- </div>
- <div className="row my-3">
- <div className="mx-auto">
- <button type="submit" className="btn btn-primary">Install</button>
- </div>
- </div>
- </form>
- );
- };
|