Skip to content
GitLab
Explore
Projects
Groups
Topics
Snippets
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
UPSMF
upsmf-examinations-module
Commits
df6651d8
Commit
df6651d8
authored
1 year ago
by
Arun Kumar
Browse files
Options
Download
Patches
Plain Diff
bare min table reused for csv upload
parent
fa736eb7
master
bulk-upload-csv
examcycleValiation
No related merge requests found
Changes
9
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html
+4
-4
...ms-module/components/exam-cycle/exam-cycle.component.html
src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html
+3
-1
...-module/components/exams-table/exams-table.component.html
src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts
+26
-12
...ms-module/components/exams-table/exams-table.component.ts
src/app/modules/manage-exams-module/manage-exams-module.module.ts
+2
-2
...modules/manage-exams-module/manage-exams-module.module.ts
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.html
+16
-0
...hared-dialog-overlay/shared-dialog-overlay.component.html
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.scss
+0
-0
...hared-dialog-overlay/shared-dialog-overlay.component.scss
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.spec.ts
+23
-0
...ed-dialog-overlay/shared-dialog-overlay.component.spec.ts
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.ts
+34
-0
.../shared-dialog-overlay/shared-dialog-overlay.component.ts
src/app/modules/shared/shared.module.ts
+3
-1
src/app/modules/shared/shared.module.ts
with
111 additions
and
20 deletions
+111
-20
src/app/modules/manage-exams-module/components/exam-cycle/exam-cycle.component.html
+
4
−
4
View file @
df6651d8
...
...
@@ -71,22 +71,22 @@
<mat-datepicker
#picker3
></mat-datepicker>
</mat-form-field>
</div>
<div
class=
"flex flex-column "
>
<!--
<div class="flex flex-column ">
<h4 style="font-weight:400;margin-bottom:1rem;margin-top:2rem">Start time</h4>
<mat-form-field appearance="outline" style="width:16.5rem">
<mat-label>hh:mm</mat-label>
<input class="custom-timepicker"style="border:none;"matTimepicker #t="matTimepicker" [strict]="false" id="timepicker-example" mode="12h">
<mat-icon matSuffix (click)="t.showDialog()">access_time</mat-icon>
</mat-form-field>
</div>
<div
class=
"flex flex-column"
>
</div>
-->
<!--
<div class="flex flex-column">
<h4 style="font-weight:400;margin-bottom:1rem;margin-top:2rem">End time</h4>
<mat-form-field appearance="outline" style="width:16.5rem">
<mat-label>hh:mm</mat-label>
<input class="custom-timepicker"style="border:none;"matTimepicker #t="matTimepicker" [strict]="false" id="timepicker-example" mode="12h">
<mat-icon matSuffix (click)="t.showDialog()">access_time</mat-icon>
</mat-form-field>
</div>
</div>
-->
</div>
<div
class=
"flex flex-row "
style=
"gap: 1.5rem"
>
<div
class=
"flex flex-column"
>
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/manage-exams-module/components/exams-table/exams-table.component.html
+
3
−
1
View file @
df6651d8
<div
style=
"margin: 105px;"
>
<h2
class=
"mx-auto m3 p3"
i18n
>
{{msgs.manageExamsText}}
</h2>
</div>
<div
class=
"fixed right-0 "
>
<button
mat-button
color=
"primary"
mat-raised-button
(click)=
"openBulkUploadDialog()"
>
Bulk Upload
</button>
</div>
<app-shared-table
[tableColumns]=
"examsTableColumns"
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/manage-exams-module/components/exams-table/exams-table.component.ts
+
26
−
12
View file @
df6651d8
import
{
Component
}
from
'
@angular/core
'
;
import
{
Component
,
Inject
}
from
'
@angular/core
'
;
import
{
MatDialog
}
from
'
@angular/material/dialog
'
;
import
{
msgs
}
from
"
../../../../../locale/en
"
;
import
{
TableColumn
}
from
'
../../../shared/components/shared-table/shared-table.component
'
;
import
{
SharedDialogOverlayComponent
}
from
'
../../../shared/components/shared-dialog-overlay/shared-dialog-overlay.component
'
;
export
interface
Exams
{
examId
:
string
;
...
...
@@ -23,6 +25,7 @@ export class ExamsTableComponent {
exams
:
Exams
[];
examsTableColumns
:
TableColumn
[];
constructor
(
public
dialog
:
MatDialog
){}
ngOnInit
():
void
{
this
.
initializeColumns
();
...
...
@@ -81,7 +84,6 @@ export class ExamsTableComponent {
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -89,7 +91,6 @@ export class ExamsTableComponent {
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -97,7 +98,6 @@ export class ExamsTableComponent {
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -105,7 +105,6 @@ export class ExamsTableComponent {
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -113,14 +112,12 @@ export class ExamsTableComponent {
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
examId
:
"
M SC ( NURSING ) - SEMESTER 2
"
,
description
:
'
M SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -128,7 +125,6 @@ export class ExamsTableComponent {
description
:
'
B SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -136,7 +132,6 @@ export class ExamsTableComponent {
description
:
'
B SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -144,7 +139,6 @@ export class ExamsTableComponent {
description
:
'
B SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -152,7 +146,6 @@ export class ExamsTableComponent {
description
:
'
B SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
},
{
...
...
@@ -160,7 +153,6 @@ export class ExamsTableComponent {
description
:
'
B SC ( NURSING )
'
,
startDate
:
"
23-06-2023
"
,
endDate
:
"
23-12-2023
"
,
isActive
:
true
}
];
...
...
@@ -169,4 +161,26 @@ export class ExamsTableComponent {
removeItem
(
e
:
Event
)
{
console
.
log
(
e
)
}
openBulkUploadDialog
():
void
{
const
dialogRef
=
this
.
dialog
.
open
(
SharedDialogOverlayComponent
,
{
data
:
{
exams
:
this
.
exams
,
examsTableColumns
:
this
.
examsTableColumns
},
maxWidth
:
'
800vw
'
,
maxHeight
:
'
100vh
'
,
height
:
'
80%
'
,
width
:
'
80%
'
,
disableClose
:
true
});
dialogRef
.
afterClosed
().
subscribe
(
result
=>
{
console
.
log
(
'
The dialog was closed
'
);
//this.animal = result;
});
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/modules/manage-exams-module/manage-exams-module.module.ts
+
2
−
2
View file @
df6651d8
...
...
@@ -6,7 +6,7 @@ import { ExamsTableComponent } from './components/exams-table/exams-table.compon
import
{
SharedModule
}
from
'
../shared/shared.module
'
;
import
{
ExamCycleComponent
}
from
'
./components/exam-cycle/exam-cycle.component
'
;
import
{
MaterialModule
}
from
'
src/material/material.module
'
;
import
{
MatTimepickerModule
}
from
'
mat-timepicker
'
;
//
import { MatTimepickerModule } from 'mat-timepicker';
...
...
@@ -21,7 +21,7 @@ import { MatTimepickerModule } from 'mat-timepicker';
ManageExamsModuleRoutingModule
,
SharedModule
,
MaterialModule
,
MatTimepickerModule
,
//
MatTimepickerModule,
...
...
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.html
0 → 100644
+
16
−
0
View file @
df6651d8
<h1
mat-dialog-title
>
Bulk Upload Exam Cycles
</h1>
<div
mat-dialog-content
>
<app-shared-table
[tableColumns]=
"examsTableColumns"
[tableData]=
"exams"
[isPageable]=
"false"
>
</app-shared-table>
</div>
<div
mat-dialog-actions
>
<button
mat-button
(click)=
"onNoClick()"
>
Cancel
</button>
<button
mat-button
[mat-dialog-close]=
"data"
cdkFocusInitial
>
Add Exam Cycle
</button>
</div>
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.scss
0 → 100644
+
0
−
0
View file @
df6651d8
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.spec.ts
0 → 100644
+
23
−
0
View file @
df6651d8
import
{
ComponentFixture
,
TestBed
}
from
'
@angular/core/testing
'
;
import
{
SharedDialogOverlayComponent
}
from
'
./shared-dialog-overlay.component
'
;
describe
(
'
SharedDialogOverlayComponent
'
,
()
=>
{
let
component
:
SharedDialogOverlayComponent
;
let
fixture
:
ComponentFixture
<
SharedDialogOverlayComponent
>
;
beforeEach
(
async
()
=>
{
await
TestBed
.
configureTestingModule
({
declarations
:
[
SharedDialogOverlayComponent
]
})
.
compileComponents
();
fixture
=
TestBed
.
createComponent
(
SharedDialogOverlayComponent
);
component
=
fixture
.
componentInstance
;
fixture
.
detectChanges
();
});
it
(
'
should create
'
,
()
=>
{
expect
(
component
).
toBeTruthy
();
});
});
This diff is collapsed.
Click to expand it.
src/app/modules/shared/components/shared-dialog-overlay/shared-dialog-overlay.component.ts
0 → 100644
+
34
−
0
View file @
df6651d8
import
{
Component
,
Inject
}
from
'
@angular/core
'
;
import
{
MAT_DIALOG_DATA
,
MatDialogRef
}
from
'
@angular/material/dialog
'
;
import
{
TableColumn
}
from
'
../../../shared/components/shared-table/shared-table.component
'
;
import
{
Exams
}
from
'
../../../manage-exams-module/components/exams-table/exams-table.component
'
;
export
interface
DialogData
{
examsTableColumns
:
[];
exams
:
[];
}
@
Component
({
selector
:
'
app-shared-dialog-overlay
'
,
templateUrl
:
'
./shared-dialog-overlay.component.html
'
,
styleUrls
:
[
'
./shared-dialog-overlay.component.scss
'
]
})
export
class
SharedDialogOverlayComponent
{
exams
:
Exams
[];
examsTableColumns
:
TableColumn
[];
constructor
(
public
dialogRef
:
MatDialogRef
<
SharedDialogOverlayComponent
>
,
@
Inject
(
MAT_DIALOG_DATA
)
public
data
:
DialogData
,
)
{}
ngOnInit
():
void
{
this
.
exams
=
this
.
data
.
exams
;
console
.
log
(
this
.
exams
)
this
.
examsTableColumns
=
this
.
data
.
examsTableColumns
;
console
.
log
(
this
.
examsTableColumns
)
}
onNoClick
():
void
{
this
.
dialogRef
.
close
();
}
}
This diff is collapsed.
Click to expand it.
src/app/modules/shared/shared.module.ts
+
3
−
1
View file @
df6651d8
...
...
@@ -7,13 +7,15 @@ import { SharedTableComponent } from './components/shared-table/shared-table.com
import
{
MaterialModule
}
from
'
../../../material/material.module
'
;
import
{
HeaderComponent
}
from
'
./components/header/header.component
'
;
import
{
SharedDialogOverlayComponent
}
from
'
./components/shared-dialog-overlay/shared-dialog-overlay.component
'
;
@
NgModule
({
declarations
:
[
SharedTableComponent
,
HeaderComponent
HeaderComponent
,
SharedDialogOverlayComponent
],
imports
:
[
CommonModule
,
...
...
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment
Menu
Explore
Projects
Groups
Topics
Snippets