Commit 35225f7c authored by chechunchi's avatar chechunchi

group selectab actions

parent 463345c1
Pipeline #21609 passed with stages
in 13 minutes and 6 seconds
...@@ -2,7 +2,7 @@ import "@/styles/select-modal.scss"; ...@@ -2,7 +2,7 @@ import "@/styles/select-modal.scss";
import { MinusOutlined, ThunderboltOutlined } from "@ant-design/icons"; import { MinusOutlined, ThunderboltOutlined } from "@ant-design/icons";
import { CheckCard, CheckCardProps } from "@ant-design/pro-components"; import { CheckCard, CheckCardProps } from "@ant-design/pro-components";
import { Button, Card, Col, Popover, Row } from "antd"; import { Button, Card, Col, Popover, Row, Tabs } from "antd";
import React, { useState } from "react"; import React, { useState } from "react";
import { useSnapshot } from "valtio"; import { useSnapshot } from "valtio";
...@@ -10,10 +10,12 @@ import { ...@@ -10,10 +10,12 @@ import {
fetchStrings, fetchStrings,
sendSelectMultiResponse, sendSelectMultiResponse,
sendSelectSingleResponse, sendSelectSingleResponse,
ygopro,
} from "@/api"; } from "@/api";
import { useConfig } from "@/config"; import { useConfig } from "@/config";
import { clearSelectActions, matStore, messageStore } from "@/stores"; import { clearSelectActions, matStore, messageStore } from "@/stores";
import { groupBy } from "../utils";
import { DragModal } from "./DragModal"; import { DragModal } from "./DragModal";
const NeosConfig = useConfig(); const NeosConfig = useConfig();
...@@ -58,6 +60,8 @@ export const SelectActionsModal = () => { ...@@ -58,6 +60,8 @@ export const SelectActionsModal = () => {
? response.length == 1 ? response.length == 1
: response.length >= min && response.length <= max && levelMatched; : response.length >= min && response.length <= max && levelMatched;
const grouped = groupBy(selectables, (option) => option.location?.location!);
return ( return (
<> <>
<DragModal <DragModal
...@@ -133,28 +137,37 @@ export const SelectActionsModal = () => { ...@@ -133,28 +137,37 @@ export const SelectActionsModal = () => {
}} }}
> >
<Row> <Row>
{selectables.map((option, idx) => { <Tabs
return ( type="card"
<Col span={4} key={idx}> items={grouped.map((group, idx) => {
<HoverCheckCard return {
hoverContent={option.effectDesc} label: fetchStrings("!system", group[0] + 1000),
style={{ width: 120 }} key: idx.toString(),
cover={ children: group[1].map((option, idx) => {
<img return (
alt={option.meta.id.toString()} <Col span={4} key={idx}>
src={ <HoverCheckCard
option.meta.id hoverContent={option.effectDesc}
? `${NeosConfig.cardImgUrl}/${option.meta.id}.jpg` style={{ width: 120 }}
: `${NeosConfig.assetsPath}/card_back.jpg` cover={
} <img
style={{ width: 100 }} alt={option.meta.id.toString()}
/> src={
} option.meta.id
value={option} ? `${NeosConfig.cardImgUrl}/${option.meta.id}.jpg`
/> : `${NeosConfig.assetsPath}/card_back.jpg`
</Col> }
); style={{ width: 100 }}
})} />
}
value={option}
/>
</Col>
);
}),
};
})}
/>
</Row> </Row>
<p>{selecteds.length > 0 ? fetchStrings("!system", 212) : ""}</p> <p>{selecteds.length > 0 ? fetchStrings("!system", 212) : ""}</p>
<Row> <Row>
......
export const groupBy = <K, V>(
array: readonly V[],
getKey: (cur: V, idx: number, src: readonly V[]) => K
): [K, V[]][] =>
Array.from(
array.reduce((map, cur, idx, src) => {
const key = getKey(cur, idx, src);
const list = map.get(key);
if (list) list.push(cur);
else map.set(key, [cur]);
return map;
}, new Map<K, V[]>())
);
export * from "./groupBy";
export * from "./interactTypeToString"; export * from "./interactTypeToString";
export * from "./zip"; export * from "./zip";
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