Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
M
myAppraisal
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Registry
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
angular
myAppraisal
Commits
a04ed934
Commit
a04ed934
authored
Jan 29, 2025
by
Ooh-Ao
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
no message
parent
7ebf57cb
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
21 additions
and
21 deletions
+21
-21
login-page.component.ts
src/app/authentication/login-page/login-page.component.ts
+9
-10
navservice.ts
src/app/shared/services/navservice.ts
+12
-11
No files found.
src/app/authentication/login-page/login-page.component.ts
View file @
a04ed934
...
...
@@ -14,12 +14,12 @@ export class LoginPageComponent {
disabled
=
''
;
active
:
any
;
constructor
(@
Inject
(
DOCUMENT
)
constructor
(@
Inject
(
DOCUMENT
)
private
document
:
Document
,
private
elementRef
:
ElementRef
,
private
renderer
:
Renderer2
,
private
formBuilder
:
FormBuilder
,
private
router
:
Router
,
private
renderer
:
Renderer2
,
private
formBuilder
:
FormBuilder
,
private
router
:
Router
,
private
authservice
:
AuthService
,)
{
const
bodyElement
=
this
.
renderer
.
selectRootElement
(
'body'
,
true
);
this
.
renderer
.
setAttribute
(
bodyElement
,
'class'
,
'cover1 justify-center'
);
...
...
@@ -39,7 +39,7 @@ export class LoginPageComponent {
const
html
:
any
=
this
.
elementRef
.
nativeElement
.
ownerDocument
.
documentElement
;
html
.
removeAttribute
(
'data-header-styles'
,
'light'
);
//html.removeAttribute('data-nav-layout','vertical');
html
.
classList
.
add
(
'h-full'
,
'light'
);
if
(
localStorage
.
getItem
(
'synto-header-mode'
)
==
'dark'
)
{
...
...
@@ -66,7 +66,7 @@ export class LoginPageComponent {
this
.
authservice
.
loginWithEmail
(
this
.
email
,
this
.
password
)
.
then
(()
=>
{
this
.
router
.
navigate
([
'/
dashboard/sales
'
]);
this
.
router
.
navigate
([
'/
self-evaluation
'
]);
console
.
clear
();
})
.
catch
((
_error
:
any
)
=>
{
...
...
@@ -109,7 +109,7 @@ export class LoginPageComponent {
this
.
loginForm
.
controls
[
'username'
].
value
===
'spruko@admin.com'
&&
this
.
loginForm
.
controls
[
'password'
].
value
===
'sprukoadmin'
)
{
this
.
router
.
navigate
([
'/
dashboard/sales
'
]);
this
.
router
.
navigate
([
'/
self-evaluation
'
]);
}
else
{
this
.
error
=
'Please check email and passowrd'
;
}
...
...
@@ -130,8 +130,8 @@ export class LoginPageComponent {
const
html
:
any
=
this
.
elementRef
.
nativeElement
.
ownerDocument
.
documentElement
;
html
.
classList
.
remove
(
'h-full'
,
'dark'
);
}
const
authe
:
any
=
document
.
querySelector
(
'.h-full'
);
authe
.
removeAttribute
(
'class'
,
'h-full'
);
}
}
\ No newline at end of file
}
src/app/shared/services/navservice.ts
View file @
a04ed934
...
...
@@ -87,6 +87,17 @@ export class NavService implements OnDestroy {
MENUITEMS
:
Menu
[]
=
[
{
title
:
'การประเมินผล'
,
type
:
'sub'
,
selected
:
false
,
active
:
false
,
path
:
'/supervisor-evaluation'
,
children
:
[
{
path
:
'/self-evaluation'
,
title
:
'ประเมินตนเอง'
,
type
:
'link'
},
{
path
:
'/supervisor-evaluation'
,
title
:
'ประเมินโดยหัวหน้า'
,
type
:
'link'
},
],
},
{
title
:
'การจัดการข้อมูลองค์กร'
,
type
:
'sub'
,
selected
:
false
,
...
...
@@ -148,17 +159,7 @@ export class NavService implements OnDestroy {
],
},
{
title
:
'การประเมินผล'
,
type
:
'sub'
,
selected
:
false
,
active
:
false
,
path
:
'/supervisor-evaluation'
,
children
:
[
{
path
:
'/self-evaluation'
,
title
:
'ประเมินตนเอง'
,
type
:
'link'
},
{
path
:
'/supervisor-evaluation'
,
title
:
'ประเมินโดยหัวหน้า'
,
type
:
'link'
},
],
},
];
// Array
items
=
new
BehaviorSubject
<
Menu
[]
>
(
this
.
MENUITEMS
);
...
...
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