Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
L
luna
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
ops
luna
Commits
9212aeef
Commit
9212aeef
authored
Sep 27, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 拆分replay 组件
parent
d1c2c372
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
43 additions
and
41 deletions
+43
-41
app.module.ts
src/app/app.module.ts
+1
-1
asset-tree.component.html
src/app/elements/asset-tree/asset-tree.component.html
+0
-1
asset-tree.component.ts
src/app/elements/asset-tree/asset-tree.component.ts
+1
-1
elements.component.ts
src/app/elements/elements.component.ts
+6
-2
guacamole.component.html
src/app/elements/replay/guacamole/guacamole.component.html
+0
-0
guacamole.component.scss
src/app/elements/replay/guacamole/guacamole.component.scss
+0
-0
guacamole.component.spec.ts
...app/elements/replay/guacamole/guacamole.component.spec.ts
+5
-5
guacamole.component.ts
src/app/elements/replay/guacamole/guacamole.component.ts
+3
-3
json.component.css
src/app/elements/replay/json/json.component.css
+0
-0
json.component.html
src/app/elements/replay/json/json.component.html
+0
-0
json.component.spec.ts
src/app/elements/replay/json/json.component.spec.ts
+0
-0
json.component.ts
src/app/elements/replay/json/json.component.ts
+3
-3
model.ts
src/app/model.ts
+13
-0
pages.component.ts
src/app/pages/pages.component.ts
+1
-4
replay.component.html
src/app/pages/replay/replay.component.html
+3
-2
replay.component.ts
src/app/pages/replay/replay.component.ts
+1
-1
replay.model.ts
src/app/pages/replay/replay.model.ts
+0
-12
router.module.ts
src/app/router.module.ts
+6
-6
No files found.
src/app/app.module.ts
View file @
9212aeef
...
@@ -9,7 +9,7 @@ import {MAT_LABEL_GLOBAL_OPTIONS} from '@angular/material';
...
@@ -9,7 +9,7 @@ import {MAT_LABEL_GLOBAL_OPTIONS} from '@angular/material';
// service
// service
import
{
AllServices
}
from
'@app/services'
;
import
{
AllServices
}
from
'@app/services'
;
import
{
AppRouterModule
}
from
'./router
/router
.module'
;
import
{
AppRouterModule
}
from
'./router.module'
;
import
{
Pipes
}
from
'./pipes/pipes'
;
import
{
Pipes
}
from
'./pipes/pipes'
;
import
{
AppComponent
}
from
'./pages/app.component'
;
import
{
AppComponent
}
from
'./pages/app.component'
;
import
{
PagesComponents
}
from
'./pages/pages.component'
;
import
{
PagesComponents
}
from
'./pages/pages.component'
;
...
...
src/app/elements/asset-tree/asset-tree.component.html
View file @
9212aeef
...
@@ -4,7 +4,6 @@
...
@@ -4,7 +4,6 @@
</ul>
</ul>
<ul
id=
"remoteAppsTree"
class=
"ztree"
>
<ul
id=
"remoteAppsTree"
class=
"ztree"
>
{{ "Loading"|trans }} ...
</ul>
</ul>
</div>
</div>
...
...
src/app/elements/asset-tree/asset-tree.component.ts
View file @
9212aeef
...
@@ -134,7 +134,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy {
...
@@ -134,7 +134,7 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy {
};
};
this
.
_http
.
getMyGrantedRemoteApps
().
subscribe
(
this
.
_http
.
getMyGrantedRemoteApps
().
subscribe
(
resp
=>
{
resp
=>
{
if
(
!
resp
)
{
if
(
resp
.
length
===
1
)
{
return
;
return
;
}
}
const
tree
=
$
.
fn
.
zTree
.
init
(
$
(
'#remoteAppsTree'
),
setting
,
resp
);
const
tree
=
$
.
fn
.
zTree
.
init
(
$
(
'#remoteAppsTree'
),
setting
,
resp
);
...
...
src/app/elements/elements.component.ts
View file @
9212aeef
...
@@ -13,8 +13,10 @@ import {ElementDialogAlertComponent} from './dialog/dialog.service';
...
@@ -13,8 +13,10 @@ import {ElementDialogAlertComponent} from './dialog/dialog.service';
import
{
ElementGuacamoleComponent
}
from
'./guacamole/guacamole.component'
;
import
{
ElementGuacamoleComponent
}
from
'./guacamole/guacamole.component'
;
import
{
ElementSshTermComponent
}
from
'./ssh-term/ssh-term.component'
;
import
{
ElementSshTermComponent
}
from
'./ssh-term/ssh-term.component'
;
import
{
ElementConnectComponent
,
AssetTreeDialogComponent
,
ManualPasswordDialogComponent
}
from
'./connect/connect.component'
;
import
{
ElementConnectComponent
,
AssetTreeDialogComponent
,
ManualPasswordDialogComponent
}
from
'./connect/connect.component'
;
import
{
ElementSftpComponent
}
from
'@app/elements/sftp/sftp.component'
;
import
{
ElementSftpComponent
}
from
'./sftp/sftp.component'
;
import
{
ElementSettingComponent
}
from
'@app/elements/setting/setting.component'
;
import
{
ElementSettingComponent
}
from
'./setting/setting.component'
;
import
{
ElementReplayGuacamoleComponent
}
from
'./replay/guacamole/guacamole.component'
;
import
{
ElementReplayJsonComponent
}
from
'./replay/json/json.component'
;
export
const
ElementComponents
=
[
export
const
ElementComponents
=
[
ElementLeftBarComponent
,
ElementLeftBarComponent
,
...
@@ -33,6 +35,8 @@ export const ElementComponents = [
...
@@ -33,6 +35,8 @@ export const ElementComponents = [
ElementSshTermComponent
,
ElementSshTermComponent
,
ElementConnectComponent
,
ElementConnectComponent
,
ElementSftpComponent
,
ElementSftpComponent
,
ElementReplayGuacamoleComponent
,
ElementReplayJsonComponent
,
AssetTreeDialogComponent
,
AssetTreeDialogComponent
,
ChangLanWarningDialogComponent
,
ChangLanWarningDialogComponent
,
ManualPasswordDialogComponent
,
ManualPasswordDialogComponent
,
...
...
src/app/
page
s/replay/guacamole/guacamole.component.html
→
src/app/
element
s/replay/guacamole/guacamole.component.html
View file @
9212aeef
File moved
src/app/
page
s/replay/guacamole/guacamole.component.scss
→
src/app/
element
s/replay/guacamole/guacamole.component.scss
View file @
9212aeef
File moved
src/app/
page
s/replay/guacamole/guacamole.component.spec.ts
→
src/app/
element
s/replay/guacamole/guacamole.component.spec.ts
View file @
9212aeef
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
async
,
ComponentFixture
,
TestBed
}
from
'@angular/core/testing'
;
import
{
ReplayGuacamoleComponent
}
from
'./guacamole.component'
;
import
{
Element
ReplayGuacamoleComponent
}
from
'./guacamole.component'
;
describe
(
'ReplayGuacamoleComponent'
,
()
=>
{
describe
(
'ReplayGuacamoleComponent'
,
()
=>
{
let
component
:
ReplayGuacamoleComponent
;
let
component
:
Element
ReplayGuacamoleComponent
;
let
fixture
:
ComponentFixture
<
ReplayGuacamoleComponent
>
;
let
fixture
:
ComponentFixture
<
Element
ReplayGuacamoleComponent
>
;
beforeEach
(
async
(()
=>
{
beforeEach
(
async
(()
=>
{
TestBed
.
configureTestingModule
({
TestBed
.
configureTestingModule
({
declarations
:
[
ReplayGuacamoleComponent
]
declarations
:
[
Element
ReplayGuacamoleComponent
]
})
})
.
compileComponents
();
.
compileComponents
();
}));
}));
beforeEach
(()
=>
{
beforeEach
(()
=>
{
fixture
=
TestBed
.
createComponent
(
ReplayGuacamoleComponent
);
fixture
=
TestBed
.
createComponent
(
Element
ReplayGuacamoleComponent
);
component
=
fixture
.
componentInstance
;
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
fixture
.
detectChanges
();
});
});
...
...
src/app/
page
s/replay/guacamole/guacamole.component.ts
→
src/app/
element
s/replay/guacamole/guacamole.component.ts
View file @
9212aeef
import
{
Component
,
OnInit
,
Input
}
from
'@angular/core'
;
import
{
Component
,
OnInit
,
Input
}
from
'@angular/core'
;
import
*
as
Guacamole
from
'guacamole-common-js/dist/guacamole-common'
;
import
*
as
Guacamole
from
'guacamole-common-js/dist/guacamole-common'
;
import
{
Replay
}
from
'
../replay.
model'
;
import
{
Replay
}
from
'
@app/
model'
;
function
zeroPad
(
num
,
minLength
)
{
function
zeroPad
(
num
,
minLength
)
{
let
str
=
num
.
toString
();
let
str
=
num
.
toString
();
...
@@ -46,11 +46,11 @@ function formatTime(millis: number) {
...
@@ -46,11 +46,11 @@ function formatTime(millis: number) {
@
Component
({
@
Component
({
selector
:
'
app
-replay-guacamole'
,
selector
:
'
elements
-replay-guacamole'
,
templateUrl
:
'./guacamole.component.html'
,
templateUrl
:
'./guacamole.component.html'
,
styleUrls
:
[
'./guacamole.component.scss'
]
styleUrls
:
[
'./guacamole.component.scss'
]
})
})
export
class
ReplayGuacamoleComponent
implements
OnInit
{
export
class
Element
ReplayGuacamoleComponent
implements
OnInit
{
isPlaying
=
false
;
isPlaying
=
false
;
recording
:
any
;
recording
:
any
;
playerRef
:
any
;
playerRef
:
any
;
...
...
src/app/
page
s/replay/json/json.component.css
→
src/app/
element
s/replay/json/json.component.css
View file @
9212aeef
File moved
src/app/
page
s/replay/json/json.component.html
→
src/app/
element
s/replay/json/json.component.html
View file @
9212aeef
File moved
src/app/
page
s/replay/json/json.component.spec.ts
→
src/app/
element
s/replay/json/json.component.spec.ts
View file @
9212aeef
File moved
src/app/
page
s/replay/json/json.component.ts
→
src/app/
element
s/replay/json/json.component.ts
View file @
9212aeef
import
{
Component
,
Input
,
OnInit
}
from
'@angular/core'
;
import
{
Component
,
Input
,
OnInit
}
from
'@angular/core'
;
import
{
Terminal
}
from
'xterm'
;
import
{
Terminal
}
from
'xterm'
;
import
{
HttpService
,
LogService
}
from
'@app/services'
;
import
{
HttpService
,
LogService
}
from
'@app/services'
;
import
{
Replay
}
from
'
../replay.
model'
;
import
{
Replay
}
from
'
@app/
model'
;
function
zeroPad
(
num
,
minLength
)
{
function
zeroPad
(
num
,
minLength
)
{
let
str
=
num
.
toString
();
let
str
=
num
.
toString
();
...
@@ -47,11 +47,11 @@ function formatTime(millis: number) {
...
@@ -47,11 +47,11 @@ function formatTime(millis: number) {
@
Component
({
@
Component
({
selector
:
'
app
-replay-json'
,
selector
:
'
elements
-replay-json'
,
templateUrl
:
'./json.component.html'
,
templateUrl
:
'./json.component.html'
,
styleUrls
:
[
'./json.component.css'
]
styleUrls
:
[
'./json.component.css'
]
})
})
export
class
JsonComponent
implements
OnInit
{
export
class
ElementReplay
JsonComponent
implements
OnInit
{
isPlaying
=
false
;
isPlaying
=
false
;
recording
:
any
;
recording
:
any
;
playerRef
:
any
;
playerRef
:
any
;
...
...
src/app/model.ts
View file @
9212aeef
...
@@ -193,3 +193,16 @@ export class Setting {
...
@@ -193,3 +193,16 @@ export class Setting {
isLoadTreeAsync
:
string
=
'1'
;
isLoadTreeAsync
:
string
=
'1'
;
isSkipAllManualPassword
:
string
=
'0'
;
isSkipAllManualPassword
:
string
=
'0'
;
}
}
export
class
Replay
{
id
:
string
;
src
:
string
;
type
:
string
;
status
:
string
;
timelist
:
Array
<
number
>
;
totalTime
:
number
;
json
:
any
;
height
:
number
;
width
:
number
;
}
src/app/pages/pages.component.ts
View file @
9212aeef
...
@@ -5,20 +5,17 @@ import {PagesMonitorComponent} from './monitor/monitor.component';
...
@@ -5,20 +5,17 @@ import {PagesMonitorComponent} from './monitor/monitor.component';
import
{
PagesReplayComponent
}
from
'./replay/replay.component'
;
import
{
PagesReplayComponent
}
from
'./replay/replay.component'
;
import
{
PagesNotFoundComponent
}
from
'./not-found/not-found.component'
;
import
{
PagesNotFoundComponent
}
from
'./not-found/not-found.component'
;
import
{
PagesLoginComponent
}
from
'./login/login.component'
;
import
{
PagesLoginComponent
}
from
'./login/login.component'
;
import
{
JsonComponent
}
from
'./replay/json/json.component'
;
import
{
PagesMonitorLinuxComponent
}
from
'./monitor/linux/linux.component'
;
import
{
PagesMonitorLinuxComponent
}
from
'./monitor/linux/linux.component'
;
import
{
PagesMonitorWindowsComponent
}
from
'./monitor/windows/windows.component'
;
import
{
PagesMonitorWindowsComponent
}
from
'./monitor/windows/windows.component'
;
import
{
ReplayGuacamoleComponent
}
from
'./replay/guacamole/guacamole.component'
;
export
const
PagesComponents
=
[
export
const
PagesComponents
=
[
PageMainComponent
,
PageMainComponent
,
PagesBlankComponent
,
PagesBlankComponent
,
PagesConnectComponent
,
PagesConnectComponent
,
PagesMonitorComponent
,
PagesMonitorComponent
,
PagesReplayComponent
,
JsonComponent
,
PagesReplayComponent
,
PagesNotFoundComponent
,
PagesNotFoundComponent
,
PagesLoginComponent
,
PagesLoginComponent
,
PagesMonitorLinuxComponent
,
PagesMonitorLinuxComponent
,
PagesMonitorWindowsComponent
,
PagesMonitorWindowsComponent
,
ReplayGuacamoleComponent
];
];
src/app/pages/replay/replay.component.html
View file @
9212aeef
<app-replay-json
[
replay
]="
replay
"
*
ngIf=
"replay.type=='json'"
></app-replay-json>
<elements-replay-json
[
replay
]="
replay
"
*
ngIf=
"replay.type=='json'"
></elements-replay-json>
<app-replay-guacamole
[
replay
]="
replay
"
*
ngIf=
"replay.type=='guacamole'"
></app-replay-guacamole>
<elements-replay-guacamole
[
replay
]="
replay
"
*
ngIf=
"replay.type=='guacamole'"
></elements-replay-guacamole>
src/app/pages/replay/replay.component.ts
View file @
9212aeef
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
Component
,
OnInit
}
from
'@angular/core'
;
import
{
ActivatedRoute
}
from
'@angular/router'
;
import
{
ActivatedRoute
}
from
'@angular/router'
;
import
{
HttpService
,
LogService
}
from
'@app/services'
;
import
{
HttpService
,
LogService
}
from
'@app/services'
;
import
{
Replay
}
from
'
./replay.
model'
;
import
{
Replay
}
from
'
@app/
model'
;
@
Component
({
@
Component
({
selector
:
'pages-replay'
,
selector
:
'pages-replay'
,
...
...
src/app/pages/replay/replay.model.ts
deleted
100644 → 0
View file @
d1c2c372
export
class
Replay
{
id
:
string
;
src
:
string
;
type
:
string
;
status
:
string
;
timelist
:
Array
<
number
>
;
totalTime
:
number
;
json
:
any
;
height
:
number
;
width
:
number
;
}
src/app/router
/router
.module.ts
→
src/app/router.module.ts
View file @
9212aeef
import
{
NgModule
}
from
'@angular/core'
;
import
{
NgModule
}
from
'@angular/core'
;
import
{
RouterModule
,
Routes
}
from
'@angular/router'
;
import
{
RouterModule
,
Routes
}
from
'@angular/router'
;
import
{
PagesBlankComponent
}
from
'.
.
/pages/blank/blank.component'
;
import
{
PagesBlankComponent
}
from
'./pages/blank/blank.component'
;
import
{
PagesConnectComponent
}
from
'.
.
/pages/connect/connect.component'
;
import
{
PagesConnectComponent
}
from
'./pages/connect/connect.component'
;
import
{
PagesReplayComponent
}
from
'.
.
/pages/replay/replay.component'
;
import
{
PagesReplayComponent
}
from
'./pages/replay/replay.component'
;
import
{
PageMainComponent
}
from
'.
.
/pages/main/main.component'
;
import
{
PageMainComponent
}
from
'./pages/main/main.component'
;
import
{
PagesMonitorComponent
}
from
'.
.
/pages/monitor/monitor.component'
;
import
{
PagesMonitorComponent
}
from
'./pages/monitor/monitor.component'
;
import
{
ElementSftpComponent
}
from
'.
.
/elements/sftp/sftp.component'
;
import
{
ElementSftpComponent
}
from
'./elements/sftp/sftp.component'
;
const
appRoutes
:
Routes
=
[
const
appRoutes
:
Routes
=
[
...
...
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