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
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
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
love_飞影
Neos
Commits
c40cbcc3
Commit
c40cbcc3
authored
Jul 11, 2023
by
timel
Committed by
Chunchi Che
Jul 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix/bugs 0709
parent
19653d6a
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
44 additions
and
31 deletions
+44
-31
src/ui/Duel/Message/NeosModal/index.tsx
src/ui/Duel/Message/NeosModal/index.tsx
+8
-1
src/ui/Duel/PlayMat/Bg/index.scss
src/ui/Duel/PlayMat/Bg/index.scss
+29
-4
src/ui/Duel/PlayMat/Bg/index.tsx
src/ui/Duel/PlayMat/Bg/index.tsx
+6
-26
src/ui/Duel/PlayMat/Card/springs/focus.ts
src/ui/Duel/PlayMat/Card/springs/focus.ts
+1
-0
No files found.
src/ui/Duel/Message/NeosModal/index.tsx
View file @
c40cbcc3
...
...
@@ -3,7 +3,7 @@ import "./index.scss";
import
{
MinusOutlined
,
UpOutlined
}
from
"
@ant-design/icons
"
;
import
{
Modal
,
type
ModalProps
}
from
"
antd
"
;
import
classNames
from
"
classnames
"
;
import
{
useState
}
from
"
react
"
;
import
{
use
Effect
,
use
State
}
from
"
react
"
;
interface
Props
extends
ModalProps
{
canBeMinimized
?:
boolean
;
...
...
@@ -12,6 +12,12 @@ interface Props extends ModalProps {
export
const
NeosModal
:
React
.
FC
<
Props
>
=
(
props
)
=>
{
const
{
canBeMinimized
=
true
}
=
props
;
const
[
mini
,
setMini
]
=
useState
(
false
);
// 为了修antd的bug,先让isOpen发生变化,再让它变回来
const
[
realOpen
,
setRealOpen
]
=
useState
(
true
);
useEffect
(()
=>
setRealOpen
(
false
),
[]);
useEffect
(()
=>
setRealOpen
(
!!
props
.
open
),
[
props
.
open
]);
return
(
<
Modal
className=
{
classNames
(
"
neos-modal
"
,
{
"
neos-modal-mini
"
:
mini
})
}
...
...
@@ -24,6 +30,7 @@ export const NeosModal: React.FC<Props> = (props) => {
wrapClassName=
{
classNames
({
"
neos-modal-wrap
"
:
mini
})
}
closable=
{
canBeMinimized
}
{
...
props
}
open=
{
realOpen
}
/>
);
};
src/ui/Duel/PlayMat/Bg/index.scss
View file @
c40cbcc3
...
...
@@ -18,9 +18,7 @@ section#mat {
.block
{
height
:
var
(
--
block-height-m
);
width
:
var
(
--
block-width
);
// background-color: rgba(128, 128, 128, 0.447);
background
:
radial-gradient
(
#1d1d1d
,
#222
);
// box-shadow: 0 0 0 1px purple;
position
:
relative
;
&
.extra
{
margin-inline
:
calc
(
var
(
--
block-width
)
/
2
+
var
(
--
col-gap
)
/
2
);
...
...
@@ -29,8 +27,6 @@ section#mat {
height
:
var
(
--
block-height-s
);
}
&
.highlight
{
// box-shadow: 0 0 0 1px #00b0ff, 0 0 13px 0px #0077ff,
// 0 0 11px 0 skyblue inset;
background
:
#102639
;
cursor
:
pointer
;
// animation: blink 1s linear infinite alternate;
...
...
@@ -72,3 +68,32 @@ section#mat {
}
}
}
// 被禁用的样式
.disabled-cross
{
width
:
100%
;
height
:
100%
;
cursor
:
not
-
allowed
;
background
:
linear-gradient
(
to
top
right
,
rgba
(
0
,
0
,
0
,
0
)
0%
,
rgba
(
0
,
0
,
0
,
0
)
calc
(
50%
-
1
.5px
)
,
red
50%
,
rgba
(
0
,
0
,
0
,
0
)
calc
(
50%
+
1
.5px
)
,
rgba
(
0
,
0
,
0
,
0
)
100%
)
,
linear-gradient
(
to
bottom
right
,
rgba
(
0
,
0
,
0
,
0
)
0%
,
rgba
(
0
,
0
,
0
,
0
)
calc
(
50%
-
1
.5px
)
,
red
50%
,
rgba
(
0
,
0
,
0
,
0
)
calc
(
50%
+
1
.5px
)
,
rgba
(
0
,
0
,
0
,
0
)
100%
);
display
:
none
;
}
.block.disabled
{
.disabled-cross
{
display
:
block
;
}
}
src/ui/Duel/PlayMat/Bg/index.tsx
View file @
c40cbcc3
import
"
./index.scss
"
;
import
classnames
from
"
classnames
"
;
import
{
type
CSSProperties
}
from
"
react
"
;
import
{
type
INTERNAL_Snapshot
as
Snapshot
,
useSnapshot
}
from
"
valtio
"
;
import
{
sendSelectPlaceResponse
,
ygopro
}
from
"
@/api
"
;
...
...
@@ -12,25 +11,6 @@ import {
placeStore
,
}
from
"
@/stores
"
;
// Block被禁用的样式
const
BgDisabledStyle
=
{
background
:
`linear-gradient(
to top right,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 0) calc(50% - 1.5px),
red 50%,
rgba(0, 0, 0, 0) calc(50% + 1.5px),
rgba(0, 0, 0, 0) 100%
), linear-gradient(
to bottom right,
rgba(0, 0, 0, 0) 0%,
rgba(0, 0, 0, 0) calc(50% - 1.5px),
red 50%,
rgba(0, 0, 0, 0) calc(50% + 1.5px),
rgba(0, 0, 0, 0) 100%
)`
,
};
const
BgExtraRow
:
React
.
FC
<
{
meSnap
:
Snapshot
<
BlockState
[]
>
;
opSnap
:
Snapshot
<
BlockState
[]
>
;
...
...
@@ -42,18 +22,15 @@ const BgExtraRow: React.FC<{
key=
{
i
}
className=
{
classnames
(
"
block
"
,
"
extra
"
,
{
highlight
:
!!
meSnap
[
i
].
interactivity
||
!!
opSnap
[
i
].
interactivity
,
disabled
:
meSnap
[
i
].
disabled
||
opSnap
[
i
].
disabled
,
})
}
style=
{
meSnap
[
i
].
disabled
||
opSnap
[
i
].
disabled
?
(
BgDisabledStyle
as
CSSProperties
)
:
{}
}
onClick=
{
()
=>
{
onBlockClick
(
meSnap
[
i
].
interactivity
);
onBlockClick
(
opSnap
[
i
].
interactivity
);
}
}
>
{
<
DecoTriangles
/>
}
{
<
DisabledCross
/>
}
</
div
>
))
}
</
div
>
...
...
@@ -72,11 +49,12 @@ const BgRow: React.FC<{
className=
{
classnames
(
"
block
"
,
{
szone
:
isSzone
,
highlight
:
!!
snap
[
i
].
interactivity
,
disabled
:
snap
[
i
].
disabled
,
})
}
style=
{
snap
[
i
].
disabled
?
(
BgDisabledStyle
as
CSSProperties
)
:
{}
}
onClick=
{
()
=>
onBlockClick
(
snap
[
i
].
interactivity
)
}
>
{
<
DecoTriangles
/>
}
{
<
DisabledCross
/>
}
</
div
>
))
}
</
div
>
...
...
@@ -113,3 +91,5 @@ const DecoTriangles: React.FC = () => (
))
}
</>
);
const
DisabledCross
:
React
.
FC
=
()
=>
<
div
className=
"disabled-cross"
></
div
>;
src/ui/Duel/PlayMat/Card/springs/focus.ts
View file @
c40cbcc3
...
...
@@ -16,6 +16,7 @@ export const focus = async (props: { card: CardType; api: SpringApi }) => {
y
:
current
.
y
+
(
matStore
.
isMe
(
card
.
location
.
controller
)
?
-
1
:
1
)
*
120
,
// TODO: 放到config之中
ry
:
0
,
rz
:
0
,
z
:
current
.
z
+
50
,
});
await
asyncStart
(
api
)({
y
:
current
.
y
,
...
...
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