feat: Erstellungsformular für Gruppen hinzugefügt.

This commit is contained in:
Developer 02 2024-08-01 10:54:06 +02:00
parent 44b58c733f
commit 2add7f94e8
5 changed files with 41 additions and 1 deletions

View File

@ -0,0 +1,23 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { GroupFormComponent } from './group-form.component';
describe('GroupFormComponent', () => {
let component: GroupFormComponent;
let fixture: ComponentFixture<GroupFormComponent>;
beforeEach(async () => {
await TestBed.configureTestingModule({
imports: [GroupFormComponent]
})
.compileComponents();
fixture = TestBed.createComponent(GroupFormComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,12 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-group-form',
standalone: true,
imports: [],
templateUrl: './group-form.component.html',
styleUrl: './group-form.component.scss'
})
export class GroupFormComponent {
}

View File

@ -4,6 +4,8 @@ import { UserTableComponent } from '../../components/tables/user-table/user-tabl
import { RefreshService } from '../../services/refresh.service'; import { RefreshService } from '../../services/refresh.service';
import { MatTabsModule } from '@angular/material/tabs'; import { MatTabsModule } from '@angular/material/tabs';
import { GuiSelectedRow } from '@generic-ui/ngx-grid'; import { GuiSelectedRow } from '@generic-ui/ngx-grid';
import { CreationService } from '../../services/creation.service';
import { GroupFormComponent } from '../forms/group-form/group-form.component';
@Component({ @Component({
standalone: true, standalone: true,
@ -15,7 +17,7 @@ import { GuiSelectedRow } from '@generic-ui/ngx-grid';
export class GroupComponent implements AfterViewInit { export class GroupComponent implements AfterViewInit {
initWithoutData = () => { } initWithoutData = () => { }
private sGroupId = null; private sGroupId = null;
constructor(private refreshService: RefreshService) { } constructor(private refreshService: RefreshService, private creationService: CreationService) { }
ngAfterViewInit(): void { ngAfterViewInit(): void {
this.refreshService.removeAll() this.refreshService.removeAll()
@ -24,6 +26,8 @@ export class GroupComponent implements AfterViewInit {
if(this.sGroupId) if(this.sGroupId)
this.userTable.fetchDataByGroupId(this.sGroupId); this.userTable.fetchDataByGroupId(this.sGroupId);
}); });
this.creationService.component = GroupFormComponent
this.creationService.openDialog();
} }
@ViewChild("groupTable") groupTable!: GroupTableComponent; @ViewChild("groupTable") groupTable!: GroupTableComponent;