javascript - Adding in a scroll button with Ionic React - Stack Overflow

I'm trying to add in a button which scrolls to the top of the page, using Ionic React. This is pa

I'm trying to add in a button which scrolls to the top of the page, using Ionic React. This is part of my code so far -

...
function scrollToTop() {
    return document.getElementById("page")!.scrollTop;
}

const Home: React.FC = () => {
  return (
    <IonPage>
      <IonHeader>
        <IonToolbar>
            <IonButtons slot="start">
                <IonMenuButton />
            </IonButtons>
            <IonTitle slot="end">Ionic Template - JB</IonTitle>
        </IonToolbar>
      </IonHeader>
      <IonContent id={"page"}>
        <IonCard  className="weleImage">
            <img src="/assets/weleBacking.jpg" alt=""/>
            <IonCardHeader>
                <IonCardTitle>Wele!</IonCardTitle>
                <IonCardSubtitle>To this Ionic Template</IonCardSubtitle>
            </IonCardHeader>
            <IonCardContent>
                Lorem ipsum........
            </IonCardContent>
        </IonCard>
        {/*Checklist*/}
        <IonList>
            {form.map(({val, isChecked, isDisabled}) => (
                <IonItem key={val}>
                    <IonLabel>{val}</IonLabel>
                    <IonCheckbox slot={"start"} value={val} checked={isChecked} disabled={isDisabled} />
                </IonItem>
                ))}
        </IonList>
          <IonButton onClick={scrollToTop}>Scroll to top</IonButton>
      </IonContent>
    </IonPage>
  );
};

The scrollToTop function should scroll to the to the top of the element with id 'page' but tis doesn't. I don't get any errors when clicking the button, instead nothing at all happens.

I know this is a trivial thing to implement in Angular but I'm having trouble using React for this. Any help would be great thanks.

I'm trying to add in a button which scrolls to the top of the page, using Ionic React. This is part of my code so far -

...
function scrollToTop() {
    return document.getElementById("page")!.scrollTop;
}

const Home: React.FC = () => {
  return (
    <IonPage>
      <IonHeader>
        <IonToolbar>
            <IonButtons slot="start">
                <IonMenuButton />
            </IonButtons>
            <IonTitle slot="end">Ionic Template - JB</IonTitle>
        </IonToolbar>
      </IonHeader>
      <IonContent id={"page"}>
        <IonCard  className="weleImage">
            <img src="/assets/weleBacking.jpg" alt=""/>
            <IonCardHeader>
                <IonCardTitle>Wele!</IonCardTitle>
                <IonCardSubtitle>To this Ionic Template</IonCardSubtitle>
            </IonCardHeader>
            <IonCardContent>
                Lorem ipsum........
            </IonCardContent>
        </IonCard>
        {/*Checklist*/}
        <IonList>
            {form.map(({val, isChecked, isDisabled}) => (
                <IonItem key={val}>
                    <IonLabel>{val}</IonLabel>
                    <IonCheckbox slot={"start"} value={val} checked={isChecked} disabled={isDisabled} />
                </IonItem>
                ))}
        </IonList>
          <IonButton onClick={scrollToTop}>Scroll to top</IonButton>
      </IonContent>
    </IonPage>
  );
};

The scrollToTop function should scroll to the to the top of the element with id 'page' but tis doesn't. I don't get any errors when clicking the button, instead nothing at all happens.

I know this is a trivial thing to implement in Angular but I'm having trouble using React for this. Any help would be great thanks.

Share Improve this question asked Nov 6, 2019 at 12:27 James BrightmanJames Brightman 9352 gold badges14 silver badges24 bronze badges 2
  • you can use scroll(0,0) it will scroll to the top of the page !! – Beginner Commented Nov 6, 2019 at 12:51
  • Unfortunately this still doesn't do anything - maybe the id needs to be moved to another Ionic tag? – James Brightman Commented Nov 6, 2019 at 13:42
Add a ment  | 

2 Answers 2

Reset to default 15

You can do this with scrollToTop method of IonContent, but you have to enable scrollEvents first. In ionic react, the methods can be accessed using refs. Doesn't look much reacty but at least this works for now.

........    
import React, {useRef} from 'react';

const Home: React.FC = (props) => {
    const contentRef = useRef<HTMLIonContentElement | null>(null);
    const scrollToTop= () => {
        contentRef.current && contentRef.current.scrollToTop();
    };
    return (
        .....
        <IonContent ref={contentRef} scrollEvents={true}>
            ................
            <IonButton onClick={()=>scrollToTop()}>Scroll to top</IonButton>
        </IonContent>
        .....
    );
};

export const waitForElement = <K extends keyof HTMLElementTagNameMap>(
  sel: K,
  cb: (el: HTMLElementTagNameMap[K]) => void
) => {
  const el = document.querySelector(sel)

  if (!el || !el.offsetHeight) {
    requestAnimationFrame(() => waitForElement(sel, cb))
  } else {
    cb(el)
  }
}
//Use this function to scroll top.
export function scrollTop() {

  waitForElement("ion-content", (contentEl) => {
    if (contentEl) {
      contentEl.scrollToTop()
    }
  })
}

发布者:admin,转转请注明出处:http://www.yc00.com/questions/1743619073a4479471.html

相关推荐

  • javascript - Adding in a scroll button with Ionic React - Stack Overflow

    I'm trying to add in a button which scrolls to the top of the page, using Ionic React. This is pa

    21小时前
    10

发表回复

评论列表(0条)

  • 暂无评论

联系我们

400-800-8888

在线咨询: QQ交谈

邮件:admin@example.com

工作时间:周一至周五,9:30-18:30,节假日休息

关注微信