graycoreio/daffodil

View on GitHub

Showing 122 of 124 total issues

Function daffMagentoTransformTotals has 32 lines of code (exceeds 25 allowed). Consider refactoring.
Open

export function daffMagentoTransformTotals(totals: MagentoOrderTotal): DaffOrderTotal[] {
  return [
    {
      label: 'Subtotal',
      type: DaffOrderTotalTypeEnum.Subtotal,
Severity: Minor
Found in libs/order/driver/magento/2-4-1/src/transforms/responses/order.ts - About 1 hr to fix

    Function daffOperationStateSelectorFactory has 32 lines of code (exceeds 25 allowed). Consider refactoring.
    Open

    export function daffOperationStateSelectorFactory <
      TRootState,
      TState extends DaffOperationState = DaffOperationState
    >(
      selectState: Selector<TRootState, TState>,
    Severity: Minor
    Found in libs/core/state/src/operation/selectors.ts - About 1 hr to fix

      Function transformTotals has 32 lines of code (exceeds 25 allowed). Consider refactoring.
      Open

      function transformTotals(totals: {
        grand_total: number;
        subtotal: number;
        shipping: number;
        discount: number;
      Severity: Minor
      Found in libs/order/driver/magento/2-4-0/src/transforms/responses/order.ts - About 1 hr to fix

        Function getByUrl has 32 lines of code (exceeds 25 allowed). Consider refactoring.
        Open

          getByUrl(categoryRequest: DaffCategoryUrlRequest): Observable<DaffGetCategoryResponse> {
            return combineLatest([
              this.apollo.query<MagentoCategoryUrlResolverResponse>({
                query: MagentoResolveCategoryUrl,
                variables: {
        Severity: Minor
        Found in libs/category/driver/magento/src/category.service.ts - About 1 hr to fix

          Function constructor has 32 lines of code (exceeds 25 allowed). Consider refactoring.
          Open

            constructor(
              injector: Injector,
              private componentFactoryResolver: ComponentFactoryResolver,
            ) {
              [
          Severity: Minor
          Found in apps/design-land/src/app/app.component.ts - About 1 hr to fix

            Function forRoot has 31 lines of code (exceeds 25 allowed). Consider refactoring.
            Open

              static forRoot(config: DaffProductMagentoDriverConfig = MAGENTO_PRODUCT_CONFIG_DEFAULT): ModuleWithProviders<DaffProductMagentoDriverModule> {
                return {
                  ngModule: DaffProductMagentoDriverModule,
                  providers: [
                    {
            Severity: Minor
            Found in libs/product/driver/magento/src/product-driver.module.ts - About 1 hr to fix

              Function transformItem has 31 lines of code (exceeds 25 allowed). Consider refactoring.
              Open

              function transformItem(item: MagentoGraycoreOrderItem): DaffOrderItem {
                return {
                  id: null,
                  item_id: null,
                  type: DaffOrderItemType.Simple,
              Severity: Minor
              Found in libs/order/driver/magento/2-4-0/src/transforms/responses/order.ts - About 1 hr to fix

                Function delegateRequest has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                Open

                  private delegateRequest(reqInfo: RequestInfo) {
                    reqInfo.collection = this.carts;
                
                    switch (reqInfo.collectionName) {
                      case 'cart':
                Severity: Minor
                Found in libs/cart/driver/in-memory/src/backend/cart-root.service.ts - About 1 hr to fix

                  Function load has 30 lines of code (exceeds 25 allowed). Consider refactoring.
                  Open

                    load(name: string, script: DaffExternalScript): Observable<boolean> {
                      // Don't load the same script twice.
                      if(this.scriptMap.has(name)){
                        return this.scriptMap.get(name).subject;
                      }
                  Severity: Minor
                  Found in libs/core/external-script/src/external-script.service.ts - About 1 hr to fix

                    Function createBestSellersSelectors has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                    Open

                    const createBestSellersSelectors = <T extends DaffProduct>(): DaffBestSellersMemoizedSelectors<T> => {
                      const {
                        selectAllProducts,
                      } = getDaffProductEntitiesSelectors<T>();
                      const {

                      Function app has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                      Open

                      export function app(): express.Express {
                        const server = express();
                        const __filename = fileURLToPath(import.meta.url);
                        const __dirname = dirname(__filename);
                        const distFolder = join(__dirname, '../browser');
                      Severity: Minor
                      Found in apps/daffio/server/server.ts - About 1 hr to fix

                        Function createAuthorizeNetSelectors has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                        Open

                        const createAuthorizeNetSelectors = (): DaffAuthorizeNetMemoizedSelectors => {
                        
                          /**
                           * AuthorizeNet Feature State
                           */
                        Severity: Minor
                        Found in libs/authorizenet/state/src/selectors/authorize-net.selector.ts - About 1 hr to fix

                          Function createCategoryFeatureSelectors has 29 lines of code (exceeds 25 allowed). Consider refactoring.
                          Open

                          const createCategoryFeatureSelectors = <V extends DaffGenericCategory<V>>(): DaffCategoryEntitiesMemoizedSelectors<V> => {
                          
                            const entitiesSelectors = daffCategoryEntitiesAdapter<V>().getSelectors();
                            const categoryFeatureState = getDaffCategoryFeatureSelector<V>().selectCategoryFeatureState;
                          
                          

                            Function createCategoryPageSelectors has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                            Open

                            const createCategoryPageSelectors = <V extends DaffGenericCategory<V>>(): DaffCategoryPageMemoizedSelectors<V> => {
                              const selectCategoryFeatureState = getDaffCategoryFeatureSelector<V>().selectCategoryFeatureState;
                            
                              const selectCategoryState = createSelector(
                                selectCategoryFeatureState,

                              Function getCategoryNodeFragment has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                              Open

                              export function getCategoryNodeFragment(depth: number = 3): DocumentNode {
                                const fragmentBody = new Array(depth).fill(null).reduce(acc => `
                                  ...${CATEGORY_NODE_FRAGMENT_NAME}
                                  children_count
                                  children {

                                Function createCountryEntitySelectors has 28 lines of code (exceeds 25 allowed). Consider refactoring.
                                Open

                                const createCountryEntitySelectors = <T extends DaffCountry = DaffCountry>() => {
                                  const { selectGeographyFeatureState } = getDaffGeographyFeatureStateSelector<T>();
                                  const selectCountryEntitiesState = createSelector(
                                    selectGeographyFeatureState,
                                    state => state.countries,
                                Severity: Minor
                                Found in libs/geography/state/src/selectors/country-entities.selector.ts - About 1 hr to fix

                                  Function getMaxPricesForConfigurationIncludingOptionalItems has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                  function getMaxPricesForConfigurationIncludingOptionalItems(product: DaffCompositeProduct, appliedOptions: Dictionary<DaffCompositeProductItemOption>): DaffProductPrices {
                                    return {
                                      discountedPrice: product.items.reduce((acc, item) => daffAdd(
                                        acc,
                                        appliedOptionHasId(appliedOptions[item.id]) ?

                                  Cognitive Complexity

                                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                                  A method's cognitive complexity is based on a few simple rules:

                                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                                  • Code is considered more complex for each "break in the linear flow of the code"
                                  • Code is considered more complex when "flow breaking structures are nested"

                                  Further reading

                                  Function createCartItemEntitiesSelectors has a Cognitive Complexity of 10 (exceeds 5 allowed). Consider refactoring.
                                  Open

                                  const createCartItemEntitiesSelectors = <
                                    T extends DaffCart = DaffCart,
                                    V extends DaffCartOrderResult = DaffCartOrderResult,
                                    Configurable extends DaffConfigurableCartItem = DaffConfigurableCartItem,
                                    Composite extends DaffCompositeCartItem = DaffCompositeCartItem,

                                  Cognitive Complexity

                                  Cognitive Complexity is a measure of how difficult a unit of code is to intuitively understand. Unlike Cyclomatic Complexity, which determines how difficult your code will be to test, Cognitive Complexity tells you how difficult your code will be to read and comprehend.

                                  A method's cognitive complexity is based on a few simple rules:

                                  • Code is not considered more complex when it uses shorthand that the language provides for collapsing multiple statements into one
                                  • Code is considered more complex for each "break in the linear flow of the code"
                                  • Code is considered more complex when "flow breaking structures are nested"

                                  Further reading

                                  Function daffColorMixin has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                  Open

                                  export function
                                  daffColorMixin<T extends Constructor<HasElementRef>>(Base: T, defaultColor?: DaffPalette) {
                                    class DaffColorableMixinClass extends Base {
                                      //TODO move this back to private in Typescript 3.1
                                      _color: DaffPalette;
                                  Severity: Minor
                                  Found in libs/design/src/core/colorable/colorable-mixin.ts - About 1 hr to fix

                                    Function daffCategoryReducer has 27 lines of code (exceeds 25 allowed). Consider refactoring.
                                    Open

                                    export function daffCategoryReducer<U extends DaffGenericCategory<U>, W extends DaffProduct>(
                                      state = daffCategoryInitialState,
                                      action: DaffCategoryActions<U, W> | DaffCategoryPageActions<U, W> | DaffCategoryPageProductCollectionActions,
                                    ): DaffCategoryReducerState {
                                      switch (action.type) {
                                    Severity: Minor
                                    Found in libs/category/state/src/reducers/category/category.reducer.ts - About 1 hr to fix
                                      Severity
                                      Category
                                      Status
                                      Source
                                      Language