Angular 2 RxJS наблюдаемый пропуск подписки при первом вызове

#angular #rxjs #observable #angular2-services

#angular #rxjs #наблюдаемый #angular2-сервисы

Вопрос:

Я использую общую службу для обмена данными между несколькими компонентами, которые находятся в модальном окне, и я пытаюсь получить значение, которое задается в модальном компоненте, в котором оно находится.

Однако, когда я подписываюсь на функцию getSelectedSourceField в моей службе, она пропускает подписку в первый раз, когда пользователь выбирает источник в модальном, но в последующие разы он работает так, как ожидалось (т. Е. Возвращает выбранное поле при успешном обратном вызове).

Есть мысли?

Мой сервис:

 import { Injectable } from '@angular/core';
import { Subject } from 'rxjs/Subject';
import { Observable } from 'rxjs/Observable';
import { Source, SourceField } from '../source/source';
import { DataService } from './dataService';

@Injectable()
export class SFieldSelectService {
private selectedSource: Source = null;
private selectedSourceField: SourceField = null;
private filteredSourceFields: SourceField[] = [];

private selectedSourceSubj = new Subject<Source>();
private selectedSourceFieldSubj = new Subject<SourceField>();
private filteredSourceFieldsSubj = new Subject<SourceField[]>();
private hasSourceFieldSubj = new Subject<boolean>();

//Source methods
setSelectedSource(source: Source) {
    this.selectedSource = source;
    this.selectedSourceSubj.next(source);

    //Set the availabel source fields
    this._dataService.GetSingle('SourceSelect', this.selectedSource["sourceId"])
        .subscribe(sourceFields => {
            this.filteredSourceFields = sourceFields
            this.filteredSourceFieldsSubj.next(sourceFields);
        });   

    this.hasSourceFieldSubj.next(false);
}
getSelectedSource(): Observable<Source> {
    return this.selectedSourceSubj.asObservable();
}

//Sourcefield methods
setSelectedSourceField(sourceField: SourceField) {
    this.selectedSourceField = sourceField;
    this.selectedSourceFieldSubj.next(sourceField);

    this.hasSourceFieldSubj.next(true);
}
getSelectedSourceField(): Observable<SourceField> {
    return this.selectedSourceFieldSubj.asObservable();
}

//Filtered sourcefields
getFilteredSourceFields(): Observable<SourceField[]> {
    return this.filteredSourceFieldsSubj.asObservable();
}

//Whether or not the modal has a selected sourcefield
hasSelectedSourceField(): Observable<boolean> {
    return this.hasSourceFieldSubj.asObservable();
}

constructor(private _dataService: DataService) {}
}
  

Компонент, на который я подписываюсь:

 import { Component, ViewChild, OnInit } from '@angular/core';
import { DataService } from '../../services/dataService';
import { Response, Headers } from '@angular/http';
import { Condition } from '../transformation';
import { NgbModal, ModalDismissReasons } from '@ng-bootstrap/ng-bootstrap';
import { SourceFieldListComponent } from '../../source/selection/sourcefield-list.component';
import { SourceListComponent } from '../../source/selection/source-list.component';
import { SFieldSelectService } from '../../services/source-select.service';

@Component({
    selector: 'condition-addedit',
    templateUrl: 'app/transformation/condition/condition-addedit.component.html',
    providers: [DataService, SFieldSelectService]
})
export class ConditionAddEditComponent implements OnInit {
    active: boolean = true;
    condSeqCount = 1;
    selectingCondition: Condition;
    hasSelectedSourceField: boolean = false;

    //List of Conditions currently in the add/edit list
    public conditions: Condition[] = [];

    //Modal Functions
    closeResult: string;
    openSourceSelect(content, condition) {
        this.selectingCondition = condition;
        this.modalService.open(content, { size: 'lg' }).result.then((result) => {
            //User selected source field in modal
            if (result == 'Select SField') {
                this.selectService.getSelectedSourceField()
                    .subscribe(sourceField => { <--- SKIPS THIS THE FIRST TIME BUT NOT AFTER
                        alert(sourceField.name);
                        this.selectingCondition.sourceField = sourceField
                    }
                , (error) => alert(error));
            }
        }, (reason) => {
            this.closeResult = `Dismissed ${this.getDismissReason(reason)}`;
        });
    }

    private getDismissReason(reason: any): string {
        if (reason === ModalDismissReasons.ESC) {
            return 'by pressing ESC';
        } else if (reason === ModalDismissReasons.BACKDROP_CLICK) {
            return 'by clicking on a backdrop';
        } else {
            return `with: ${reason}`;
        }
    }

    //Add a new condition to the list of conditions
    addCondition() {
        this.conditions.push(new Condition(this.condSeqCount  , (this.condSeqCount == 1) ? '' : 'or', '', '', '', '', null));
    }

    constructor(private _dataService: DataService, private modalService: NgbModal, private selectService: SFieldSelectService) {}
    ngOnInit(): void {
        this.selectService.hasSelectedSourceField().subscribe(hasSelectedSourceField => this.hasSelectedSourceField = hasSelectedSourceField);
    }
}
  

Комментарии:

1. Я должен отметить, что я смог обойти это, просто подписавшись в ngOnInit и присвоив переменной, а затем установив для нее «selectingCondition». Мне все еще любопытно, что происходит в моем примере вопроса.

Ответ №1:

Возможно ngOnInit , это лучший подход, не уверен. Но причиной проблемы является использование Subject . Как только вы что-то испускаете, если во время эмиссии никто не подписан, эта эмиссия теряется навсегда.

Это ситуация, когда ReplaySubject может быть полезно. Это позволяет вам устанавливать размер буфера, и если в буфере что-то есть, когда кто-то подписывается, все они выходят из этого буфера. Во многих случаях вам просто нужно, чтобы размер буфера был равен единице, так как вы хотите, чтобы буферизовался только последний (самый последний).

 import { ReplaySubject } from 'rxjs/ReplaySubject';

class Service {
  something = new ReplaySubject<Source>(1); // buffer size 1
}
  

При этом вам не нужно пытаться сохранить поле в службе самого последнего выпуска. Он уже сохранен в самой теме.

Комментарии:

1. ReplaySubject, похоже, работает. Я думаю, что я продолжу и буду придерживаться ngOnInit , хотя, поскольку это кажется своего рода лучшей практикой, но я переключусь на ReplaySubject для этого свойства. Спасибо!

Ответ №2:

Как предполагает @peeskillet, использование Subject может быть проблемой здесь. Для случая использования, который вы описали, я обычно использую BehaviorSubject . Вы можете инициализировать его с null помощью, если нет лучшего варианта.

На самом деле, я действительно думаю, что в большинстве случаев вы хотите использовать BehaviorSubject над Subject (или любым другим * Subject), если вы разделяете значения между компонентами / службами. Это просто дает вам «текущее / последнее» значение. Вот хороший пост в angular-university по этому поводу.