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
8e8f96bd
Commit
8e8f96bd
authored
Jul 28, 2020
by
Muhammad Usman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
job flow components added
parent
e01b02b7
Hide whitespace changes
Inline
Side-by-side
Showing
19 changed files
with
90 additions
and
11 deletions
+90
-11
career-history.module.ts
...app/my-career-web/career-history/career-history.module.ts
+0
-2
job-education.component.html
...r-web/jobs/job/job-education/job-education.component.html
+3
-0
job-education.component.scss
...r-web/jobs/job/job-education/job-education.component.scss
+0
-0
job-education.component.ts
...eer-web/jobs/job/job-education/job-education.component.ts
+15
-0
job-profile.component.scss
...areer-web/jobs/job/job-profile/job-profile.component.scss
+0
-1
job-referees.component.html
...eer-web/jobs/job/job-referees/job-referees.component.html
+3
-0
job-referees.component.scss
...eer-web/jobs/job/job-referees/job-referees.component.scss
+0
-0
job-referees.component.ts
...areer-web/jobs/job/job-referees/job-referees.component.ts
+15
-0
job-skills.component.html
...-career-web/jobs/job/job-skills/job-skills.component.html
+3
-0
job-skills.component.scss
...-career-web/jobs/job/job-skills/job-skills.component.scss
+0
-0
job-skills.component.ts
...my-career-web/jobs/job/job-skills/job-skills.component.ts
+15
-0
job-work-history.component.html
...jobs/job/job-work-history/job-work-history.component.html
+3
-0
job-work-history.component.scss
...jobs/job/job-work-history/job-work-history.component.scss
+0
-0
job-work-history.component.ts
...b/jobs/job/job-work-history/job-work-history.component.ts
+15
-0
jobs.module.ts
frontend/angular/src/app/my-career-web/jobs/jobs.module.ts
+9
-1
mc-shared.module.ts
...gular/src/app/my-career-web/mc-shared/mc-shared.module.ts
+3
-1
templates.component.html
...y-career-web/mc-shared/templates/templates.component.html
+0
-0
templates.component.scss
...y-career-web/mc-shared/templates/templates.component.scss
+0
-0
templates.component.ts
.../my-career-web/mc-shared/templates/templates.component.ts
+6
-6
No files found.
frontend/angular/src/app/my-career-web/career-history/career-history.module.ts
View file @
8e8f96bd
...
@@ -8,7 +8,6 @@ import { WorkHistoryComponent } from './career-history/work-history/work-history
...
@@ -8,7 +8,6 @@ import { WorkHistoryComponent } from './career-history/work-history/work-history
import
{
EducationComponent
}
from
'./career-history/education/education.component'
;
import
{
EducationComponent
}
from
'./career-history/education/education.component'
;
import
{
SkillsComponent
}
from
'./career-history/skills/skills.component'
;
import
{
SkillsComponent
}
from
'./career-history/skills/skills.component'
;
import
{
ReferencesComponent
}
from
'./career-history/references/references.component'
;
import
{
ReferencesComponent
}
from
'./career-history/references/references.component'
;
import
{
TemplatesComponent
}
from
'./career-history/templates/templates.component'
;
import
{
PublishComponent
}
from
'./career-history/publish/publish.component'
;
import
{
PublishComponent
}
from
'./career-history/publish/publish.component'
;
@
NgModule
({
@
NgModule
({
...
@@ -23,7 +22,6 @@ import { PublishComponent } from './career-history/publish/publish.component';
...
@@ -23,7 +22,6 @@ import { PublishComponent } from './career-history/publish/publish.component';
EducationComponent
,
EducationComponent
,
SkillsComponent
,
SkillsComponent
,
ReferencesComponent
,
ReferencesComponent
,
TemplatesComponent
,
PublishComponent
PublishComponent
]
]
})
})
...
...
frontend/angular/src/app/my-career-web/jobs/job/job-education/job-education.component.html
0 → 100644
View file @
8e8f96bd
<p>
job-education works!
</p>
frontend/angular/src/app/my-career-web/jobs/job/job-education/job-education.component.scss
0 → 100644
View file @
8e8f96bd
frontend/angular/src/app/my-career-web/jobs/job/job-education/job-education.component.ts
0 → 100644
View file @
8e8f96bd
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-job-education'
,
templateUrl
:
'./job-education.component.html'
,
styleUrls
:
[
'./job-education.component.scss'
]
})
export
class
JobEducationComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
frontend/angular/src/app/my-career-web/jobs/job/job-profile/job-profile.component.scss
View file @
8e8f96bd
...
@@ -16,7 +16,6 @@
...
@@ -16,7 +16,6 @@
height
:
250px
;
height
:
250px
;
flex-direction
:
column
;
flex-direction
:
column
;
transition
:
.3s
;
transition
:
.3s
;
cursor
:
pointer
;
border-radius
:
8px
;
border-radius
:
8px
;
&
.selected
{
&
.selected
{
...
...
frontend/angular/src/app/my-career-web/jobs/job/job-referees/job-referees.component.html
0 → 100644
View file @
8e8f96bd
<p>
job-referees works!
</p>
frontend/angular/src/app/my-career-web/jobs/job/job-referees/job-referees.component.scss
0 → 100644
View file @
8e8f96bd
frontend/angular/src/app/my-career-web/jobs/job/job-referees/job-referees.component.ts
0 → 100644
View file @
8e8f96bd
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-job-referees'
,
templateUrl
:
'./job-referees.component.html'
,
styleUrls
:
[
'./job-referees.component.scss'
]
})
export
class
JobRefereesComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
frontend/angular/src/app/my-career-web/jobs/job/job-skills/job-skills.component.html
0 → 100644
View file @
8e8f96bd
<p>
job-skills works!
</p>
frontend/angular/src/app/my-career-web/jobs/job/job-skills/job-skills.component.scss
0 → 100644
View file @
8e8f96bd
frontend/angular/src/app/my-career-web/jobs/job/job-skills/job-skills.component.ts
0 → 100644
View file @
8e8f96bd
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-job-skills'
,
templateUrl
:
'./job-skills.component.html'
,
styleUrls
:
[
'./job-skills.component.scss'
]
})
export
class
JobSkillsComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
frontend/angular/src/app/my-career-web/jobs/job/job-work-history/job-work-history.component.html
0 → 100644
View file @
8e8f96bd
<p>
job-work-history works!
</p>
frontend/angular/src/app/my-career-web/jobs/job/job-work-history/job-work-history.component.scss
0 → 100644
View file @
8e8f96bd
frontend/angular/src/app/my-career-web/jobs/job/job-work-history/job-work-history.component.ts
0 → 100644
View file @
8e8f96bd
import
{
Component
,
OnInit
}
from
'@angular/core'
;
@
Component
({
selector
:
'app-job-work-history'
,
templateUrl
:
'./job-work-history.component.html'
,
styleUrls
:
[
'./job-work-history.component.scss'
]
})
export
class
JobWorkHistoryComponent
implements
OnInit
{
constructor
()
{
}
ngOnInit
()
{
}
}
frontend/angular/src/app/my-career-web/jobs/jobs.module.ts
View file @
8e8f96bd
...
@@ -6,6 +6,10 @@ import { JobsComponent } from './jobs/jobs.component';
...
@@ -6,6 +6,10 @@ import { JobsComponent } from './jobs/jobs.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
{
JobDetailsComponent
}
from
'./job/job-details/job-details.component'
;
import
{
JobProfileComponent
}
from
'./job/job-profile/job-profile.component'
;
import
{
JobProfileComponent
}
from
'./job/job-profile/job-profile.component'
;
import
{
JobWorkHistoryComponent
}
from
'./job/job-work-history/job-work-history.component'
;
import
{
JobEducationComponent
}
from
'./job/job-education/job-education.component'
;
import
{
JobSkillsComponent
}
from
'./job/job-skills/job-skills.component'
;
import
{
JobRefereesComponent
}
from
'./job/job-referees/job-referees.component'
;
@
NgModule
({
@
NgModule
({
imports
:
[
imports
:
[
...
@@ -16,7 +20,11 @@ import { JobProfileComponent } from './job/job-profile/job-profile.component';
...
@@ -16,7 +20,11 @@ import { JobProfileComponent } from './job/job-profile/job-profile.component';
declarations
:
[
declarations
:
[
JobsComponent
,
JobsComponent
,
JobDetailsComponent
,
JobDetailsComponent
,
JobProfileComponent
JobProfileComponent
,
JobWorkHistoryComponent
,
JobEducationComponent
,
JobSkillsComponent
,
JobRefereesComponent
]
]
})
})
export
class
JobsModule
{
export
class
JobsModule
{
...
...
frontend/angular/src/app/my-career-web/mc-shared/mc-shared.module.ts
View file @
8e8f96bd
...
@@ -16,6 +16,7 @@ import { IntroLetterService } from '../services/intro-letter.service';
...
@@ -16,6 +16,7 @@ import { IntroLetterService } from '../services/intro-letter.service';
import
{
TableModule
}
from
'primeng/table'
;
import
{
TableModule
}
from
'primeng/table'
;
import
{
IconReplacerDirective
}
from
'./icon-replacer.directive'
;
import
{
IconReplacerDirective
}
from
'./icon-replacer.directive'
;
import
{
JobService
}
from
'../services/job.service'
;
import
{
JobService
}
from
'../services/job.service'
;
import
{
TemplatesComponent
}
from
'./templates/templates.component'
;
const
MODULES
=
[
const
MODULES
=
[
ReactiveFormsModule
,
ReactiveFormsModule
,
...
@@ -29,7 +30,8 @@ const MODULES = [
...
@@ -29,7 +30,8 @@ const MODULES = [
const
COMPONENTS
=
[
const
COMPONENTS
=
[
FormControlComponent
,
FormControlComponent
,
OverlayComponent
,
OverlayComponent
,
PersonalDetailsComponent
PersonalDetailsComponent
,
TemplatesComponent
];
];
const
DIRECTIVES
=
[
const
DIRECTIVES
=
[
...
...
frontend/angular/src/app/my-career-web/
career-history/career-history
/templates/templates.component.html
→
frontend/angular/src/app/my-career-web/
mc-shared
/templates/templates.component.html
View file @
8e8f96bd
File moved
frontend/angular/src/app/my-career-web/
career-history/career-history
/templates/templates.component.scss
→
frontend/angular/src/app/my-career-web/
mc-shared
/templates/templates.component.scss
View file @
8e8f96bd
File moved
frontend/angular/src/app/my-career-web/
career-history/career-history
/templates/templates.component.ts
→
frontend/angular/src/app/my-career-web/
mc-shared
/templates/templates.component.ts
View file @
8e8f96bd
import
{
Component
,
EventEmitter
,
OnInit
,
Output
}
from
'@angular/core'
;
import
{
Component
,
EventEmitter
,
OnInit
,
Output
}
from
'@angular/core'
;
import
{
BaseComponent
}
from
'../../
../
base/base.component'
;
import
{
BaseComponent
}
from
'../../base/base.component'
;
import
{
CareerProfileModel
}
from
'../../
../
models/career-profile.model'
;
import
{
CareerProfileModel
}
from
'../../models/career-profile.model'
;
import
{
PersonalDetailsService
}
from
'../../
../
services/personal-details.service'
;
import
{
PersonalDetailsService
}
from
'../../services/personal-details.service'
;
import
{
UtilsService
}
from
'../../../
../
oneit/services/utils.service'
;
import
{
UtilsService
}
from
'../../../oneit/services/utils.service'
;
import
{
takeUntil
}
from
'rxjs/operators'
;
import
{
takeUntil
}
from
'rxjs/operators'
;
import
{
environment
}
from
'../../../../
../
environments/environment'
;
import
{
environment
}
from
'../../../../environments/environment'
;
import
{
SaveService
}
from
'../../../
../
oneit/services/save.service'
;
import
{
SaveService
}
from
'../../../oneit/services/save.service'
;
@
Component
({
@
Component
({
selector
:
'app-templates'
,
selector
:
'app-templates'
,
...
...
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