Ionic - 如何确定滚动是否位于内容的底部

Ste*_*tar 2 ionic-framework ionic2

我的应用程序中有一些聊天功能,当输入新消息时,它会自动滚动到底部<ion-content>,但是,就像许多聊天应用程序一样,如果您在聊天中向上滚动以阅读最新消息之前的内容,我不想滚动.只有当用户位于屏幕的最底部时,我才会在新消息进入后滚动到底部.我还没有解决这个问题.

这是我目前的代码:

scrollToBottom() {

  // If the scrollTop is greater than the height, we are at the bottom,
  // in which case, show scrolling animation
  let dimensions = this.content.getContentDimensions();
  let scrollHeight = dimensions.scrollHeight;
  let scrollTop = dimensions.scrollTop;
  let contentHeight = dimensions.contentHeight;
  let heightAndScrollTop = contentHeight + scrollTop;

  // This is the best I can get, assuming that the screen is in a consistent dimension, which we all know is basically non-existent due to all the different types of screens
  if((scrollHeight - heightAndScrollTop) <= 39 && (scrollHeight - heightAndScrollTop) >= 0) { 
    this.content.scrollToBottom(300);
  }
}
Run Code Online (Sandbox Code Playgroud)

知道我能做些什么来解决这个问题吗?

Dua*_*nnx 6

首先,在内容的底部创建一个元素:

<ion-content>
    //Your messages go here
    ...
    <div id="check-point"></div>  <-- Notice this element
</ion-content>
Run Code Online (Sandbox Code Playgroud)

其次,编写一个函数来检测check-point元素是否完全在视口(可视区域)中.您可以在SO中轻松找到功能.这是一个简单的:

   //This function just check if element is fully in vertical viewport or not
   isElementInViewPort(element: HTMLElement,  viewPortHeight: number) {
      let rect = element.getBoundingClientRect(); 
      return rect.top >= 0  && (rect.bottom <= viewPortHeight);
   }
Run Code Online (Sandbox Code Playgroud)

最后,每当您推送新邮件时,请检查是否check-point在视口中.如果是,则表示用户位于页面底部.如果不是,则表示用户不是.