Skip to content

Commit

Permalink
CXSPA-8638: fix clear persisted focus on entering configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
steinsebastian committed Oct 18, 2024
1 parent 1499ec5 commit d2d1938
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { productConfiguration } from '../../testing/configurator-test-data';
import { ConfiguratorTestUtils } from '../../testing/configurator-test-utils';
import { ConfiguratorAttributeHeaderComponent } from '../attribute/header/configurator-attribute-header.component';
import { ConfiguratorFormComponent } from './configurator-form.component';
import { KeyboardFocusService } from '@spartacus/storefront';

@Component({
selector: 'cx-configurator-group',
Expand Down Expand Up @@ -258,6 +259,7 @@ let component: ConfiguratorFormComponent;
let htmlElem: HTMLElement;
let configExpertModeService: ConfiguratorExpertModeService;
let hasConfigurationConflictsObservable: Observable<boolean> = EMPTY;
let keyboardFocusService: KeyboardFocusService;

describe('ConfigurationFormComponent', () => {
beforeEach(waitForAsync(() => {
Expand Down Expand Up @@ -347,6 +349,10 @@ describe('ConfigurationFormComponent', () => {
LaunchDialogService as Type<LaunchDialogService>
);
spyOn(launchDialogService, 'openDialogAndSubscribe').and.callThrough();
keyboardFocusService = TestBed.inject(
KeyboardFocusService as Type<KeyboardFocusService>
);
spyOn(keyboardFocusService, 'clear').and.callThrough();
});

describe('resolve issues navigation', () => {
Expand Down Expand Up @@ -421,6 +427,14 @@ describe('ConfigurationFormComponent', () => {
});
});

it('should reset persisted focus when UI is opened without resolve issue mode', () => {
routerStateObservable = mockRouterStateWithQueryParams({
resolveIssues: 'false',
});
createComponentWithData();
expect(keyboardFocusService.clear).toHaveBeenCalledTimes(1);
});

describe('Rendering', () => {
it('should render ghost view if no data is present', () => {
createComponentWithoutData();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ import {
Component,
OnDestroy,
OnInit,
inject,
} from '@angular/core';
import { GlobalMessageService, GlobalMessageType } from '@spartacus/core';
import {
Expand All @@ -29,6 +30,7 @@ import { ConfiguratorCommonsService } from '../../core/facade/configurator-commo
import { ConfiguratorGroupsService } from '../../core/facade/configurator-groups.service';
import { Configurator } from '../../core/model/configurator.model';
import { ConfiguratorExpertModeService } from '../../core/services/configurator-expert-mode.service';
import { KeyboardFocusService } from '@spartacus/storefront';

@Component({
selector: 'cx-configurator-form',
Expand All @@ -38,6 +40,7 @@ import { ConfiguratorExpertModeService } from '../../core/services/configurator-
export class ConfiguratorFormComponent implements OnInit, OnDestroy {
protected subscription = new Subscription();

protected focusService = inject(KeyboardFocusService);
routerData$: Observable<ConfiguratorRouter.Data> =
this.configRouterExtractorService.extractRouterData();

Expand Down Expand Up @@ -157,6 +160,9 @@ export class ConfiguratorFormComponent implements OnInit, OnDestroy {
);
}
});
} else {
// Clear persisted focus before entering the configurator UI
this.focusService.clear();
}

if (routingData.expMode) {
Expand Down

0 comments on commit d2d1938

Please sign in to comment.