format everything in zed
This commit is contained in:
@@ -1,21 +1,19 @@
|
||||
import Button from "@/components/Button";
|
||||
import { useRef } from "react";
|
||||
|
||||
export default function UploadArea(
|
||||
{
|
||||
setVideoUrl,
|
||||
setSrtUrl
|
||||
}: {
|
||||
setVideoUrl: (url: string | null) => void;
|
||||
setSrtUrl: (url: string | null) => void;
|
||||
}
|
||||
) {
|
||||
export default function UploadArea({
|
||||
setVideoUrl,
|
||||
setSrtUrl,
|
||||
}: {
|
||||
setVideoUrl: (url: string | null) => void;
|
||||
setSrtUrl: (url: string | null) => void;
|
||||
}) {
|
||||
const inputRef = useRef<HTMLInputElement>(null);
|
||||
|
||||
const uploadVideo = () => {
|
||||
const input = inputRef.current;
|
||||
if (input) {
|
||||
input.setAttribute('accept', 'video/*');
|
||||
input.setAttribute("accept", "video/*");
|
||||
input.click();
|
||||
input.onchange = () => {
|
||||
const file = input.files?.[0];
|
||||
@@ -24,11 +22,11 @@ export default function UploadArea(
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
const uploadSRT = () => {
|
||||
const input = inputRef.current;
|
||||
if (input) {
|
||||
input.setAttribute('accept', '.srt');
|
||||
input.setAttribute("accept", ".srt");
|
||||
input.click();
|
||||
input.onchange = () => {
|
||||
const file = input.files?.[0];
|
||||
@@ -37,12 +35,12 @@ export default function UploadArea(
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
};
|
||||
return (
|
||||
<div className="w-full flex flex-col gap-2 m-2">
|
||||
<Button onClick={uploadVideo}>上传视频</Button>
|
||||
<Button onClick={uploadSRT}>上传字幕</Button>
|
||||
<input type="file" className="hidden" ref={inputRef} />
|
||||
</div >
|
||||
)
|
||||
}
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user