Commit 57ec1af2 authored by Arun Kumar's avatar Arun Kumar
Browse files

addedd styles and configs

Showing with 245 additions and 485 deletions
+245 -485
......@@ -30,7 +30,10 @@
"src/assets"
],
"styles": [
"src/styles.scss"
"src/styles.scss",
"node_modules/primeng/resources/themes/lara-light-blue/theme.css",
"node_modules/primeng/resources/primeng.min.css",
"node_modules/primeicons/primeicons.css"
],
"scripts": []
},
......
This diff is collapsed.
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { ManageExamsModuleModule } from './modules/manage-exams-module/manage-exams-module.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
AppRoutingModule,
BrowserAnimationsModule,
ManageExamsModuleModule,
],
providers: [],
bootstrap: [AppComponent]
......
<app-shared-table> </app-shared-table>
\ No newline at end of file
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { ExamsTableComponent } from './exams-table.component';
describe('ExamsTableComponent', () => {
let component: ExamsTableComponent;
let fixture: ComponentFixture<ExamsTableComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ ExamsTableComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(ExamsTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
import { SharedTableComponent } from '../../../shared/components/shared-table/shared-table.component';
@Component({
selector: 'app-exams-table',
templateUrl: './exams-table.component.html',
styleUrls: ['./exams-table.component.scss']
})
export class ExamsTableComponent {
}
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { ExamsTableComponent } from './components/exams-table/exams-table.component';
const routes: Routes = [
{
path: 'manage-exams', component: ExamsTableComponent, pathMatch: 'full',
},
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class ManageExamsModuleRoutingModule { }
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { ManageExamsModuleRoutingModule } from './manage-exams-module-routing.module';
import { ExamsTableComponent } from './components/exams-table/exams-table.component';
import { SharedModule } from '../shared/shared.module';
@NgModule({
declarations: [
ExamsTableComponent
],
imports: [
CommonModule,
ManageExamsModuleRoutingModule,
SharedModule
]
})
export class ManageExamsModuleModule { }
<p-table [columns]="cols" [value]="value"
styleClass="p-datatable-striped"
[tableStyle]="{'min-width': '60rem'}">
<ng-template pTemplate="caption">
<div class="flex align-items-center justify-content-between">
Products
</div>
</ng-template>
<ng-template pTemplate="header" let-columns>
<tr>
<th *ngFor="let col of columns">
{{ col.header }}
</th>
</tr>
</ng-template>
<ng-template pTemplate="body" let-product>
<tr>
<td>{{product.name}}</td>
<td><img [src]="'https://primefaces.org/cdn/primeng/images/demo/product/' + product.image" [alt]="product.name" width="100" class="shadow-4" /></td>
<td>{{product.price | currency:'USD'}}</td>
<td>{{product.category}}</td>
<td>{{product.category}}</td>
</tr>
</ng-template>
<ng-template pTemplate="summary">
<div class="flex align-items-center justify-content-between">
In total there are ... products.
</div>
</ng-template>
</p-table>
\ No newline at end of file
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { SharedTableComponent } from './shared-table.component';
describe('SharedTableComponent', () => {
let component: SharedTableComponent;
let fixture: ComponentFixture<SharedTableComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
declarations: [ SharedTableComponent ]
})
.compileComponents();
fixture = TestBed.createComponent(SharedTableComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});
import { Component } from '@angular/core';
export interface TableProps {
id?: string;
code?: string;
name?: string;
description?: string;
price?: number;
quantity?: number;
inventoryStatus?: string;
category?: string;
image?: string;
rating?: number;
}
interface Column {
field: string;
header: string;
}
@Component({
selector: 'app-shared-table',
templateUrl: './shared-table.component.html',
styleUrls: ['./shared-table.component.scss']
})
export class SharedTableComponent {
constructor() {}
value!: TableProps[];
cols!: Column[];
ngOnInit() {
this.value = [{
id: '1000',
code: 'f230fh0g3',
name: 'Bamboo Watch',
description: 'Product Description',
image: 'bamboo-watch.jpg',
price: 65,
category: 'Accessories',
quantity: 24,
inventoryStatus: 'INSTOCK',
rating: 5
}, {
id: '1000',
code: 'f230fh0g3',
name: 'Bamboo Watch',
description: 'Product Description',
image: 'bamboo-watch.jpg',
price: 65,
category: 'Accessories',
quantity: 24,
inventoryStatus: 'INSTOCK',
rating: 5
},
{
id: '1000',
code: 'f230fh0g3',
name: 'Bamboo Watch',
description: 'Product Description',
image: 'bamboo-watch.jpg',
price: 65,
category: 'Accessories',
quantity: 24,
inventoryStatus: 'INSTOCK',
rating: 5
},]
this.cols = [
{ field: 'code', header: 'Code' },
{ field: 'name', header: 'Name' },
{ field: 'category', header: 'Category' },
{ field: 'quantity', header: 'Quantity' },
];
};
}
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';
import { TableModule } from 'primeng/table';
import { SharedTableComponent } from './components/shared-table/shared-table.component';
@NgModule({
declarations: [
SharedTableComponent
],
imports: [
CommonModule,
TableModule
],
exports :
[
SharedTableComponent
]
})
export class SharedModule { }
/* You can add global styles to this file, and also import other style files */
body {
font-family: var(--font-family);
}
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment