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
dbaab022
Commit
dbaab022
authored
Aug 09, 2023
by
Chunchi Che
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
optimize WaitRoom
parent
3a3e233a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
10 deletions
+18
-10
src/ui/WaitRoom/index.tsx
src/ui/WaitRoom/index.tsx
+18
-10
No files found.
src/ui/WaitRoom/index.tsx
View file @
dbaab022
...
@@ -139,14 +139,18 @@ export const Component: React.FC = () => {
...
@@ -139,14 +139,18 @@ export const Component: React.FC = () => {
who=
{
Who
.
Op
}
who=
{
Who
.
Op
}
player=
{
op
}
player=
{
op
}
btn=
{
btn=
{
<
MoraAvatar
room
.
stage
===
RoomStage
.
WAITING
?
(
mora=
{
<></>
op
?.
moraResult
!==
undefined
&&
)
:
(
op
.
moraResult
!==
HandType
.
UNKNOWN
<
MoraAvatar
?
Object
.
values
(
Mora
)[
op
.
moraResult
-
1
]
mora=
{
:
undefined
op
?.
moraResult
!==
undefined
&&
}
op
.
moraResult
!==
HandType
.
UNKNOWN
/>
?
Object
.
values
(
Mora
)[
op
.
moraResult
-
1
]
:
undefined
}
/>
)
}
}
/>
/>
</
div
>
</
div
>
...
@@ -314,7 +318,8 @@ const ActionButton: React.FC<{
...
@@ -314,7 +318,8 @@ const ActionButton: React.FC<{
onMoraSelect
:
(
mora
:
Mora
)
=>
void
;
onMoraSelect
:
(
mora
:
Mora
)
=>
void
;
onTpSelect
:
(
tp
:
Tp
)
=>
void
;
onTpSelect
:
(
tp
:
Tp
)
=>
void
;
}
>
=
({
onMoraSelect
,
onTpSelect
})
=>
{
}
>
=
({
onMoraSelect
,
onTpSelect
})
=>
{
const
{
stage
,
isHost
}
=
useSnapshot
(
roomStore
);
const
room
=
useSnapshot
(
roomStore
);
const
{
stage
,
isHost
}
=
room
;
return
(
return
(
<
MoraPopover
onSelect=
{
onMoraSelect
}
>
<
MoraPopover
onSelect=
{
onMoraSelect
}
>
<
TpPopover
onSelect=
{
onTpSelect
}
>
<
TpPopover
onSelect=
{
onTpSelect
}
>
...
@@ -322,7 +327,10 @@ const ActionButton: React.FC<{
...
@@ -322,7 +327,10 @@ const ActionButton: React.FC<{
className=
{
styles
[
"
btns-action
"
]
}
className=
{
styles
[
"
btns-action
"
]
}
disabled=
{
disabled=
{
stage
!==
RoomStage
.
WAITING
||
stage
!==
RoomStage
.
WAITING
||
(
stage
===
RoomStage
.
WAITING
&&
!
isHost
)
(
stage
===
RoomStage
.
WAITING
&&
(
!
isHost
||
room
.
getMePlayer
()?.
state
!==
PlayerState
.
READY
||
room
.
getOpPlayer
()?.
state
!==
PlayerState
.
READY
))
}
}
onClick=
{
()
=>
{
onClick=
{
()
=>
{
sendHsStart
();
sendHsStart
();
...
...
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