📝 Qbittorrent form scaffold

This commit is contained in:
2023-09-11 16:03:41 -04:00
parent f9f3109132
commit ac80c23fa8
4 changed files with 19 additions and 14 deletions

View File

@@ -12,7 +12,7 @@
"plugins/markdown" "plugins/markdown"
], ],
"opts": { "opts": {
"template": "node_modules/docdash", "template": "node_modules/tui-jsdoc-template",
"encoding": "utf8", "encoding": "utf8",
"destination": "docs/", "destination": "docs/",
"recurse": true, "recurse": true,

View File

@@ -118,6 +118,7 @@
"sass": "^1.66.1", "sass": "^1.66.1",
"storybook": "^7.3.2", "storybook": "^7.3.2",
"tslint": "^6.1.3", "tslint": "^6.1.3",
"tui-jsdoc-template": "^1.2.2",
"typescript": "^5.1.6" "typescript": "^5.1.6"
}, },
"resolutions": { "resolutions": {

View File

@@ -1,4 +1,5 @@
import React, { ReactElement, useCallback, useEffect } from "react"; import React, { ReactElement, useCallback, useEffect } from "react";
import { Form, Field } from "react-final-form";
import { useDispatch, useSelector } from "react-redux"; import { useDispatch, useSelector } from "react-redux";
import { getQBitTorrentClientInfo } from "../../../actions/settings.actions"; import { getQBitTorrentClientInfo } from "../../../actions/settings.actions";
@@ -9,12 +10,23 @@ export const QbittorrentConnectionForm = (): ReactElement => {
useEffect(() => { useEffect(() => {
dispatch(getQBitTorrentClientInfo()); dispatch(getQBitTorrentClientInfo());
}, []) }, [])
const handleSubmit = () => {}
return ( return (<>
<div className="is-clearfix">
<pre> {JSON.stringify(torrents, null, 4)} </pre> <pre> {JSON.stringify(torrents, null, 4)} </pre>
</div>
); <Form
onSubmit={handleSubmit}
// validate={}
/* initialValues={} */
render={({ handleSubmit }) => (
<form onSubmit={handleSubmit}>
<h2>Configure Qbittorrent</h2>
</form>
)}
/>
</>);
}; };
export default QbittorrentConnectionForm; export default QbittorrentConnectionForm;

View File

@@ -1,8 +0,0 @@
import React, { createContext, useEffect, useState } from "react";
import { useDispatch, useSelector } from "react-redux";
export const QbitTorrentContextProvider = ({ children }) => {
}