web-dev-qa-db-ja.com

Angular 6 / 7cssメディアクエリは孫には適用されません

次のコンポーネントのアーキテクチャを使用しているアプリで(レスポンシブ動作のために)メディアクエリを適用する際にいくつかの問題が発生しています

  • 基本コンポーネント:デフォルトのカプセル化を使用します。外部プラグインが使用される場所があります。現在、PrimeNG外部モジュールを適用している場合があります。アイデアは、これらの基本コンポーネントを他のアプリに移動することです。これらは、独自の共有モジュールに統合されています。

  • ブランディングコンポーネント:基本コンポーネントを再利用し、カスタムスタイルを適用してテキストを翻訳し、特定の処理を実行し、ネイティブカプセル化を使用します(基本コンポーネントと区別するため)が、ビジネスロジックは適用しません。これらは、共有モジュールをインポートする独自のブランディングモジュールに統合されています。

  • ビジネスコンポーネント:ブランディングコンポーネントを再利用し、ここで独自のビジネスロジックを適用します(複数のビューで使用されている場合)。これらは、ブランディングモジュールをインポートする独自のビジネスモジュールに統合されています。これらのコンポーネントは、デフォルトのangularカプセル化モードを実装します。

次に独自のモジュールに統合され、ビジネスモジュールをインポートするビューがあります。ブランディングまたはビジネスコンポーネントを使用します。ここでは、cssメディアクエリに関するいくつかの問題に直面しています。これらのビューは、デフォルトのangularカプセル化モードを使用します。

特定のケースは、レスポンシブケースで正しく動作するように、特定のビューの入力フィールドをカスタマイズしようとしている場合です(さまざまな向きのモバイル、タブレット、デスクトップ)。そのために、外部プラグインを使用していますangular flex layout(beta 7)

この入力フィールドは基本コンポーネントに存在しますが、ブランディングケースを紹介します。必要なのは、それをカプセル化するdivコンテナーに適応するために、ブランディングに設定されているデフォルトの幅/高さを変更することです。

これは私たちがこれまでに行ったことです:

特定のビューのscss:

// MEDIA QUERIES
:Host ::ng-deep {

  @media screen and (min-width: 300px) and (orientation: portrait)  {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width: 95%;
    }
  }

  @media screen and (min-width: 300px) and (orientation: landscape)  {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 2.625);
    }
  }

  @media screen and (min-width: 480px) and (orientation: landscape)  {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 2.9);
    }
  }

  @media screen and (min-width: 640px) and (orientation: portrait)  {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 2);
      height:(16px * 1.6);
    }
  }

  @media screen and (min-width: 640px) and (orientation: landscape)  {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 2.68);
      height:(16px * 1.6);
    }
  }

  @media screen and (min-width: 768px) and (orientation: portrait) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 3.3);
      height:(16px * 1.6);
    }
  }

  @media screen and (min-width: 768px) and (orientation: landscape) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 3.5);
      height:(16px * 1.6);
    }
  }

  @media screen and (min-width: 900px) and (orientation: portrait) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 3.5);
      height:(16px * 1.625);
    }
  }

  @media screen and (min-width: 900px) and (orientation: landscape) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 1.875);
      height:(16px * 1.625);
    }
  }

  @media screen and (min-width: 1200px) and (orientation: portrait) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 3.75);
      height:(16px * 1.625);
    }
  }

  @media screen and (min-width: 1200px) and (orientation: landscape) {
    .inputField,
    .inputFieldEditing,
    .inputFieldChanged,
    .inputFieldDisabled {
      width:(80px * 2.5);
      height:(16px * 1.625);
    }
  }
}

以前のカスタムクラスが存在し、さまざまなケースに基づいてUXを変更するために、入力フィールドコンポーネントのブランド化に使用されます。

ブランディング入力フィールドコンポーネントテンプレートファイル:

<sh-input-field [id]="id"
                [caption]="caption | translate"
                [(model)]="userInput"
                [placeholder]="placeholder | translate"
                [type]="inputType"
                [color]="color"
                [font-size]="fontsize"
                [isDisabled]="!enabled"
                [style]="{'width': width,
                          'height': height}"
                [status]="status"
                [baseClass]="INPUT_CLASS_ENABLED"
                [extendedClass]="extendedClass"
                [stateClasses]="{
                                  focusedOn: INPUT_CLASS_EDITING,
                                  enabledOn: INPUT_CLASS_ENABLED,
                                  enabledOff: INPUT_CLASS_DISABLED,
                                  valueChanged: INPUT_CLASS_CHANGED
                                }"
              [passwordWeakCaption]="passwordWeakCaption"
              [passwordMediumCaption]="passwordMediumCaption"
              [passwordStrongCaption]="passwordStrongCaption"
              [isPasswordFeedbackShown]="isPasswordFeedbackShown">
</sh-input-field>

ブランディング入力フィールドコンポーネントscssファイル:

/* CAPTION */
.uiElemSideCaptionLeft,
.uiElemSideCaptionRight,
.uiElemSideCaptionDisabled {
  position: relative;
  display: inline-block;
  padding-top: 2px;
  text-align: left;
  font-size: 14px;
  -ms-opacity: 1;
  opacity: 1;
  color: #333;
}

.uiElemSideCaptionRight {
  -ms-opacity: 1;
  opacity: 1;
  text-align: right;
}

.uiElemSideCaptionDisabled {
  -ms-opacity: 0.4;
  opacity: 0.4;
}

/* INPUT-FIELD */
.inputField,
.inputFieldEditing,
.inputFieldChanged,
.inputFieldDisabled {
  position: relative;
  display: inline-block;
  height: 16px;
  width: 80px;
  padding: 4px;
  background-color: #dddddd;
  border-width: 1px;
  border-color: #979797;
  border-style: solid;
  font-size: 14px;
  text-align: left;
  color: rgba(0, 0, 0, 1);
  -ms-opacity: 1;
  opacity: 1;
}

.inputFieldEditing {
  -ms-opacity: 1;
  opacity: 1;
  background-color: #eee;
  height: 14px;
  border-width: 2px;
  border-color: #F8E71C;
  color: rgba(0, 0, 0, 1);
  border-style: solid;
}

.inputFieldChanged {
  -ms-opacity: 1;
  opacity: 1;
  background-color: rgba(245, 166, 35, 0.5);
  height: 16px;
  border-width: 1px;
  border-color: #979797;
  color: rgba(0, 0, 0, 1);
  border-style: solid;
}

.inputFieldDisabled {
  -ms-opacity: 0.6;
  opacity: 0.6;
  height: 16px;
  background-color: lightgray;
  border-width: 1px;
  border-color: #979797;
  border-style: solid;
  color: rgba(0, 0, 0, 1);
}

ブランディング入力フィールドコンポーネント定義:

@Component({
  selector: 'br-input-field',
  templateUrl: './input-field.component.html',
  styleUrls: ['./input-field.component.scss'],
  encapsulation: ViewEncapsulation.Native
})

ベース入力フィールドコンポーネントテンプレートファイル:

<div class="sh-input-field-global-container">
  <div class="sh-input-field-label-container" *ngIf="caption !== '' && caption !== undefined && caption !== null">
    <label [for]="id">{{caption}}</label>
  </div>
  <div class="sh-input-field-container" [ngClass]="extendedClass">
    <input *ngIf="controlType !== 'password'"
           [ngClass]="getCssClases('sh-input-field', baseClass)"
           [attr.id]="id"
           [placeholder]="placeholder"
           [disabled]="isDisabled"
           (focus)="InvokeFocus($event)"
           (blur)="InvokeBlur($event)"
           (keyup.enter)="InvokeKeyUpEnterEvent($event)"
           (keyup.escape)="InvokeKeyUpEscapeEvent($event)"
           [(ngModel)]="model"
           [attr.name]="formName"
           [maxLength]="length"
           [type]="controlType"
           [ngStyle]="style"/>
    <input *ngIf="controlType === 'password'"
            [ngClass]="GetCssClases('sh-input-field', baseClass)"
            [attr.id]="id"
            [disabled]="isDisabled"
            (focus)="InvokeFocus($event)"
            (blur)="InvokeBlur($event)"
            (keyup.enter)="InvokeKeyUpEnterEvent($event)"
            (keyup.escape)="InvokeKeyUpEscapeEvent($event)"
            [(ngModel)]="model"
            [attr.name]="formName"
            [maxLength]="length"
            [type]="controlType"
            pPassword
            [promptLabel]="placeholder"
            [weakLabel]="passwordWeakCaption"
            [mediumLabel]="passwordMediumCaption"
            [strongLabel]="passwordStrongCaption"
            [feedback]="isPasswordFeedbackShown"
            [ngStyle]="style"/>
  </div>
</div>

基本入力フィールドコンポーネント定義:

@Component({
  selector: 'sh-input-field',
  templateUrl: './input-field.component.html',
  styleUrls: ['./input-field.component.scss']
})

では、ここで何が間違っている可能性がありますか? 特定のビューで:Host:ng-deepを誤って使用していますか?これらのメディアクエリをブランディング入力フィールドsassファイルに直接適用すると、正常に機能することがわかりました(:Host:ng-deepを削除します)鬼ごっこ)

3
Andrés

以下に示すように、:Host /deep/の代わりに:Host ::ng-deepを試してください

:Host /deep/ {
    /*your style goes here*/
}

または

encapsulation: ViewEncapsulation.Noneの代わりにencapsulation: ViewEncapsulation.Nativeを使用してください

1
Vikas Jadhav

ただし、メディアクエリに設定されたすべてのプロパティ値に!importantを追加して、効果を上げる必要があります。

この問題を修正するために、私はscssで Vikas 言及 このリンクで として使用しました。

別のファイルに入れて、使用する任意のファイルに含めることができます。

$phone : '(max-width: 480px)';
$phone-landscape : '(max-height: 480px)';
$tablet-portrait: '(max-width: 767px)';
$tablet-landscape: '(min-width: 768px) and (max-width: 979px) and (max-height: 768px)';
$large-desktop: '(min-width: 1200px)';
$non-retina: 'screen and (-webkit-max-device-pixel-ratio: 1)';
$retina: '(min--moz-device-pixel-ratio: 1.5), 
                    (-o-min-device-pixel-ratio: 3/2), 
                    (-webkit-min-device-pixel-ratio: 1.5), 
                    (min-device-pixel-ratio: 1.5), 
                    (min-resolution: 144dpi), 
                    (min-resolution: 1.5dppx)';

@mixin respond-to($media) {
    @media only screen and #{$media} {
        @content;
    }
}

次に、callinside宣言を使用します。

.bookItem {
    max-height: 450px;
    min-height: 150px;
    padding: 25px;

    @include respond-to($phone) {
      max-height: 150px;
      padding: 15px;
    }
}

そしてそれは機能します。

1
nik_ola