Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
Mycard Mobile
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
GaiaXalter
Mycard Mobile
Commits
26800575
Commit
26800575
authored
Jul 23, 2017
by
神楽坂玲奈
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
roomlist loading
parent
3572684b
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
112 additions
and
45 deletions
+112
-45
src/app/app.module.ts
src/app/app.module.ts
+6
-3
src/app/lobby/lobby.component.html
src/app/lobby/lobby.component.html
+3
-2
src/app/lobby/lobby.component.ts
src/app/lobby/lobby.component.ts
+14
-2
src/app/room-list/room-list.component.css
src/app/room-list/room-list.component.css
+18
-5
src/app/room-list/room-list.component.html
src/app/room-list/room-list.component.html
+4
-0
src/app/room-list/room-list.component.ts
src/app/room-list/room-list.component.ts
+0
-4
src/app/watch/watch.component.css
src/app/watch/watch.component.css
+18
-0
src/app/watch/watch.component.html
src/app/watch/watch.component.html
+4
-0
src/app/ygopro.service.ts
src/app/ygopro.service.ts
+45
-29
No files found.
src/app/app.module.ts
View file @
26800575
...
...
@@ -11,7 +11,8 @@ import {
MdGridListModule
,
MdIconModule
,
MdInputModule
,
MdListModule
,
MdMenuModule
,
MdListModule
,
MdMenuModule
,
MdProgressSpinnerModule
,
MdSelectModule
,
MdSlideToggleModule
,
MdSnackBarModule
,
...
...
@@ -21,18 +22,19 @@ import {
import
{
BrowserModule
}
from
'
@angular/platform-browser
'
;
import
{
BrowserAnimationsModule
}
from
'
@angular/platform-browser/animations
'
;
import
'
hammerjs
'
;
import
'
rxjs/Rx
'
;
import
{
AppRoutingModule
}
from
'
./app-routing.module
'
;
import
{
AppComponent
}
from
'
./app.component
'
;
import
{
LobbyComponent
}
from
'
./lobby/lobby.component
'
;
import
{
MatchDialog
}
from
'
./match/match.component
'
;
import
{
NewRoomComponent
}
from
'
./new-room/new-room.component
'
;
import
{
ResultDialog
}
from
'
./result/result.dialog
'
;
import
{
RoomListComponent
}
from
'
./room-list/room-list.component
'
;
import
{
ToolbarComponent
}
from
'
./toolbar/toolbar.component
'
;
import
{
WatchComponent
}
from
'
./watch/watch.component
'
;
import
{
WindbotComponent
}
from
'
./windbot/windbot.component
'
;
import
{
YGOProService
}
from
'
./ygopro.service
'
;
import
{
ResultDialog
}
from
'
./result/result.dialog
'
;
@
NgModule
({
declarations
:
[
...
...
@@ -69,7 +71,8 @@ import { ResultDialog } from './result/result.dialog';
MdAutocompleteModule
,
ReactiveFormsModule
,
JsonpModule
,
MdMenuModule
MdMenuModule
,
MdProgressSpinnerModule
],
providers
:
[
YGOProService
],
bootstrap
:
[
AppComponent
],
...
...
src/app/lobby/lobby.component.html
View file @
26800575
...
...
@@ -23,6 +23,7 @@
<md-menu
#menu
="
mdMenu
"
>
<a
[href]=
"login.logout()"
md-menu-item
>
切换用户
</a>
<button
md-menu-item
>
大厅版本 {{version}}
</button>
<button
md-menu-item
*ngIf=
"build"
>
应用版本 {{build.version_name}}
</button>
</md-menu>
</md-toolbar>
...
...
@@ -158,7 +159,7 @@
<md-card-header>
<img
*ngIf=
"item.image"
md-card-avatar
[src]=
"item.image"
>
<md-card-title>
{{item.title}}
</md-card-title>
<md-card-subtitle>
{{item.updated_at | date
:"mediumDate"
}}
</md-card-subtitle>
<md-card-subtitle>
{{item.updated_at | date}}
</md-card-subtitle>
</md-card-header>
</a>
</md-card>
...
...
@@ -168,7 +169,7 @@
<md-card-header>
<img
*ngIf=
"item.image_url"
md-card-avatar
[src]=
"item.image_url"
>
<md-card-title>
{{item.title}}
</md-card-title>
<md-card-subtitle>
by {{item.last_poster_username}} / {{item.last_posted_at | date
:"mediumDate"
}}
<md-card-subtitle>
by {{item.last_poster_username}} / {{item.last_posted_at | date}}
</md-card-subtitle>
</md-card-header>
</a>
...
...
src/app/lobby/lobby.component.ts
View file @
26800575
...
...
@@ -3,8 +3,6 @@ import { FormControl } from '@angular/forms';
import
{
Http
,
Jsonp
}
from
'
@angular/http
'
;
import
{
MdDialog
}
from
'
@angular/material
'
;
import
{
ActivatedRoute
}
from
'
@angular/router
'
;
// import 'rxjs/add/operator/map';
import
'
rxjs/add/operator/toPromise
'
;
import
{
environment
}
from
'
../../environments/environment
'
;
import
{
LoginService
}
from
'
../login.service
'
;
import
{
MatchDialog
}
from
'
../match/match.component
'
;
...
...
@@ -20,6 +18,7 @@ import { YGOProService } from '../ygopro.service';
export
class
LobbyComponent
{
version
=
environment
.
version
;
build
:
BuildConfig
;
searchCtrl
=
new
FormControl
();
suggestion
=
this
.
searchCtrl
.
valueChanges
.
filter
(
name
=>
name
).
flatMap
(
name
=>
this
.
jsonp
.
get
(
'
http://www.ourocg.cn/Suggest.aspx
'
,
{
...
...
@@ -36,6 +35,14 @@ export class LobbyComponent {
arena_url
.
searchParams
.
set
(
'
sso
'
,
login
.
token
);
this
.
arena_url
=
arena_url
.
toString
();
const
matched
=
navigator
.
userAgent
.
match
(
/YGOMobile
\/(
.+
?)
\((
.+
?)
(\d
+
)\)
/
);
if
(
matched
)
{
this
.
build
=
{
version_name
:
matched
[
1
],
application_id
:
matched
[
2
],
version_code
:
parseInt
(
matched
[
3
])
};
}
}
search
(
key
:
string
)
{
...
...
@@ -47,5 +54,10 @@ export class LobbyComponent {
request_match
(
arena
:
string
)
{
this
.
dialog
.
open
(
MatchDialog
,
{
data
:
arena
,
disableClose
:
true
});
}
}
interface
BuildConfig
{
version_name
:
string
;
version_code
:
number
;
application_id
:
string
;
}
src/app/room-list/room-list.component.css
View file @
26800575
:host
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
}
.hint
{
position
:
absolute
;
top
:
0
;
left
:
0
;
bottom
:
56px
;
right
:
0
;
z-index
:
1
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
.avatar
{
width
:
20px
;
height
:
20px
;
...
...
@@ -7,11 +25,6 @@
.game-title
{
flex
:
2
}
:host
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
}
md-table
{
flex
:
1
;
...
...
src/app/room-list/room-list.component.html
View file @
26800575
<app-toolbar>
房间列表
</app-toolbar>
<div
class=
"hint"
*ngIf=
"dataSource.loading"
><md-spinner></md-spinner></div>
<div
class=
"hint"
*ngIf=
"dataSource.empty"
>
现在没有等待中的游戏,可以自行创建一个房间或者去匹配
</div>
<div
class=
"hint"
*ngIf=
"dataSource.error"
>
网络错误
</div>
<md-table
#table
[dataSource]=
"dataSource"
>
<!--- Note that these columns can be defined in any order.
...
...
src/app/room-list/room-list.component.ts
View file @
26800575
import
{
ChangeDetectorRef
,
Component
}
from
'
@angular/core
'
;
import
'
rxjs/add/observable/merge
'
;
import
'
rxjs/add/operator/map
'
;
import
'
rxjs/add/operator/startWith
'
;
import
'
rxjs/Rx
'
;
import
{
LoginService
}
from
'
../login.service
'
;
import
{
RoomListDataSource
,
YGOProService
}
from
'
../ygopro.service
'
;
...
...
src/app/watch/watch.component.css
View file @
26800575
:host
{
display
:
flex
;
flex-direction
:
column
;
height
:
100%
;
}
.hint
{
position
:
absolute
;
top
:
0
;
left
:
0
;
bottom
:
56px
;
right
:
0
;
z-index
:
1
;
display
:
flex
;
align-items
:
center
;
justify-content
:
center
;
}
.avatar
{
width
:
20px
;
height
:
20px
;
...
...
src/app/watch/watch.component.html
View file @
26800575
<app-toolbar>
观战
</app-toolbar>
<div
class=
"hint"
*ngIf=
"dataSource.loading"
><md-spinner></md-spinner></div>
<div
class=
"hint"
*ngIf=
"dataSource.empty"
>
现在没有进行中的游戏
</div>
<div
class=
"hint"
*ngIf=
"dataSource.error"
>
网络错误
</div>
<md-table
#table
[dataSource]=
"dataSource"
>
<!--- Note that these columns can be defined in any order.
...
...
src/app/ygopro.service.ts
View file @
26800575
...
...
@@ -386,6 +386,10 @@ type Message =
export
class
RoomListDataSource
extends
DataSource
<
any
>
{
loading
=
true
;
empty
=
false
;
error
:
any
;
constructor
(
private
servers
:
Server
[],
private
filter
=
'
waiting
'
)
{
super
();
}
...
...
@@ -394,35 +398,47 @@ export class RoomListDataSource extends DataSource<any> {
connect
():
Observable
<
Room
[]
>
{
return
Observable
.
combineLatest
(
this
.
servers
.
map
(
server
=>
{
const
url
=
new
URL
(
server
.
url
!
);
url
.
searchParams
.
set
(
'
filter
'
,
this
.
filter
);
return
Observable
.
webSocket
({
url
:
url
.
toString
()
})
.
scan
((
rooms
:
Room
[],
message
:
Message
)
=>
{
switch
(
message
.
event
)
{
case
'
init
'
:
return
message
.
data
.
map
(
room
=>
({
server
:
server
,
...
room
}));
case
'
create
'
:
return
rooms
.
concat
({
server
:
server
,
...
message
.
data
});
case
'
update
'
:
Object
.
assign
(
rooms
.
find
(
room
=>
room
.
id
===
message
.
data
.
id
),
message
.
data
);
return
rooms
;
case
'
delete
'
:
return
rooms
.
filter
(
room
=>
room
.
id
!=
message
.
data
);
}
},
[]);
}
),
(...
sources
:
Room
[][])
=>
(
<
Room
[]
>
[]).
concat
(...
sources
)).
map
(
rooms
=>
sortBy
(
rooms
,
(
room
)
=>
{
if
(
room
.
arena
===
'
athletic
'
)
{
return
0
;
}
else
if
(
room
.
arena
===
'
entertain
'
)
{
return
1
;
}
else
if
(
room
.
id
!
.
startsWith
(
'
AI#
'
))
{
return
5
;
}
else
{
return
room
.
options
.
mode
+
2
;
}
})
);
const
url
=
new
URL
(
server
.
url
!
);
url
.
searchParams
.
set
(
'
filter
'
,
this
.
filter
);
// 协议处理
return
Observable
.
webSocket
({
url
:
url
.
toString
()
})
.
scan
((
rooms
:
Room
[],
message
:
Message
)
=>
{
switch
(
message
.
event
)
{
case
'
init
'
:
return
message
.
data
.
map
(
room
=>
({
server
:
server
,
...
room
}));
case
'
create
'
:
return
rooms
.
concat
({
server
:
server
,
...
message
.
data
});
case
'
update
'
:
Object
.
assign
(
rooms
.
find
(
room
=>
room
.
id
===
message
.
data
.
id
),
message
.
data
);
return
rooms
;
case
'
delete
'
:
return
rooms
.
filter
(
room
=>
room
.
id
!=
message
.
data
);
}
},
[]);
// 把多个服务器的数据拼接起来,这里是 combineLatest 的第二个参数
}),
(...
sources
:
Room
[][])
=>
(
<
Room
[]
>
[]).
concat
(...
sources
))
// 房间排序
.
map
(
rooms
=>
sortBy
(
rooms
,
(
room
)
=>
{
if
(
room
.
arena
===
'
athletic
'
)
{
return
0
;
}
else
if
(
room
.
arena
===
'
entertain
'
)
{
return
1
;
}
else
if
(
room
.
id
!
.
startsWith
(
'
AI#
'
))
{
return
5
;
}
else
{
return
room
.
options
.
mode
+
2
;
}
})
// loading、empty、error
).
filter
((
rooms
)
=>
{
this
.
loading
=
false
;
this
.
empty
=
rooms
.
length
==
0
;
return
true
;
}).
catch
((
error
)
=>
{
this
.
loading
=
false
;
this
.
error
=
error
;
return
[];
});
}
disconnect
()
{
...
...
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