Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
M
moecube
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
JoyJ
moecube
Commits
5e4d1e79
Commit
5e4d1e79
authored
Sep 05, 2016
by
h3remi7
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add apps click
parent
6df98e85
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
81 additions
and
28 deletions
+81
-28
app/app-detail.component.css
app/app-detail.component.css
+4
-0
app/app-detail.component.html
app/app-detail.component.html
+3
-3
app/app-detail.component.ts
app/app-detail.component.ts
+25
-4
app/apps.component.html
app/apps.component.html
+11
-4
app/apps.component.ts
app/apps.component.ts
+17
-6
app/apps.service.ts
app/apps.service.ts
+12
-5
apps.json
apps.json
+9
-6
No files found.
app/app-detail.component.css
View file @
5e4d1e79
...
...
@@ -2,4 +2,8 @@
background-color
:
#c3d9ff
;
flex-grow
:
1
;
overflow-y
:
auto
;
}
.hidden
{
display
:
none
;
}
\ No newline at end of file
app/app-detail.component.html
View file @
5e4d1e79
<h1>
东方绯想天则
</h1>
<h1>
{{name()}}
</h1>
<div>
<div
*ngIf=
"!isInstalled()"
>
<button
type=
"button"
class=
"btn btn-primary"
>
安装
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
导入
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
正版代购
</button>
</div>
<div>
<div
*ngIf=
"isInstalled()"
>
<button
type=
"button"
class=
"btn btn-primary"
>
运行
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
设置
</button>
<button
type=
"button"
class=
"btn btn-secondary"
>
游览本地文件
</button>
...
...
app/app-detail.component.ts
View file @
5e4d1e79
/**
* Created by zh99998 on 16/9/2.
*/
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
'
./apps.service
'
import
{
RoutingService
}
from
'
./routing.service
'
@
Component
({
selector
:
'
app-detail
'
,
templateUrl
:
'
app/app-detail.component.html
'
,
styleUrls
:
[
'
app/app-detail.component.css
'
],
})
export
class
AppDetailComponent
{
}
export
class
AppDetailComponent
{
name
()
{
if
(
this
.
appsService
.
detail
[
this
.
routingService
.
app
])
{
return
this
.
appsService
.
detail
[
this
.
routingService
.
app
].
name
;
}
else
{
return
this
.
appsService
.
detail
[
"
default
"
].
name
;
}
};
isInstalled
()
{
if
(
this
.
appsService
.
detail
[
this
.
routingService
.
app
])
{
return
this
.
appsService
.
detail
[
this
.
routingService
.
app
].
isInstalled
;
}
else
{
return
this
.
appsService
.
detail
[
"
default
"
].
isInstalled
;
}
}
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
}
}
app/apps.component.html
View file @
5e4d1e79
<div
class=
"list-group"
>
<a
href=
"#"
class=
"list-group-item active"
>
游戏王
</a>
<!--
<a href="#" class="list-group-item active">游戏王</a>
<a href="#" class="list-group-item list-group-item-action">绯想天</a>
<a href="#" class="list-group-item list-group-item-action disabled">永远消失的幻想乡</a>
<a
href=
"#"
class=
"list-group-item list-group-item-action disabled"
></a>
-->
<a
*ngFor=
"let app of appsService.data"
(click)=
"selectApp(app.id)"
href=
"#"
class=
"list-group-item list-group-item-action"
[ngClass]=
"{active: app.id==routingService.app}"
>
{{app.name}}
</a>
<a
href=
"#"
class=
"list-group-item list-group-item-action disabled"
>
{{routingService.app}}
</a>
</div>
\ No newline at end of file
app/apps.component.ts
View file @
5e4d1e79
/**
* Created by zh99998 on 16/9/2.
*/
import
{
Component
}
from
'
@angular/core
'
;
import
{
AppsService
}
from
'
./apps.service
'
import
{
RoutingService
}
from
'
./routing.service
'
@
Component
({
selector
:
'
apps
'
,
templateUrl
:
'
app/apps.component.html
'
,
styleUrls
:
[
'
app/apps.component.css
'
],
})
export
class
AppsComponent
{
data
=
''
;
constructor
(
private
appsService
:
AppsService
)
{
constructor
(
private
appsService
:
AppsService
,
private
routingService
:
RoutingService
)
{
appsService
.
getApps
();
//this.data = appsService.data;
}
selectApp
(
id
)
{
this
.
routingService
.
app
=
id
;
this
.
getDetail
();
}
getDetail
()
{
for
(
let
i
=
0
;
i
<
this
.
appsService
.
data
.
length
;
i
++
){
let
x
=
this
.
appsService
.
data
[
i
];
if
(
x
.
id
==
this
.
routingService
.
app
)
{
this
.
appsService
.
detail
[
this
.
routingService
.
app
]
=
x
;
}
}
console
.
log
(
this
.
appsService
.
detail
);
}
}
app/apps.service.ts
View file @
5e4d1e79
...
...
@@ -4,17 +4,24 @@ import 'rxjs/Rx';
@
Injectable
()
export
class
AppsService
{
constructor
(
private
http
:
Http
)
{
}
data
;
data
=
''
;
detail
=
{
"
default
"
:
{
"
id
"
:
"
id
"
,
"
name
"
:
"
name
"
,
"
isInstalled
"
:
false
},
}
constructor
(
private
http
:
Http
)
{
}
getApps
()
{
console
.
log
(
123
);
this
.
http
.
get
(
'
./apps.json
'
)
.
map
(
response
=>
response
.
json
())
.
subscribe
(
data
=>
this
.
data
=
data
);
.
subscribe
(
data
=>
{
console
.
log
(
data
);
this
.
data
=
data
});
}
}
\ No newline at end of file
apps.json
View file @
5e4d1e79
[
{
id:
"th105"
,
name:
"东方绯想天"
"id"
:
"th105"
,
"name"
:
"东方绯想天"
,
"isInstalled"
:
true
},
{
id:
"th12"
,
name:
"东方地灵殿"
"id"
:
"th12"
,
"name"
:
"东方地灵殿"
,
"isInstalled"
:
false
},
{
id:
"th13"
,
name:
"东方UFO"
"id"
:
"th13"
,
"name"
:
"东方UFO"
,
"isInstalled"
:
false
}
]
\ No newline at end of file
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