redux-observable を使用してエピックを作成しており、複数のフィルター (oftype) を使用してエピックを作成しようとしています。以下は私のサンプルコードです
export const landingEpic = action$ => {
console.log('inside landing epic');
return action$.ofType('APPLY_SHOPPING_LISTS').map(() => (
{
type: 'APPLYING_SHOPPING_LISTS',
})
);
return action$.ofType('APPLIED_SHOPPING_LIST'){
//here I want to return something else
}
}
ただし、1 つのエピックに 2 つの return メソッドを含めることはできませんか?