如何从 angular 2+ 中的服务获取屏幕调整尺寸?

How to get a screen resize dimension from a service in angular 2+?

首先这个不重复需要花时间阅读,因为有很多类似的问题但是它们在@Component装饰器中

我想到了在服务中捕获屏幕大小调整然后通过 observable 共享一些 css 值,但我的服务似乎无法正常工作(无法捕获屏幕大小调整事件)。

这是我的代码

import { Injectable, HostListener } from '@angular/core';
import { BehaviorSubject } from 'rxjs';

@Injectable({
 providedIn: 'root',
})
export class BreakPointService {

    normal: {
        background: 'w3-teal',
        inputColor: 'w3-light-grey',
        css_parent: 'w3-container w3-teal'
    };
    breakpoint: {
        background: 'w3-dark-blue',
        inputColor: 'w3-white',
        css_parent: 'w3-container w3-light-grey'
    };
    breakPointValue: number;


    css_behaviour = new BehaviorSubject(JSON.stringify(this.breakpoint));

    current_css = this.css_behaviour.asObservable();

    @HostListener('window:resize', ['$event'])
    onResize(event) {
        console.log();
        this.breakPointValue = window.innerWidth;
        console.log(this.breakPointValue);
        if (this.breakPointValue > 768) {
            console.log(JSON.stringify(this.normal));
            this.css_behaviour.next(JSON.stringify(this.normal));
        } else {
            console.log(JSON.stringify(this.breakpoint));
            this.css_behaviour.next(JSON.stringify(this.breakpoint));
        }
    }

    public css() {
        if (this.breakPointValue > 768) {
            return this.normal;
        }
        return this.breakpoint;

    }

    constructor() { }
}

有什么办法可以做到这一点,或者这对服务来说是便宜的吗?

您可能需要查看 Angular 的 Flex-Layout 包。您可以注入它的 ObservableMedia 服务。这将允许您订阅它以收听 window 尺寸变化。

    import {MediaChange, ObservableMedia} from '@angular/flex-layout';

    @Injectable({
     providedIn: 'root',
    })
    export class BreakPointService {

     constructor(media: ObservableMedia) {}

     resize(){
      return this.media.pipe(map(change: MediaChange) => {
      //if changes doesn't have the width available on it, access it from the window object
      if (window.innerWidth > 768) {       
            return JSON.stringify(this.normal);
        } else {
            return JSON.stringify(this.breakpoint);
        }
      }));
     }
   }

每当您调整 window 大小时,都会将媒体更改对象记录到您的控制台。在您的组件中订阅它之后。

所以我没有在您的 OP 中看到您正在初始化服务的位置。我必须在一个应用程序中做这几乎完全一样的事情。我们会观察屏幕尺寸的变化,这会触发本地存储中某些用户偏好的变化:

import { Injectable } from '@angular/core';
import { BehaviorSubject } from 'rxjs/BehaviorSubject';
import { TableViewTypes, MediaSizes, UserPreferencesDefaults, TableView, getTableViewDefaults } from '../models/user-preferences.model';
import { StorageService } from './storage.service';

@Injectable()
export class UserPreferencesService {

    private tableViewSubject = new BehaviorSubject<TableView>(UserPreferencesDefaults.tableView);
    tableView$ = this.tableViewSubject.asObservable();

    constructor(
        private storageService: StorageService
    ) {}

    init() {
        this.tableViewSubject.next(
            !(window.outerWidth > MediaSizes.sm) ?
            getTableViewDefaults(false) :
            UserPreferencesDefaults.tableView
        );
        window.addEventListener('resize', () => {
            this.tableViewSubject.next(
                !(window.outerWidth > MediaSizes.sm) ?
                getTableViewDefaults(false) :
                this.storageService.userPreferences.tableView
            );
        });
    }

    storeTableView(tableType: TableViewTypes, value: boolean) {
        this.storageService.userPreferences = {
            ...this.storageService.userPreferences,
            tableView: {
                ...this.storageService.userPreferences.tableView,
                [tableType]: value
            }
        };
    }

    toggleTableView(tableType: TableViewTypes, value?: boolean) {
        value = value !== undefined && value !== null ? value : !this.storageService.userPreferences.tableView[tableType];
        this.tableViewSubject.next({
            ...this.storageService.userPreferences.tableView,
            [tableType]: value
        });
        this.storeTableView(tableType, value);
    }

}

然后为了使服务正常工作,通过将其注入构造函数参数

中的 app.component.ts 对其进行初始化
constructor(
    private userPreferenceService: UserPreferencesService,
) {this.userPreferenceService.init();}

感谢所有回复。

我仍然想在服务中捕获 resise 事件,但感谢@ABOS 和一些关于组件通信的教程,我得到了使用根组件捕获屏幕大小事件然后为我的服务提供更改的想法在其中可观察到,这样所有订阅的组件都将获得断点 css 值

我的实现就不说了

app.component

import { Component, OnInit, HostListener } from '@angular/core';
import { BreakPointService } from './providers/break-point.service';

@Component({
    selector: 'app-root',
    templateUrl: './app.component.html',
    styleUrls: ['./app.component.css']
})
export class AppComponent implements OnInit {
    title = 'twithashWebApp';
    css_parent = '';
    breakPointValue: number;
    constructor() {
    }

    ngOnInit() {
        BreakPointService.current_css.subscribe(value => {
            console.log('value is ' + value);
            this.css_parent = JSON.parse(value).css_parent;
        });
    }

    @HostListener('window:resize', ['$event'])
    onResize(event) {
        console.log();
        this.breakPointValue = window.innerWidth;
        console.log(this.breakPointValue);
        if (this.breakPointValue > 768) {
            console.log(JSON.stringify(BreakPointService.normal));
            BreakPointService.css_behaviour.next(JSON.stringify(BreakPointService.normal));
        } else {
            console.log(JSON.stringify(BreakPointService.breakpoint));
            BreakPointService.css_behaviour.next(JSON.stringify(BreakPointService.breakpoint));
        }
    }


}

break-point.service

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

@Injectable({
    providedIn: 'root',
})
export class BreakPointService {

    static normal = {
        background: 'w3-teal',
        inputColor: 'w3-light-grey',
        css_parent: 'w3-container w3-teal'
    };
    static breakpoint = {
        background: 'w3-dark-blue',
        inputColor: 'w3-white',
        css_parent: 'w3-container w3-light-grey'
    };


    static css_behaviour = new BehaviorSubject<string>(JSON.stringify(BreakPointService.breakpoint));

    static current_css = BreakPointService.css_behaviour.asObservable();



    constructor() { }
}

对应模板

<!--The content below is only a placeholder and can be replaced.-->
<div class="{{css_parent}}" style="text-align:center" style="height: 100%">
<app-tweet-list></app-tweet-list>
</div>