Skip to content

Commit

Permalink
rebase-issue: fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
Sebastian-Haehnlein committed Jan 9, 2020
1 parent 8dff3af commit 17b617f
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ import {
} from 'rxjs/operators';

import { MAIN_NAVIGATION_MAX_SUB_CATEGORIES_DEPTH } from 'ish-core/configurations/injection-keys';
import { categoryRoute } from 'ish-core/custom-routes/category.route';
import { CategoryHelper } from 'ish-core/models/category/category.model';
import { CategoriesService } from 'ish-core/services/categories/categories.service';
import { LoadMoreProducts } from 'ish-core/store/shopping/product-listing';
Expand All @@ -30,7 +31,6 @@ import {

import * as actions from './categories.actions';
import * as selectors from './categories.selectors';
import { categoryRoute } from 'ish-core/custom-routes/category.route';

@Injectable()
export class CategoriesEffects {
Expand Down
2 changes: 1 addition & 1 deletion src/app/core/store/shopping/products/products.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ import {
withLatestFrom,
} from 'rxjs/operators';

import { productRoute } from 'ish-core/custom-routes/product.route';
import { ProductListingMapper } from 'ish-core/models/product-listing/product-listing.mapper';
import { VariationProductMaster } from 'ish-core/models/product/product-variation-master.model';
import { VariationProduct } from 'ish-core/models/product/product-variation.model';
Expand All @@ -37,7 +38,6 @@ import {

import * as productsActions from './products.actions';
import * as productsSelectors from './products.selectors';
import { productRoute } from 'ish-core/custom-routes/product.route';

@Injectable()
export class ProductsEffects {
Expand Down
5 changes: 2 additions & 3 deletions src/app/extensions/seo/store/seo/seo.effects.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,17 @@ import { TranslateService } from '@ngx-translate/core';
import { mapToParam, ofRoute } from 'ngrx-router';
import { debounce, distinctUntilKeyChanged, first, map, switchMap, tap } from 'rxjs/operators';

import { categoryRoute } from 'ish-core/custom-routes/category.route';
import { generateProductRoute, productRoute } from 'ish-core/custom-routes/product.route';
import { ProductHelper } from 'ish-core/models/product/product.helper';
import { SeoAttributes } from 'ish-core/models/seo-attribute/seo-attribute.model';
import { generateProductRoute } from 'ish-core/route-formats/product.route';
import { getSelectedContentPage } from 'ish-core/store/content/pages';
import { CategoriesActionTypes } from 'ish-core/store/shopping/categories';
import { getSelectedCategory } from 'ish-core/store/shopping/categories/categories.selectors';
import { getSelectedProduct } from 'ish-core/store/shopping/products';
import { mapToPayload, mapToProperty, whenTruthy } from 'ish-core/utils/operators';

import { SeoActionTypes, SetSeoAttributes } from './seo.actions';
import { categoryRoute } from 'ish-core/custom-routes/category.route';
import { productRoute } from 'ish-core/custom-routes/product.route';

@Injectable()
export class SeoEffects {
Expand Down

0 comments on commit 17b617f

Please sign in to comment.