Commit 6f9b4f5e authored by Chunchi Che's avatar Chunchi Che

Merge branch 'optimize/replay' into 'main'

Optimize/replay

See merge request mycard/Neos!260
parents 129a7a01 673e87ab
Pipeline #23116 passed with stages
in 13 minutes and 33 seconds
...@@ -27,7 +27,8 @@ export class WebSocketStream { ...@@ -27,7 +27,8 @@ export class WebSocketStream {
}; };
ws.onclose = () => { ws.onclose = () => {
console.info("Websocket closed."); console.info("Websocket closed.");
controller.close(); // 下面这行注释掉,因为虽然websocket关掉了,但是已经收到的数据可能还在处理中
// controller.close();
}; };
}, },
pull(_) { pull(_) {
......
...@@ -3,15 +3,15 @@ import { ...@@ -3,15 +3,15 @@ import {
DeleteOutlined, DeleteOutlined,
DownloadOutlined, DownloadOutlined,
FileAddOutlined, FileAddOutlined,
InboxOutlined,
PlusOutlined, PlusOutlined,
} from "@ant-design/icons"; } from "@ant-design/icons";
import { App, Button, Dropdown, MenuProps, Upload, UploadProps } from "antd"; import { App, Button, Dropdown, MenuProps, UploadProps } from "antd";
import React, { useRef, useState } from "react"; import React, { useRef, useState } from "react";
import YGOProDeck from "ygopro-deck-encode"; import YGOProDeck from "ygopro-deck-encode";
import { deckStore, IDeck } from "@/stores"; import { deckStore, IDeck } from "@/stores";
import { Uploader } from "../Shared";
import styles from "./DeckSelect.module.scss"; import styles from "./DeckSelect.module.scss";
export const DeckSelect: React.FC<{ export const DeckSelect: React.FC<{
...@@ -211,18 +211,11 @@ const DeckUploader: React.FC<{ onLoaded: (deck: IDeck) => void }> = ({ ...@@ -211,18 +211,11 @@ const DeckUploader: React.FC<{ onLoaded: (deck: IDeck) => void }> = ({
}; };
return ( return (
<div> <Uploader
<Upload.Dragger {...uploadProps}
{...uploadProps} text="单击或拖动文件到此区域进行上传"
style={{ width: "100%", margin: "20px 0 10px" }} hint="仅支持后缀名为ydk的卡组文件。"
> />
<p className="ant-upload-drag-icon">
<InboxOutlined />
</p>
<p className="ant-upload-text">单击或拖动文件到此区域进行上传</p>
<p className="ant-upload-hint">仅支持后缀名为ydk的卡组文件。</p>
</Upload.Dragger>
</div>
); );
}; };
......
import { UploadOutlined } from "@ant-design/icons"; import { Button, message, Modal, UploadProps } from "antd";
import { Button, message, Modal, Upload, UploadProps } from "antd";
import React, { useEffect, useState } from "react"; import React, { useEffect, useState } from "react";
import { useNavigate } from "react-router-dom"; import { useNavigate } from "react-router-dom";
import { proxy, useSnapshot } from "valtio"; import { proxy, useSnapshot } from "valtio";
import { matStore } from "@/stores"; import { matStore } from "@/stores";
import { Uploader } from "../Shared";
import { init } from "./util"; import { init } from "./util";
const localStore = proxy({ const localStore = proxy({
...@@ -22,6 +22,7 @@ export const ReplayModal: React.FC = () => { ...@@ -22,6 +22,7 @@ export const ReplayModal: React.FC = () => {
onChange(info) { onChange(info) {
info.file.status = "done"; info.file.status = "done";
}, },
accept: ".yrp3d",
beforeUpload(file, _) { beforeUpload(file, _) {
const reader = new FileReader(); const reader = new FileReader();
reader.readAsArrayBuffer(file); reader.readAsArrayBuffer(file);
...@@ -78,9 +79,11 @@ export const ReplayModal: React.FC = () => { ...@@ -78,9 +79,11 @@ export const ReplayModal: React.FC = () => {
} }
onCancel={() => (localStore.open = false)} onCancel={() => (localStore.open = false)}
> >
<Upload {...uploadProps}> <Uploader
<Button icon={<UploadOutlined />}>点击上传录像文件</Button> {...uploadProps}
</Upload> text="单击或拖动文件到此区域进行上传"
hint="仅支持后缀名为yrp3d的录像文件。"
/>
</Modal> </Modal>
); );
}; };
......
import { InboxOutlined } from "@ant-design/icons";
import { Upload, UploadProps } from "antd";
import React from "react";
export const Uploader: React.FC<
UploadProps & { text?: string; hint?: string }
> = ({ text, hint, ...uploadProps }) => (
<div>
<Upload.Dragger
{...uploadProps}
style={{ width: "100%", margin: "20px 0 10px" }}
>
<p className="ant-upload-drag-icon">
<InboxOutlined />
</p>
<p className="ant-upload-text">{text}</p>
<p className="ant-upload-hint">{hint}</p>
</Upload.Dragger>
</div>
);
...@@ -6,4 +6,5 @@ export * from "./Loading"; ...@@ -6,4 +6,5 @@ export * from "./Loading";
export * from "./Scrollbar"; export * from "./Scrollbar";
export * from "./Select"; export * from "./Select";
export * from "./SpecialButton"; export * from "./SpecialButton";
export * from "./Uploader";
export * from "./YgoCard"; export * from "./YgoCard";
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment