Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
N
Neos
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Locked Files
Issues
1
Issues
1
List
Boards
Labels
Service Desk
Milestones
Merge Requests
2
Merge Requests
2
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Security & Compliance
Security & Compliance
Dependency List
License Compliance
Packages
Packages
List
Container Registry
Analytics
Analytics
CI / CD
Code Review
Insights
Issues
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
MyCard
Neos
Commits
74564d82
Commit
74564d82
authored
Jun 28, 2023
by
chechunchi
1
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
update SelectCardsModal
parent
3d30aa6c
Pipeline
#22461
failed with stages
in 13 minutes and 14 seconds
Changes
1
Pipelines
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
35 deletions
+41
-35
src/ui/Duel/Message/SelectCardsModal/index.tsx
src/ui/Duel/Message/SelectCardsModal/index.tsx
+41
-35
No files found.
src/ui/Duel/Message/SelectCardsModal/index.tsx
View file @
74564d82
...
...
@@ -36,7 +36,7 @@ export const SelectCardsModal: React.FC<SelectCardsModalProps> = ({
min
,
max
,
single
,
selecteds
:
_selecteds
,
selecteds
,
selectables
,
mustSelects
,
cancelable
,
...
...
@@ -131,6 +131,9 @@ export const SelectCardsModal: React.FC<SelectCardsModalProps> = ({
direction=
"vertical"
style=
{
{
width
:
"
100%
"
,
overflow
:
"
hidden
"
}
}
>
{
selecteds
.
map
((
card
,
i
)
=>
(
<
OptionCard
key=
{
i
}
{
...
card
as
Option
}
/>
))
}
<
Selector
zoneOptions=
{
zoneOptions
}
selectedZone=
{
selectedZone
}
...
...
@@ -153,40 +156,7 @@ export const SelectCardsModal: React.FC<SelectCardsModalProps> = ({
}
}
>
{
options
[
1
].
map
((
card
,
j
)
=>
(
<
Tooltip
title=
{
card
.
effectDesc
}
placement=
"bottom"
key=
{
j
}
>
{
/* 这儿必须有一个div,不然tooltip不生效 */
}
<
div
>
<
CheckCard
cover=
{
<
YgoCard
code=
{
card
.
meta
.
id
}
style=
{
{
width
:
"
100%
"
,
height
:
"
100%
"
,
position
:
"
absolute
"
,
left
:
0
,
top
:
0
,
}
}
/>
}
style=
{
{
width
:
100
,
aspectRatio
:
5.9
/
8.6
,
marginInlineEnd
:
0
,
marginBlockEnd
:
0
,
flexShrink
:
0
,
}
}
value=
{
card
}
onClick=
{
()
=>
{
showCardModal
(
card
);
}
}
/>
</
div
>
</
Tooltip
>
<
OptionCard
key=
{
j
}
{
...
(
card
as
Option
)}
/>
))
}
</
CheckCard
.
Group
>
</
div
>
...
...
@@ -219,6 +189,42 @@ const Selector: React.FC<{
<></>
);
const
OptionCard
:
React
.
FC
<
Option
>
=
(
props
)
=>
{
const
{
effectDesc
,
meta
}
=
props
;
return
(
<
Tooltip
title=
{
effectDesc
}
placement=
"bottom"
>
{
/* 这儿必须有一个div,不然tooltip不生效 */
}
<
div
>
<
CheckCard
cover=
{
<
YgoCard
code=
{
meta
.
id
}
style=
{
{
width
:
"
100%
"
,
height
:
"
100%
"
,
position
:
"
absolute
"
,
left
:
0
,
top
:
0
,
}
}
/>
}
style=
{
{
width
:
100
,
aspectRatio
:
5.9
/
8.6
,
marginInlineEnd
:
0
,
marginBlockEnd
:
0
,
flexShrink
:
0
,
}
}
value=
{
props
}
onClick=
{
()
=>
{
showCardModal
(
props
);
}
}
/>
</
div
>
</
Tooltip
>
);
};
export
interface
Option
{
// card id
meta
:
CardMeta
;
...
...
Chunchi Che
@SKTT1Ryze
mentioned in commit
f26da02e
·
Jun 28, 2023
mentioned in commit
f26da02e
mentioned in commit f26da02e68b24d6dc69837f5b6265ff81ba08a98
Toggle commit list
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment