Tweak some things so that we can embed Web UI into Tauri

This commit is contained in:
Igor Katson 2023-12-02 12:48:03 +00:00
parent 950ed816d1
commit 137d12cb9c
No known key found for this signature in database
GPG key ID: B4EC22B66D61A3F5
9 changed files with 105 additions and 44 deletions

View file

@ -26,6 +26,19 @@ export interface ListTorrentsResponse {
torrents: Array<TorrentId>;
}
export interface TorrentAddQueryParams {
overwrite?: boolean | null;
output_folder?: string | null;
sub_folder?: string | null;
only_files_regex?: string | null;
only_files?: string,
peer_connect_timeout?: number | null;
peer_read_write_timeout?: number | null;
initial_peers?: string | null;
is_url?: boolean | null;
list_only?: boolean | null;
}
// Interface for the Torrent Stats API response
export interface LiveTorrentStats {
snapshot: {

View file

@ -1,13 +1,12 @@
import { StrictMode, createContext, useContext, useEffect, useRef, useState } from 'react';
import ReactDOM from 'react-dom/client';
import { createContext, useContext, useEffect, useRef, useState } from 'react';
import { ProgressBar, Button, Container, Row, Col, Alert, Modal, Form, Spinner } from 'react-bootstrap';
import { AddTorrentResponse, TorrentDetails, TorrentId, TorrentStats, ErrorDetails, STATE_INITIALIZING, STATE_LIVE, STATE_PAUSED, STATE_ERROR, RqbitAPI } from './api-types';
import { AddTorrentResponse, TorrentDetails, TorrentId, TorrentStats, ErrorDetails as ApiErrorDetails, STATE_INITIALIZING, STATE_LIVE, STATE_PAUSED, STATE_ERROR, RqbitAPI } from './api-types';
declare const API: RqbitAPI;
interface Error {
text: string,
details?: ErrorDetails,
details?: ApiErrorDetails,
}
interface ContextType {
@ -352,7 +351,7 @@ export const RqbitWebUI = () => {
</AppContext.Provider >
}
const ErrorDetails = (props: { details: ErrorDetails }) => {
const ErrorDetails = (props: { details: ApiErrorDetails }) => {
let { details } = props;
if (!details) {
return null;
@ -431,22 +430,71 @@ const UploadButton = ({ buttonText, onClick, data, resetData, variant }) => {
);
};
const UrlPromptModal: React.FC<{
show: boolean,
setUrl: (_: string) => void,
cancel: () => void,
}> = ({ show, setUrl, cancel }) => {
let [inputValue, setInputValue] = useState('');
return <Modal show={show} onHide={cancel} size='lg'>
<Modal.Header closeButton>
<Modal.Title>Add torrent</Modal.Title>
</Modal.Header>
<Modal.Body>
<Form>
<Form.Group className="mb-3" controlId="url">
<Form.Label>Enter magnet or HTTP(S) URL to the .torrent</Form.Label>
<Form.Control value={inputValue} placeholder="magnet:?xt=urn:btih:..." onChange={(u) => { setInputValue(u.target.value) }} />
</Form.Group>
</Form>
</Modal.Body>
<Modal.Footer>
<Button
variant="primary"
onClick={() => { setUrl(inputValue); setInputValue(''); }}
disabled={inputValue.length == 0}>
OK
</Button>
<Button variant="secondary" onClick={cancel}>
Cancel
</Button>
</Modal.Footer>
</Modal >
}
const MagnetInput = () => {
let [magnet, setMagnet] = useState(null);
let [showModal, setShowModal] = useState(null);
const onClick = () => {
const m = prompt('Enter magnet link or HTTP(s) URL');
setMagnet(m === '' ? null : m);
};
return (
<UploadButton
variant='primary'
buttonText="Add Torrent from Magnet / URL"
onClick={onClick}
data={magnet}
resetData={() => setMagnet(null)}
/>
<>
<UploadButton
variant='primary'
buttonText="Add Torrent from Magnet / URL"
onClick={() => {
setShowModal(true);
}}
data={magnet}
resetData={() => setMagnet(null)}
/>
<UrlPromptModal
show={showModal}
setUrl={(url) => {
setShowModal(null);
setMagnet(url);
}}
cancel={() => {
setShowModal(null);
setMagnet(null);
}} />
</>
);
};
@ -598,7 +646,7 @@ const Buttons = () => {
);
};
const RootContent = (props: { closeableError: ErrorDetails, otherError: ErrorDetails, torrents: Array<TorrentId>, torrentsLoading: boolean }) => {
const RootContent = (props: { closeableError: ApiErrorDetails, otherError: ApiErrorDetails, torrents: Array<TorrentId>, torrentsLoading: boolean }) => {
let ctx = useContext(AppContext);
return <Container>
<ErrorComponent error={props.closeableError} remove={() => ctx.setCloseableError(null)} />