job group

This commit is contained in:
CHIEFSOFT\ameye
2023-12-09 08:53:00 -05:00
parent c758e8b44b
commit 090a127eaa
8 changed files with 109 additions and 5 deletions
@@ -0,0 +1,14 @@
<ion-grid>
<ion-row>
<ion-col>
You do not have any group currently
</ion-col>
</ion-row>
<ion-row>
<ion-col>
<ion-button size="small" shape="round" expand="block">Create a group</ion-button>
</ion-col>
</ion-row>
</ion-grid>
@@ -0,0 +1,24 @@
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { IonicModule } from '@ionic/angular';
import { JobGroupComponent } from './job-group.component';
describe('JobGroupComponent', () => {
let component: JobGroupComponent;
let fixture: ComponentFixture<JobGroupComponent>;
beforeEach(waitForAsync(() => {
TestBed.configureTestingModule({
declarations: [ JobGroupComponent ],
imports: [IonicModule.forRoot()]
}).compileComponents();
fixture = TestBed.createComponent(JobGroupComponent);
component = fixture.componentInstance;
fixture.detectChanges();
}));
it('should create', () => {
expect(component).toBeTruthy();
});
});
@@ -0,0 +1,19 @@
import { Component, OnInit } from '@angular/core';
import {SessionDataProviderService} from "../../store/session-data-provider.service";
import {WrenchService} from "../../services/wrench.service";
import {LoadingController} from "@ionic/angular";
@Component({
selector: 'app-job-group',
templateUrl: './job-group.component.html',
styleUrls: ['./job-group.component.scss'],
})
export class JobGroupComponent implements OnInit {
constructor( public sessionDataProviderService: SessionDataProviderService,
private wrenchService: WrenchService,
private loadingCtrl: LoadingController) { }
ngOnInit() {}
}