Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PERFORMA_REPLICA
Overview
Overview
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
Muhammad Usman
PERFORMA_REPLICA
Commits
067d4d4a
Commit
067d4d4a
authored
Jul 27, 2020
by
Muhammad Usman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
work history ui updates
parent
c4b83938
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
37 additions
and
17 deletions
+37
-17
work-history.component.html
...y/career-history/work-history/work-history.component.html
+2
-2
job-details.component.html
...areer-web/jobs/job/job-details/job-details.component.html
+1
-1
job-details.component.scss
...areer-web/jobs/job/job-details/job-details.component.scss
+0
-0
job-details.component.ts
...-career-web/jobs/job/job-details/job-details.component.ts
+9
-9
job-profile.component.html
...areer-web/jobs/job/job-profile/job-profile.component.html
+3
-0
job-profile.component.scss
...areer-web/jobs/job/job-profile/job-profile.component.scss
+0
-0
job-profile.component.ts
...-career-web/jobs/job/job-profile/job-profile.component.ts
+15
-0
jobs.module.ts
frontend/angular/src/app/my-career-web/jobs/jobs.module.ts
+4
-2
jobs.routing.ts
frontend/angular/src/app/my-career-web/jobs/jobs.routing.ts
+3
-3
No files found.
frontend/angular/src/app/my-career-web/career-history/career-history/work-history/work-history.component.html
View file @
067d4d4a
...
@@ -32,7 +32,7 @@
...
@@ -32,7 +32,7 @@
<div
class=
"col-md-4"
*
ngIf=
"experience.Employer"
>
<div
class=
"col-md-4"
*
ngIf=
"experience.Employer"
>
<div
class=
"row"
>
<div
class=
"row"
>
<div
class=
"col-md-6 form-group"
>
<div
class=
"col-md-6 form-group"
>
<label>
Start
</label>
<label>
Start
month
</label>
<app-form-control>
<app-form-control>
<p-calendar
[
maxDate
]="
experience
.
EndMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
StartMonthField
"
required
name=
"StartMonth{{i}}"
>
<p-calendar
[
maxDate
]="
experience
.
EndMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
StartMonthField
"
required
name=
"StartMonth{{i}}"
>
</p-calendar>
</p-calendar>
...
@@ -40,7 +40,7 @@
...
@@ -40,7 +40,7 @@
</div>
</div>
<div
class=
"col-md-6 form-group"
*
ngIf=
"!experience.StillInRole"
>
<div
class=
"col-md-6 form-group"
*
ngIf=
"!experience.StillInRole"
>
<label>
End
</label>
<label>
End
month
</label>
<app-form-control>
<app-form-control>
<p-calendar
[
minDate
]="
experience
.
StartMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
EndMonthField
"
required
name=
"EndMonth{{i}}"
>
<p-calendar
[
minDate
]="
experience
.
StartMonthField
"
placeholder=
"MM/YYYY"
dateFormat=
"mm/yy"
view=
"month"
[
icon
]="
true
"
[(
ngModel
)]="
experience
.
EndMonthField
"
required
name=
"EndMonth{{i}}"
>
</p-calendar>
</p-calendar>
...
...
frontend/angular/src/app/my-career-web/jobs/job/job.component.html
→
frontend/angular/src/app/my-career-web/jobs/job/job
-details/job-details
.component.html
View file @
067d4d4a
...
@@ -15,7 +15,7 @@
...
@@ -15,7 +15,7 @@
<div
class=
"row mt-3"
>
<div
class=
"row mt-3"
>
<div
class=
"col-md-6 form-group"
>
<div
class=
"col-md-6 form-group"
>
<label>
Job Title
</label>
<label>
Job Title
</label>
<app-form-control>
<app-form-control>
`
<input
type=
"text"
class=
"form-control"
placeholder=
"Enter job title"
required
name=
"JobTitle"
<input
type=
"text"
class=
"form-control"
placeholder=
"Enter job title"
required
name=
"JobTitle"
[(
ngModel
)]="
applicantJob
.
JobTitle
"
>
[(
ngModel
)]="
applicantJob
.
JobTitle
"
>
</app-form-control>
</app-form-control>
...
...
frontend/angular/src/app/my-career-web/jobs/job/job.component.scss
→
frontend/angular/src/app/my-career-web/jobs/job/job
-details/job-details
.component.scss
View file @
067d4d4a
File moved
frontend/angular/src/app/my-career-web/jobs/job/job.component.ts
→
frontend/angular/src/app/my-career-web/jobs/job/job
-details/job-details
.component.ts
View file @
067d4d4a
import
{
Component
,
OnInit
,
ViewChild
}
from
'@angular/core'
;
import
{
Component
,
OnInit
,
ViewChild
}
from
'@angular/core'
;
import
{
BaseComponent
}
from
'../../base/base.component'
;
import
{
BaseComponent
}
from
'../../
../
base/base.component'
;
import
{
ApplicantJobModel
}
from
'../../models/applicant-job.model'
;
import
{
ApplicantJobModel
}
from
'../../
../
models/applicant-job.model'
;
import
{
JobService
}
from
'../../services/job.service'
;
import
{
JobService
}
from
'../../
../
services/job.service'
;
import
{
takeUntil
}
from
'rxjs/operators'
;
import
{
takeUntil
}
from
'rxjs/operators'
;
import
{
UtilsService
}
from
'../../../oneit/services/utils.service'
;
import
{
UtilsService
}
from
'../../../
../
oneit/services/utils.service'
;
import
{
ActivatedRoute
,
Router
}
from
'@angular/router'
;
import
{
ActivatedRoute
,
Router
}
from
'@angular/router'
;
import
{
NgForm
}
from
'@angular/forms'
;
import
{
NgForm
}
from
'@angular/forms'
;
import
{
HelperService
}
from
'../../services/helper.service'
;
import
{
HelperService
}
from
'../../
../
services/helper.service'
;
import
{
ToasterService
}
from
'../../services/toaster.service'
;
import
{
ToasterService
}
from
'../../
../
services/toaster.service'
;
@
Component
({
@
Component
({
selector
:
'app-job'
,
selector
:
'app-job'
,
templateUrl
:
'./job.component.html'
,
templateUrl
:
'./job
-details
.component.html'
,
styleUrls
:
[
'./job.component.scss'
]
styleUrls
:
[
'./job
-details
.component.scss'
]
})
})
export
class
JobComponent
extends
BaseComponent
implements
OnInit
{
export
class
Job
Details
Component
extends
BaseComponent
implements
OnInit
{
applicantJob
:
ApplicantJobModel
=
new
ApplicantJobModel
();
applicantJob
:
ApplicantJobModel
=
new
ApplicantJobModel
();
applicantJobId
;
applicantJobId
;
...
...
frontend/angular/src/app/my-career-web/jobs/job/job-profile/job-profile.component.html
0 → 100644
View file @
067d4d4a
<p>
job-profile works!
</p>
frontend/angular/src/app/my-career-web/jobs/job/job-profile/job-profile.component.scss
0 → 100644
View file @
067d4d4a
frontend/angular/src/app/my-career-web/jobs/job/job-profile/job-profile.component.ts
0 → 100644
View file @
067d4d4a
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-job-profile'
,
templateUrl
:
'./job-profile.component.html'
,
styleUrls
:
[
'./job-profile.component.scss'
]
})
export
class
JobProfileComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
frontend/angular/src/app/my-career-web/jobs/jobs.module.ts
View file @
067d4d4a
...
@@ -3,8 +3,9 @@ import { CommonModule } from '@angular/common';
...
@@ -3,8 +3,9 @@ import { CommonModule } from '@angular/common';
import
{
JobsRouting
}
from
'./jobs.routing'
;
import
{
JobsRouting
}
from
'./jobs.routing'
;
import
{
JobsComponent
}
from
'./jobs/jobs.component'
;
import
{
JobsComponent
}
from
'./jobs/jobs.component'
;
import
{
JobComponent
}
from
'./job/job.component'
;
import
{
McSharedModule
}
from
'../mc-shared/mc-shared.module'
;
import
{
McSharedModule
}
from
'../mc-shared/mc-shared.module'
;
import
{
JobDetailsComponent
}
from
'./job/job-details/job-details.component'
;
import
{
JobProfileComponent
}
from
'./job/job-profile/job-profile.component'
;
@
NgModule
({
@
NgModule
({
imports
:
[
imports
:
[
...
@@ -14,7 +15,8 @@ import { McSharedModule } from '../mc-shared/mc-shared.module';
...
@@ -14,7 +15,8 @@ import { McSharedModule } from '../mc-shared/mc-shared.module';
],
],
declarations
:
[
declarations
:
[
JobsComponent
,
JobsComponent
,
JobComponent
JobDetailsComponent
,
JobProfileComponent
]
]
})
})
export
class
JobsModule
{
export
class
JobsModule
{
...
...
frontend/angular/src/app/my-career-web/jobs/jobs.routing.ts
View file @
067d4d4a
import
{
NgModule
}
from
'@angular/core'
;
import
{
NgModule
}
from
'@angular/core'
;
import
{
Routes
,
RouterModule
}
from
'@angular/router'
;
import
{
Routes
,
RouterModule
}
from
'@angular/router'
;
import
{
JobsComponent
}
from
'./jobs/jobs.component'
;
import
{
JobsComponent
}
from
'./jobs/jobs.component'
;
import
{
Job
Component
}
from
'./job/job
.component'
;
import
{
Job
DetailsComponent
}
from
'./job/job-details/job-details
.component'
;
const
routes
:
Routes
=
[
const
routes
:
Routes
=
[
{
{
...
@@ -10,11 +10,11 @@ const routes: Routes = [
...
@@ -10,11 +10,11 @@ const routes: Routes = [
},
},
{
{
path
:
'new'
,
path
:
'new'
,
component
:
JobComponent
component
:
Job
Details
Component
},
},
{
{
path
:
':id'
,
path
:
':id'
,
component
:
JobComponent
component
:
Job
Details
Component
}
}
];
];
...
...
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