web-dev-qa-db-ja.com

Angular2でレスポンシブコンポーネントを実行する方法

私はAngular2への道を歩いています。私の目的は、デバイス幅の異なるメディアクエリに応じて異なるコンポーネントを読み込むレスポンシブアプリを作成することです。私の作業例にはMatchMediaServiceがあります。

import { Injectable } from '@angular/core';

@Injectable()
export class MatchMediaService 
{
    constructor()
    {

    }

    rules =
    {
        print: "print",
        screen: "screen",
        phone: '(max-width: 767px)',
        tablet: '(min-width: 768px) and (max-width: 1024px)',
        desktop: '(min-width: 1025px)',
        portrait: '(orientation: portrait)',
        landscape: '(orientation: landscape)',
        retina: '(-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi)'
    };

    Check = function (mq)
    {
        if (!mq)
        {
            return;
        }

        return window.matchMedia(mq).matches;
    };

/**********************************************
    METHODS FOR CHECKING TYPE   
 **********************************************/
    IsPhone()
    {
        return window.matchMedia(this.rules.phone).matches;
    };

    IsTablet = function ()
    {
        return window.matchMedia(this.rules.tablet).matches;
    };

    IsDesktop = function ()
    {
        return window.matchMedia(this.rules.desktop).matches;
    };

    IsPortrait = function ()
    {
        return window.matchMedia(this.rules.portrait).matches;
    };

    IsLandscape = function ()
    {
        return window.matchMedia(this.rules.landscape).matches;
    };

    IsRetina = function ()
    {
        return window.matchMedia(this.rules.retina).matches;
    };


/**********************************************
    EVENT LISTENERS BY TYPE
 **********************************************/    
    OnPhone(callBack)
    {
        if (typeof callBack === 'function')
        {
            var mql: MediaQueryList = window.matchMedia(this.rules.phone);

            mql.addListener((mql: MediaQueryList) =>
            {
                if (mql.matches)
                {
                    callBack(mql);
                }
            });
        }
    };

    OnTablet(callBack)
    {
        if (typeof callBack === 'function')
        {
            var mql: MediaQueryList = window.matchMedia(this.rules.tablet);

            mql.addListener((mql: MediaQueryList) =>
            {
                if (mql.matches)
                {
                    callBack(mql);
                }
            });
        }
    };

    OnDesktop(callBack)
    {
        if (typeof callBack === 'function')
        {
            var mql: MediaQueryList = window.matchMedia(this.rules.desktop);

            mql.addListener((mql: MediaQueryList) =>
            {
                if (mql.matches)
                {
                    callBack(mql);
                }
            });
        }
    };  

    OnPortrait(callBack)
    {
        if (typeof callBack === 'function')
        {
            var mql: MediaQueryList = window.matchMedia(this.rules.portrait);

            mql.addListener((mql: MediaQueryList) =>
            {
                if (mql.matches)
                {
                    callBack(mql);
                }
            });
        }
    };  

    OnLandscape(callBack)
    {
        if (typeof callBack === 'function')
        {
            var mql: MediaQueryList = window.matchMedia(this.rules.landscape);

            mql.addListener((mql: MediaQueryList) =>
            {
                if (mql.matches)
                {
                    callBack(mql);
                }
            });
        }
    };
}

次に、「親」コンポーネント(HomeComponent)内で、MatchMediaServiceを使用して、MatchMediaServiceが返すものに応じて読み込む子コンポーネント(HomeMobileComponentまたはHomeDesktopComponent)を決定します。

import { Component, OnInit, NgZone } from '@angular/core';
import { MatchMediaService } from '../shared/services/match-media.service';
import { HomeMobileComponent } from './home-mobile.component';
import { HomeDesktopComponent } from './home-desktop.component';

@Component({
    moduleId: module.id,
    selector: 'home.component',
    templateUrl: 'home.component.html',
    providers: [ MatchMediaService ],
    directives: [ HomeMobileComponent, HomeDesktopComponent ]
})
export class HomeComponent implements OnInit 
{
    IsMobile: Boolean = false;
    IsDesktop: Boolean = false;

    constructor(
        private matchMediaService: MatchMediaService,
        private zone: NgZone        
    )
    {
        //GET INITIAL VALUE BASED ON DEVICE WIDTHS AT TIME THE APP RENDERS
        this.IsMobile = (this.matchMediaService.IsPhone() || this.matchMediaService.IsTablet());
        this.IsDesktop = (this.matchMediaService.IsDesktop());

        var that = this;


        /*---------------------------------------------------
        TAP INTO LISTENERS FOR WHEN DEVICE WIDTH CHANGES
        ---------------------------------------------------*/

        this.matchMediaService.OnPhone(
            function (mediaQueryList: MediaQueryList)
            {
                that.ShowMobile();
            }
        );

        this.matchMediaService.OnTablet(
            function (mediaQueryList: MediaQueryList)
            {
                that.ShowMobile();
            }
        );

        this.matchMediaService.OnDesktop(
            function (mediaQueryList: MediaQueryList)
            {
                that.ShowDesktop();
            }
        );
    }

    ngOnInit()
    {

    }

    ShowMobile()
    {
        this.zone.run(() =>
        { // Change the property within the zone, CD will run after
            this.IsMobile = true;
            this.IsDesktop = false;
        });
    }

    ShowDesktop()
    {
        this.zone.run(() =>
        { // Change the property within the zone, CD will run after
            this.IsMobile = false;
            this.IsDesktop = true;
        });
    }   
}
<home-mobile *ngIf="(IsMobile)"></home-mobile>
<home-desktop *ngIf="(IsDesktop)"></home-desktop>

このアプローチは機能します。デバイスに応じて適切なコンポーネントをロードできます。コンポーネント(コンテンツ、スタイル、機能など)をデバイスに合わせてカスタマイズできるため、最高のユーザーエクスペリエンスを実現できます。これにより、モバイル、タブレット、デスクトップのさまざまなコンポーネントをターゲットにすることもできます(ただし、例ではモバイルとデスクトップのみに焦点を当てています)。

これを行うためのより良い方法はありますか?欠点は、すべてのコンポーネントを親コンポーネントで構成し、MatchMediaServiceを介してどの子コンポーネントを読み込むかを決定することです。これは本格的な生産レベルのアプリで動作するように拡張可能ですか?より良いアプローチに関するフィードバック、またはこのアプローチが本格的な本番アプリケーションに受け入れ可能でスケーラブルであるかどうかに非常に興味があります。フィードバックありがとうございます。

22
Tom Schreck

カスタムのメディア対応*ngIfまたは*ngSwitch構造ディレクティブを作成して、繰り返しを少なくすることができます。

https://angular.io/docs/ts/latest/guide/structural-directives.html

4

遅延ロードされたモジュールにルーティングすることで、すべてのロジックを回避できませんでした。 app.componentをnavigator.userAgentに基づいて対応するモジュールのルートにナビゲートさせることにより、モバイル、デスクトップ、何でも。から https://developer.mozilla.org/en-US/docs/Web/HTTP/Browser_detection_using_the_user_agent

ユーザーエージェントの任意の場所で文字列「Mobi」を探してモバイルデバイスを検出することをお勧めします

https://embed.plnkr.co/NLbyBEbNoWd9SUW7TJFS/

0
Robert Brower