//Service
@Output() change: EventEmitter[];
categoryModalisOpen[] = [];
toggleCreateCategoryModal(key) {
this.categoryModalisOpen[key] = !this.categoryModalisOpen[key];
this.change[key].emit(this.categoryModalisOpen[key]);
}
//BtnComponent
@ViewChild('modalComponentInstance') // # ссылка на компонент нужного модального окна
modalComponentInstance;
constructor(
private CreateCategoryModalService: CreateCategoryModalService
) { }
openCreteCatModal() {
let key = this.modalComponentInstance.key; // Нужно подключить инстанс окна которое должно открываться по текущей кнопке
this.CreateCategoryModalService.toggleCreateCategoryModal(key);
}
//ModalComponent
creatCatIsOpen = false;
key: number;
ngOnInit() {
this.key = this.CreateCategoryModalService.categoryModalisOpen.lenght + 1;
this.CreateCategoryModalService.change[this.key].subscribe(isOpen => {
this.creatCatIsOpen = isOpen;
});
}
constructor(
private CreateCategoryModalService: CreateCategoryModalService
) { }
this.sprBitTypes.unshift(this.sprBitType); // unshift вместо push
private isOpenForm: boolean = false;
// Добавление записи
createPost() {
this.isOpenForm = true;
this.sprBitType = new SprBitType(0,"",false,0);
this.sprBitTypes.push(this.sprBitType);
this.isNewRecord = true;
}
saveSprBitType() {
this.isOpenForm = false;
........................
........................
}
cancelSprBitType() {
this.isOpenForm = false;
........................
........................
}
<button class="btn -primary" (click)="createPost()" [attr.disable]="isOpenForm">Добавить</button>
@ContentChildren(Book) books: QueryList<Book>;
RewriteEngine On
RewriteCond %{REQUEST_URI} !^/index.html$
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !\.(css|gif|ico|jpg|js|png|swf|txt|svg|woff|ttf|eot)$
RewriteRule . index.html [L]