Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mes-generalRefactors #1726

Merged
merged 7 commits into from
Sep 18, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/app/pages/debrief/debrief.page.html
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
>{{ 'debrief.title' | translate }} - {{pageState.candidateName$ | async}}</ion-title
>
</ion-toolbar>
<test-outcome-debrief-card [outcome]="outcome" [grade]="pageState.grade$ | async"></test-outcome-debrief-card>
</ion-header>

<ion-content>
<test-outcome-debrief-card [outcome]="outcome" [grade]="pageState.grade$ | async"></test-outcome-debrief-card>
<speed-check-debrief-card
*ngIf="pageState.showSpeedCheck$ | async"
[emergencyStop]="pageState.emergencyStop$ | async"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ <h2 class="des-header-style-4" id="view-test-result-vehicle-details-title">Vehic

<data-row
*ngIf="data.motEvidenceProvided != null"
[label]="'Alternative MOT evidence provided?'"
[label]="'Acceptable alternative MOT evidence provided?'"
[value]="data.motEvidenceProvided ? 'Yes' : 'No'"
></data-row>

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<ion-row class="mes-validated-row" id="alternate-evidence-test-card" [formGroup]="formGroup">
<div class="validation-bar" [class.ng-invalid]="invalid"></div>
<ion-col class="component-label ion-align-self-center" size="32">
<label id="alternate-evidence-test-title"> Alternate MOT evidence provided?</label>
<label id="alternate-evidence-test-title"> Acceptable alternative MOT evidence provided?</label>
</ion-col>
<ion-col class="ion-align-self-center mes-padding-left">
<ion-row class="spacing-row"></ion-row>
Expand Down Expand Up @@ -35,6 +35,7 @@
</ion-row>
<ion-row class="validation-message-row ion-align-items-center">
<div
[hidden]="!invalid"
class="validation-text"
[class.ng-invalid]="invalid"
id="waiting-room-to-car-alternate-evidence-validation-text"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,8 @@
color: var(--gds-black)
}

.cancel-button {
color: var(--gds-black);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,13 @@
<ion-col class="ion-align-self-center mes-padding-left">
<ion-row class="spacing-row"></ion-row>
<ion-row>
<ion-col class="display-flex" [size]="isRekeyMode ? 57 : 45">
<ion-col class="display-flex ion-align-items-center" [size]="isRekeyMode ? 57 : 45">
<ion-input
type="text"
id="registration"
aria-labelledby="vehicle-registration-number-title"
formControlName="vehicleRegistration"
class="ion-input-styling"
[class.margin-bottom]="!invalid"
[class.ng-invalid]="invalid"
[value]="vehicleRegistration"
(ionInput)="vehicleRegistrationChanged($event)"
Expand All @@ -31,7 +30,7 @@
pasteSanitiser
></ion-input>
</ion-col>
<ion-col *ngIf="!isRekeyMode" size="35">
<ion-col class="display-flex ion-align-items-center" *ngIf="!isRekeyMode" [size]="getMOTButtonColSize(accessibilityService.getTextZoomClass())">
<ion-button
[disabled]="!((formControl.valid) && (networkState.getNetworkState() == ConnectionStatus.ONLINE || isPracticeMode))"
class="mes-grey-button"
Expand All @@ -44,8 +43,8 @@
<ion-spinner class="search-spinner" name="bubbles" *ngIf="showSearchSpinner"></ion-spinner>
</ion-col>
</ion-row>
<ion-row *ngIf="invalid" class="validation-message-row ion-align-items-center">
<div class="validation-text" [class.ng-invalid]="invalid" id="waiting-room-to-car-registration-validation-text">
<ion-row class="validation-message-row ion-align-items-center">
<div class="validation-text" [hidden]="!invalid" [class.ng-invalid]="invalid" id="waiting-room-to-car-registration-validation-text">
Enter the registration number
</div>
</ion-row>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import {
PracticeModeMOTModal,
PracticeModeMOTType,
} from '@pages/waiting-room-to-car/components/mot-components/practice-mode-mot-modal/practice-mode-mot-modal.component';
import { AccessibilityService } from '@providers/accessibility/accessibility.service';
import { MotHistoryApiService, MotHistoryWithStatus } from '@providers/mot-history-api/mot-history-api.service';
import { MotHistory, MotStatusCodes } from '@providers/mot-history-api/mot-interfaces';
import { ConnectionStatus, NetworkStateProvider } from '@providers/network-state/network-state';
Expand Down Expand Up @@ -56,7 +57,8 @@ export class VehicleRegistrationComponent implements OnChanges {
constructor(
public motApiService: MotHistoryApiService,
public modalController: ModalController,
protected networkState: NetworkStateProvider
protected networkState: NetworkStateProvider,
protected accessibilityService: AccessibilityService
) {}

get invalid(): boolean {
Expand Down Expand Up @@ -206,4 +208,15 @@ export class VehicleRegistrationComponent implements OnChanges {
isMOTNotValid() {
return this.motData?.data?.status !== MotStatusCodes.NOT_VALID;
}

getMOTButtonColSize(zoomClass: string) {
switch (zoomClass) {
case 'text-zoom-x-large':
return 37;
case 'text-zoom-large':
return 33;
default:
return 30;
}
}
}
Loading