angular - 注销 MatDialog 在移动浏览器中不起作用

标签 angular angular-material logout mat-dialog

如果他空闲 20 分钟,我想提醒用户。所以,创建了一个服务。

它在桌面上运行良好,但在手机中它没有显示,有时如果屏幕在后台停留了几个小时,那么一旦我再次进入页面,注销对话框屏幕就会开始倒计时。

我的意思是它应该注销,我应该看到登录页面,但这里它会在几个小时后显示注销警报倒计时页面,否则它不会出现在移动浏览器中。

这是我的代码,请让我知道我缺少哪个逻辑。

这是 Service.ts 文件。 check() 将每 5 秒调用一次,注销警报将在 20 秒后显示...

const MINUTES_UNITL_AUTO_LOGOUT = 0.2; // 1 mins- 20
const CHECK_INTERVAL = 5000; // checks every 5 secs- 5000

@Injectable({
  providedIn: "root",
})
export class AutoLogoutService {
  logOutInterval: any;

  constructor(
    private localStorage: LocalStoreManager,
    private authService: AuthService,
    public dialog: MatDialog
  ) {
    this.localStorage.savePermanentData(
      Date.now().toString().toString(),
      DBkeys.AUTO_LOGOUT
    );
    this.initListener();
  }

  initListener() {
    document.body.addEventListener("click", () => this.reset());
    document.body.addEventListener("mouseover", () => this.reset());
    document.body.addEventListener("mouseout", () => this.reset());
    document.body.addEventListener("keydown", () => this.reset());
    document.body.addEventListener("keyup", () => this.reset());
    document.body.addEventListener("keypress", () => this.reset());
  }

  reset() {
    this.setLastAction(Date.now());
  }

  initInterval() {
    this.logOutInterval = setInterval(() => {
      this.check();
    }, CHECK_INTERVAL);
  }
  clearInterval() {
    clearInterval(this.logOutInterval);
  }

  check() {
    const now = Date.now();
    const timeleft = this.getLastAction() + MINUTES_UNITL_AUTO_LOGOUT * 60 * 1000;
    const diff = timeleft - now;
    const isTimeout = diff < 0;
    console.log(diff);
    if (isTimeout && !this.authService.isLogoutDialogOpenned) {
      this.authService.isLogoutDialogOpenned = true;
      this.dialog
        .open(LogoutDialog, {
          maxWidth: "100vw",
        })
        .afterClosed()
        .subscribe((result) => {
          this.authService.isLogoutDialogOpenned = false;
        });
    }
  }

  public getLastAction() {
    return parseInt(this.localStorage.getData(DBkeys.AUTO_LOGOUT));
  }

  public setLastAction(lastAction: number) {
    this.localStorage.savePermanentData(
      lastAction.toString(),
      DBkeys.AUTO_LOGOUT
    );
  }
}

最佳答案

我相信移动设备,当用户最小化浏览器时,您的逻辑将停止执行,因为手机会自动终止后台应用程序以进行 ram 管理,并且当他重新启动浏览器时,您的脚本会再次启动。您还应该在销毁或 window.beforeunload 事件时注销。

关于angular - 注销 MatDialog 在移动浏览器中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61818236/

相关文章:

angular - 如何操作不同 mat-card 元素的 mat-card-header-text 类?

javascript - 我们可以控制垫子抽屉切换速度吗?

ajax - Spring Security 3-Ajax注销

oauth-2.0 - OpenID Connect - 如何处理单次注销

php - CakePHP facebook注销 session 没有破坏

angular - : 'component selector' is not a known element: running ng-build on angular 5 app 中出现错误

javascript - 是否可以在现有服务器上使用服务器端渲染?

css - ngx-material-timepicker : iPhone css ignores "position: fixed"

javascript - 访问 url [material-ui + tabs] 时 Angular Ui Router 不加载 View

拖动时 Angular Material Slider 数据绑定(bind)