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
6bb66d4f
Commit
6bb66d4f
authored
Sep 10, 2019
by
ibuler
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[Update] 修改left bar
parent
76d9e76a
Show whitespace changes
Inline
Side-by-side
Showing
17 changed files
with
111 additions
and
132 deletions
+111
-132
Dockerfile
Dockerfile
+1
-1
app.module.ts
src/app/app.module.ts
+4
-1
app.service.ts
src/app/app.service.ts
+37
-2
asset-tree.component.ts
src/app/elements/asset-tree/asset-tree.component.ts
+0
-14
connect.component.ts
src/app/elements/connect/connect.component.ts
+16
-5
content-window.component.ts
src/app/elements/content-window/content-window.component.ts
+0
-4
content.component.ts
src/app/elements/content/content.component.ts
+8
-7
guacamole.component.ts
src/app/elements/guacamole/guacamole.component.ts
+0
-5
left-bar.component.ts
src/app/elements/left-bar/left-bar.component.ts
+1
-70
nav.component.css
src/app/elements/nav/nav.component.css
+11
-4
nav.component.html
src/app/elements/nav/nav.component.html
+12
-0
nav.component.ts
src/app/elements/nav/nav.component.ts
+8
-11
term.component.ts
src/app/elements/term/term.component.ts
+2
-1
main.component.css
src/app/pages/main/main.component.css
+2
-2
main.component.html
src/app/pages/main/main.component.html
+6
-3
main.component.ts
src/app/pages/main/main.component.ts
+1
-1
zh.json
src/assets/i18n/zh.json
+2
-1
No files found.
Dockerfile
View file @
6bb66d4f
...
...
@@ -8,6 +8,6 @@ RUN npm run-script build
FROM
nginx:alpine
COPY
--from=stage-build /data/
dist
/opt/luna/
COPY
--from=stage-build /data/
luan
/opt/luna/
COPY
./src/assets/i18n /opt/luna/i18n
COPY
nginx.conf /etc/nginx/conf.d/default.conf
src/app/app.module.ts
View file @
6bb66d4f
...
...
@@ -7,7 +7,9 @@ import {CookieService} from 'ngx-cookie-service';
import
{
MAT_LABEL_GLOBAL_OPTIONS
}
from
'@angular/material'
;
// service
import
{
AppService
,
HttpService
,
LocalStorageService
,
NavService
,
LogService
,
UUIDService
,
TreeFilterService
}
from
'./app.service'
;
import
{
AppService
,
HttpService
,
LocalStorageService
,
NavService
,
LogService
,
UUIDService
,
TreeFilterService
,
ViewService
,
}
from
'./app.service'
;
import
{
AppRouterModule
}
from
'./router/router.module'
;
import
{
Pipes
}
from
'./pipes/pipes'
;
...
...
@@ -55,6 +57,7 @@ import {AssetTreeDialogComponent, ManualPasswordDialogComponent} from './element
LocalStorageService
,
CookieService
,
TreeFilterService
,
ViewService
,
NGXLogger
,
{
provide
:
MAT_LABEL_GLOBAL_OPTIONS
,
useValue
:
{
float
:
'always'
}}
]
...
...
src/app/app.service.ts
View file @
6bb66d4f
...
...
@@ -2,11 +2,10 @@ import {EventEmitter, Injectable, OnInit} from '@angular/core';
import
{
Router
}
from
'@angular/router'
;
import
{
CookieService
}
from
'ngx-cookie-service'
;
import
{
DataStore
,
User
,
Browser
,
i18n
}
from
'./globals'
;
import
{
HttpClient
,
HttpHeaders
,
HttpParams
}
from
'@angular/common/http'
;
import
{
NGXLogger
}
from
'ngx-logger'
;
import
{
SystemUser
,
GuacObjAddResp
,
TreeNode
,
User
as
_User
,
NavEvt
}
from
'./model'
;
import
{
SystemUser
,
GuacObjAddResp
,
TreeNode
,
User
as
_User
,
NavEvt
,
View
}
from
'./model'
;
import
{
environment
}
from
'../environments/environment'
;
import
*
as
UUID
from
'uuid-js/lib/uuid.js'
;
...
...
@@ -66,6 +65,11 @@ export class HttpService {
return
this
.
http
.
get
<
Array
<
TreeNode
>>
(
url
);
}
filterMyGrantedAssetsById
(
id
:
string
)
{
const
url
=
`/api/perms/v1/users/assets/tree/?id=
${
id
}
`
;
return
this
.
http
.
get
<
Array
<
TreeNode
>>
(
url
);
}
getMyGrantedNodes
(
async
:
boolean
,
refresh
?:
boolean
)
{
const
cachePolicy
=
refresh
?
'2'
:
'1'
;
const
syncUrl
=
`/api/perms/v1/users/nodes-with-assets/tree/?cache_policy=
${
cachePolicy
}
`
;
...
...
@@ -442,3 +446,34 @@ export class TreeFilterService {
this
.
onFilter
.
emit
(
q
);
}
}
@
Injectable
()
export
class
ViewService
{
viewList
:
Array
<
View
>
=
[];
currentView
:
View
;
num
=
0
;
addView
(
view
:
View
)
{
this
.
num
+=
1
;
view
.
id
=
'View_'
+
this
.
num
;
this
.
viewList
.
push
(
view
);
}
activeView
(
view
:
View
)
{
this
.
viewList
.
forEach
((
v
,
k
)
=>
{
v
.
active
=
v
===
view
;
});
setTimeout
(()
=>
{
const
viewEl
=
document
.
getElementById
(
view
.
id
);
if
(
viewEl
)
{
viewEl
.
scrollIntoView
();
}
},
100
);
this
.
currentView
=
view
;
}
removeView
(
view
:
View
)
{
const
index
=
this
.
viewList
.
indexOf
(
view
);
this
.
viewList
.
splice
(
index
,
1
);
}
}
src/app/elements/asset-tree/asset-tree.component.ts
View file @
6bb66d4f
...
...
@@ -141,20 +141,6 @@ export class ElementAssetTreeComponent implements OnInit, OnDestroy {
initTree
()
{
this
.
initAssetsTree
();
this
.
initRemoteAppsTree
();
// Todo: connect to some asset, direct
this
.
activatedRoute
.
queryParams
.
subscribe
(
params
=>
{
const
login_to
=
params
[
'login_to'
];
if
(
login_to
&&
!
this
.
hasLoginTo
)
{
this
.
Data
.
forEach
(
t
=>
{
if
(
login_to
===
t
.
id
&&
t
.
isParent
===
false
)
{
this
.
hasLoginTo
=
true
;
this
.
connectAsset
(
t
);
return
;
}
});
}
});
}
connectAsset
(
node
:
TreeNode
)
{
...
...
src/app/elements/connect/connect.component.ts
View file @
6bb66d4f
import
{
Component
,
Input
,
OnInit
,
Output
,
Inject
,
OnDestroy
,
EventEmitter
}
from
'@angular/core'
;
import
{
Component
,
OnInit
,
Output
,
Inject
,
OnDestroy
,
EventEmitter
}
from
'@angular/core'
;
import
{
connectEvt
}
from
'@app/globals'
;
import
{
AppService
,
HttpService
,
LogService
,
NavService
}
from
'@app/app.service'
;
import
{
AppService
,
HttpService
,
LogService
}
from
'@app/app.service'
;
import
{
MAT_DIALOG_DATA
,
MatDialog
,
MatDialogRef
}
from
'@angular/material'
;
import
{
FormControl
,
Validators
}
from
'@angular/forms'
;
import
{
ActivatedRoute
}
from
'@angular/router'
;
import
{
SystemUser
,
TreeNode
,
Asset
}
from
'@app/model'
;
import
{
View
}
from
'@app/model'
;
import
*
as
jQuery
from
'jquery/dist/jquery.min'
;
declare
var
$
:
any
;
@
Component
({
selector
:
'elements-connect'
,
...
...
@@ -41,6 +38,20 @@ export class ElementConnectComponent implements OnInit, OnDestroy {
}
}
});
this
.
activatedRoute
.
queryParams
.
subscribe
(
params
=>
{
const
login_to
=
params
[
'login_to'
];
if
(
login_to
&&
!
this
.
hasLoginTo
)
{
this
.
_http
.
filterMyGrantedAssetsById
(
login_to
).
subscribe
(
nodes
=>
{
if
(
nodes
.
length
===
1
)
{
this
.
hasLoginTo
=
true
;
const
node
=
nodes
[
0
];
this
.
Connect
(
node
);
}
}
);
}
});
}
ngOnDestroy
():
void
{
connectEvt
.
unsubscribe
();
...
...
src/app/elements/content-window/content-window.component.ts
View file @
6bb66d4f
...
...
@@ -29,10 +29,6 @@ export class ElementContentViewComponent implements OnInit {
}
static
DisconnectAll
()
{
// for (let i = 0; i < viewList.List.length; i++) {
// Todo:
// ContentComponent.TerminalDisconnect(i);
// }
}
constructor
()
{
...
...
src/app/elements/content/content.component.ts
View file @
6bb66d4f
import
{
Component
,
ElementRef
,
OnInit
,
ViewChild
}
from
'@angular/core'
;
import
{
View
,
ViewAction
}
from
'@app/model'
;
import
{
ViewService
}
from
'@app/app.service'
;
@
Component
({
selector
:
'elements-content'
,
...
...
@@ -8,7 +9,8 @@ import {View, ViewAction} from '@app/model';
})
export
class
ElementContentComponent
implements
OnInit
{
@
ViewChild
(
'tabs'
)
tabsRef
:
ElementRef
;
viewList
:
Array
<
View
>
=
[];
viewList
:
Array
<
View
>
;
hasLoginTo
=
false
;
static
DisconnectAll
()
{
}
...
...
@@ -17,16 +19,17 @@ export class ElementContentComponent implements OnInit {
return
(
this
.
viewList
.
length
+
1
)
*
151
+
10
;
}
constructor
()
{
constructor
(
private
viewSrv
:
ViewService
)
{
}
ngOnInit
()
{
this
.
viewList
=
this
.
viewSrv
.
viewList
;
}
onNewView
(
view
)
{
this
.
scrollToEnd
();
setTimeout
(()
=>
{
this
.
view
List
.
push
(
view
);
this
.
view
Srv
.
addView
(
view
);
this
.
setViewActive
(
view
);
},
100
);
}
...
...
@@ -45,9 +48,7 @@ export class ElementContentComponent implements OnInit {
}
setViewActive
(
view
)
{
this
.
viewList
.
forEach
((
v
,
k
)
=>
{
v
.
active
=
v
===
view
;
});
this
.
viewSrv
.
activeView
(
view
);
}
closeView
(
view
)
{
...
...
@@ -61,7 +62,7 @@ export class ElementContentComponent implements OnInit {
nextActiveView
=
this
.
viewList
[
index
+
1
];
}
}
this
.
view
List
.
splice
(
index
,
1
);
this
.
view
Srv
.
removeView
(
view
);
if
(
nextActiveView
)
{
this
.
setViewActive
(
nextActiveView
);
}
...
...
src/app/elements/guacamole/guacamole.component.ts
View file @
6bb66d4f
...
...
@@ -84,11 +84,6 @@ export class ElementGuacamoleComponent implements OnInit {
return
this
.
sanitizer
.
bypassSecurityTrustResourceUrl
(
url
);
}
Disconnect
()
{
// TOdo:
return
;
}
active
()
{
this
.
el
.
nativeElement
.
focus
();
}
...
...
src/app/elements/left-bar/left-bar.component.ts
View file @
6bb66d4f
import
{
Component
,
Inject
,
OnInit
,
ViewChild
,
ElementRef
}
from
'@angular/core'
;
import
{
AppService
,
HttpService
,
LogService
}
from
'@app/app.service'
;
// import {ElementTreeFilterComponent} from '../tree-filter/tree-filter.component';
import
{
Component
}
from
'@angular/core'
;
import
{
DataStore
}
from
'@app/globals'
;
import
{
version
}
from
'@src/environments/environment'
;
import
{
MAT_DIALOG_DATA
,
MatDialog
,
MatDialogRef
}
from
'@angular/material'
;
export
interface
Node
{
id
:
string
;
name
:
string
;
comment
:
string
;
title
:
string
;
isParent
:
boolean
;
pId
:
string
;
open
:
boolean
;
iconSkin
:
string
;
meta
:
object
;
}
export
class
Host
{
name
:
string
;
id
:
string
;
type
:
string
;
}
@
Component
({
selector
:
'elements-left-bar'
,
templateUrl
:
'./left-bar.component.html'
,
styleUrls
:
[
'./left-bar.component.scss'
],
// providers: [ElementTreeFilterComponent]
})
export
class
ElementLeftBarComponent
{
DataStore
=
DataStore
;
version
=
version
;
q
:
string
;
event
:
MouseEvent
;
clientX
=
0
;
clientY
=
0
;
TooltipPosition
=
'above'
;
static
Reload
()
{
}
static
Hide
()
{
DataStore
.
showLeftBar
=
false
;
DataStore
.
Nav
.
map
(
function
(
value
,
i
)
{
value
[
'children'
].
forEach
((
v
,
key
)
=>
{
if
(
DataStore
.
Nav
[
i
][
'children'
][
key
][
'id'
]
===
'HideLeftManager'
)
{
DataStore
.
Nav
[
i
][
'children'
][
key
]
=
{
'id'
:
'ShowLeftManager'
,
'click'
:
'ShowLeft'
,
'name'
:
'Show left manager'
};
}
});
});
window
.
dispatchEvent
(
new
Event
(
'resize'
));
}
static
Show
()
{
DataStore
.
showLeftBar
=
true
;
DataStore
.
Nav
.
map
(
function
(
value
,
i
)
{
value
[
'children'
].
forEach
((
v
,
key
)
=>
{
if
(
DataStore
.
Nav
[
i
][
'children'
][
key
][
'id'
]
===
'ShowLeftManager'
)
{
DataStore
.
Nav
[
i
][
'children'
][
key
]
=
{
'id'
:
'HideLeftManager'
,
'click'
:
'HideLeft'
,
'name'
:
'Hide left manager'
};
}
});
});
window
.
dispatchEvent
(
new
Event
(
'resize'
));
}
constructor
(
private
_appService
:
AppService
,
private
_http
:
HttpService
,
private
_logger
:
LogService
,
public
_dialog
:
MatDialog
,
)
{
this
.
_logger
.
log
(
'nav.ts:NavComponent'
);
}
Search
(
q
)
{
// Todo:
// this._search.Search(q);
}
onRightClick
(
event
:
MouseEvent
):
void
{
this
.
clientX
=
event
.
clientX
;
this
.
clientY
=
event
.
clientY
;
}
}
src/app/elements/nav/nav.component.css
View file @
6bb66d4f
...
...
@@ -71,7 +71,7 @@
display
:
flex
;
}
.nav
.dropdown-content
li
a
{
.nav
.dropdown-content
a
{
padding
:
6px
14px
6px
25px
;
white-space
:
nowrap
;
font-family
:
'Roboto'
,
sans-serif
;
...
...
@@ -110,7 +110,14 @@
background-color
:
darkgray
;
}
.nav
ul
li
.active
{
box-sizing
:
border-box
;
border-bottom
:
3px
solid
#19aa8d
!important
;
.flag
{
display
:
none
;
color
:
#19aa8d
;
padding-right
:
10px
;
}
.active
.flag
{
display
:
inline
;
}
src/app/elements/nav/nav.component.html
View file @
6bb66d4f
...
...
@@ -12,5 +12,17 @@
</li>
</ul>
</li>
<li
[
ngClass
]="{'
dropdown
'
:
true
}"
>
<a>
{{"Tab List"|trans}}
</a>
<ul
*
ngIf=
"viewList.length > 0"
[
ngClass
]="{'
dropdown-content
'
:
true
}"
>
<ng-container
*
ngFor=
"let v of viewList, let idx = index"
>
<li
*
ngIf=
"v.nick!=null"
[
ngClass
]="{'
disconnected
'
:
!
v
.
connected
,
'
hidden
'
:
v
.
closed
!=
false
}"
>
<span
[
class
.
active
]="
v
.
active
"
>
<a
id=
"{{ 'tab' + idx }}"
(
click
)="
_viewSrv
.
activeView
(
v
)"
><i
class=
"fa fa-circle flag"
></i>
{{v.nick}}
</a>
</span>
</li>
</ng-container>
</ul>
</li>
</ul>
</div>
src/app/elements/nav/nav.component.ts
View file @
6bb66d4f
...
...
@@ -6,11 +6,12 @@
* @author liuzheng <liuzheng712@gmail.com>
*/
import
{
Component
,
Inject
,
OnInit
}
from
'@angular/core'
;
import
{
HttpService
,
LocalStorageService
,
NavService
,
LogService
}
from
'@app/app.service'
;
import
{
HttpService
,
LocalStorageService
,
NavService
,
LogService
,
ViewService
}
from
'@app/app.service'
;
import
{
DataStore
,
i18n
}
from
'@app/globals'
;
import
*
as
jQuery
from
'jquery/dist/jquery.min.js'
;
import
{
ElementLeftBarComponent
}
from
'@app/elements/left-bar/left-bar.component'
;
import
{
MAT_DIALOG_DATA
,
MatDialog
,
MatDialogRef
}
from
'@angular/material'
;
declare
let
layer
:
any
;
import
{
View
}
from
'@app/model'
;
@
Component
({
selector
:
'elements-nav'
,
...
...
@@ -21,6 +22,7 @@ export class ElementNavComponent implements OnInit {
DataStore
=
DataStore
;
navs
:
Array
<
any
>
;
_asyncTree
=
false
;
viewList
:
Array
<
View
>
;
static
Hide
()
{
jQuery
(
'elements-nav'
).
hide
();
...
...
@@ -30,13 +32,13 @@ export class ElementNavComponent implements OnInit {
private
_logger
:
LogService
,
public
_dialog
:
MatDialog
,
public
_navSvc
:
NavService
,
public
_viewSrv
:
ViewService
,
private
_localStorage
:
LocalStorageService
)
{
this
.
_logger
.
log
(
'nav.ts:NavComponent'
);
this
.
getNav
();
}
ngOnInit
()
{
this
.
navs
=
this
.
getNav
();
this
.
viewList
=
this
.
_viewSrv
.
viewList
;
}
get
treeLoadAsync
()
{
...
...
@@ -54,12 +56,12 @@ export class ElementNavComponent implements OnInit {
break
;
}
case
'HideLeft'
:
{
DataStore
.
showLeftBar
=
false
;
ElementLeftBarComponent
.
Hide
()
;
this
.
refreshNav
();
break
;
}
case
'ShowLeft'
:
{
DataStore
.
showLeftBar
=
true
;
ElementLeftBarComponent
.
Show
()
;
this
.
refreshNav
();
break
;
}
...
...
@@ -90,11 +92,6 @@ export class ElementNavComponent implements OnInit {
window
.
dispatchEvent
(
new
Event
(
'resize'
));
break
;
}
case
'Disconnect'
:
{
if
(
!
confirm
(
'断开当前连接?'
))
{
return
}
}
case
'Reconnect'
:
{
break
;
}
...
...
src/app/elements/term/term.component.ts
View file @
6bb66d4f
...
...
@@ -21,7 +21,7 @@ export class ElementTermComponent implements OnInit, AfterViewInit {
@
Output
()
winSizeChangeTrigger
=
new
EventEmitter
<
Array
<
number
>>
();
winSizeChange$
:
Observable
<
any
>
;
constructor
(
private
_logger
:
LogService
){
constructor
(
private
_logger
:
LogService
)
{
}
...
...
@@ -33,6 +33,7 @@ export class ElementTermComponent implements OnInit, AfterViewInit {
this
.
winSizeChange$
.
subscribe
(()
=>
{
this
.
_logger
.
debug
(
'Get win size change event'
);
this
.
resizeTerm
();
});
}
...
...
src/app/pages/main/main.component.css
View file @
6bb66d4f
...
...
@@ -22,7 +22,7 @@
/*}*/
.left-side
{
min-width
:
100px
;
}
.handle
{
...
...
@@ -31,7 +31,7 @@
user-select
:
none
;
z-index
:
9999
;
height
:
5px
;
width
:
1px
;
width
:
0
;
display
:
block
;
padding
:
0
;
margin
:
0
;
...
...
src/app/pages/main/main.component.html
View file @
6bb66d4f
<elements-nav></elements-nav>
<div
fxLayout=
"row"
id=
"container"
ngxSplit=
"row"
>
<div
fxFlex=
"20%"
fxFlexFill
maxBasis=
"400px"
minBasis=
"100px"
ngxSplitArea
*
ngIf=
"DataStore.showLeftBar"
class=
"left-side"
>
<div
fxFlex=
"20%"
fxFlexFill
ngxSplitArea
[
ngStyle
]="{'
display
'
:
store
.
showLeftBar
?
''
:
'
none
',
'
min-width
'
:
store
.
showLeftBar
?
'
100px
'
:
''}"
class=
"left-side"
>
<elements-left-bar></elements-left-bar>
</div>
<div
ngxSplitHandle
(
mouseup
)="
dragSplitBtn
($
event
)"
class=
"handle handle-row"
*
ngIf=
"DataStore.showLeftBar
"
>
<div
ngxSplitHandle
(
mouseup
)="
dragSplitBtn
($
event
)"
class=
"handle handle-row"
[
ngStyle
]="{'
display
'
:
store
.
showLeftBar
?
''
:
'
none
'}
"
>
<i
class=
"fa fa-window-minimize"
style=
"color: white"
></i>
</div>
<div
[
fxFlex
]="
DataS
tore
.
showLeftBar
?
'
80
%'
:
'
100
%'"
fxFlexFill
ngxSplitArea
class=
"content"
>
<div
[
fxFlex
]="
s
tore
.
showLeftBar
?
'
80
%'
:
'
100
%'"
fxFlexFill
ngxSplitArea
class=
"content"
>
<elements-content></elements-content>
</div>
</div>
src/app/pages/main/main.component.ts
View file @
6bb66d4f
...
...
@@ -9,7 +9,7 @@ import {environment} from '@src/environments/environment';
})
export
class
PageMainComponent
implements
OnInit
{
User
=
User
;
DataS
tore
=
DataStore
;
s
tore
=
DataStore
;
ngOnInit
():
void
{
}
...
...
src/assets/i18n/zh.json
View file @
6bb66d4f
...
...
@@ -69,5 +69,6 @@
"load tree async"
:
"异步加载树"
,
"load tree sync"
:
"同步加载树"
,
"show manual password"
:
"显示手动密码窗"
,
"skip manual password"
:
"跳过手动密码窗"
"skip manual password"
:
"跳过手动密码窗"
,
"tab list"
:
"窗口列表"
}
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