admin管理员组

文章数量:1400092

I have a ponent MainContentwith its child Component AddMock. There is a table in MainContent which shows some list of items. It has a certain action on each row like view and edit which are rendered by Icons by semantic-UI react. By clicking on each icon, I need to scroll up and expand an accordion. The accordion is in AddMock.

// AddMock.js
const AddMock = () => {
  return (
    <div className="row">
      <Accordion style={{ paddingLeft: "32px" }}>
        <Card className="collapseStyle">
          <Card.Header>
            <Accordion.Toggle as={Button} variant="link" eventKey="0">
              Add Mock
            </Accordion.Toggle>
          </Card.Header>
          <Accordion.Collapse eventKey="0">
            <Card.Body>
              <Container className="mockbody">
                <Header as="h3">Hierarchy</Header>
                <TabContent />
              </Container>
            </Card.Body>
          </Accordion.Collapse>
        </Card>
      </Accordion>
    </div>
  );
};

Below is the MainContent.js

const MainContent = () => {
  
  return (
    <div>
      <AddMock />
      <div className="container-fluid">
        <div className="row">
          <div className="col-md-12">
            <div className="card">
              <div className="card-header card-header-info">
                <h4 className="card-title ">MOCK</h4>
              </div>
              <div className="card-body">
                <form>
                  {loading ? (
                    <div className="table-responsive">
                      <table className="table">
                        <thead>
                          <tr>
                            <th>AppName</th>
                            <th>Parent_App</th>
                            <th>Created_Date</th>
                            <th>Req_Path</th>
                            <th>Resp_Code</th>
                            <th>Resp_Content_Type</th>
                            <th>Resp_Delay</th>
                            <th>Action</th>
                          </tr>
                        </thead>
                        <tbody>
                          {data.map((routes, index) => {
                            return routes.map(contents, index);
                          })}
                        </tbody>
                      </table>
                    </div>
                  ) : (
                    <Spinner
                      animation="border"
                      style={{ marginLeft: "620px" }}
                    />
                  )}
                </form>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  );
};

Is it possible to implement this with window.scrollTo() or any other better way to implement this in react?

I have a ponent MainContentwith its child Component AddMock. There is a table in MainContent which shows some list of items. It has a certain action on each row like view and edit which are rendered by Icons by semantic-UI react. By clicking on each icon, I need to scroll up and expand an accordion. The accordion is in AddMock.

// AddMock.js
const AddMock = () => {
  return (
    <div className="row">
      <Accordion style={{ paddingLeft: "32px" }}>
        <Card className="collapseStyle">
          <Card.Header>
            <Accordion.Toggle as={Button} variant="link" eventKey="0">
              Add Mock
            </Accordion.Toggle>
          </Card.Header>
          <Accordion.Collapse eventKey="0">
            <Card.Body>
              <Container className="mockbody">
                <Header as="h3">Hierarchy</Header>
                <TabContent />
              </Container>
            </Card.Body>
          </Accordion.Collapse>
        </Card>
      </Accordion>
    </div>
  );
};

Below is the MainContent.js

const MainContent = () => {
  
  return (
    <div>
      <AddMock />
      <div className="container-fluid">
        <div className="row">
          <div className="col-md-12">
            <div className="card">
              <div className="card-header card-header-info">
                <h4 className="card-title ">MOCK</h4>
              </div>
              <div className="card-body">
                <form>
                  {loading ? (
                    <div className="table-responsive">
                      <table className="table">
                        <thead>
                          <tr>
                            <th>AppName</th>
                            <th>Parent_App</th>
                            <th>Created_Date</th>
                            <th>Req_Path</th>
                            <th>Resp_Code</th>
                            <th>Resp_Content_Type</th>
                            <th>Resp_Delay</th>
                            <th>Action</th>
                          </tr>
                        </thead>
                        <tbody>
                          {data.map((routes, index) => {
                            return routes.map(contents, index);
                          })}
                        </tbody>
                      </table>
                    </div>
                  ) : (
                    <Spinner
                      animation="border"
                      style={{ marginLeft: "620px" }}
                    />
                  )}
                </form>
              </div>
            </div>
          </div>
        </div>
      </div>
    </div>
  );
};

Is it possible to implement this with window.scrollTo() or any other better way to implement this in react?

Share Improve this question edited Aug 27, 2020 at 9:33 95faf8e76605e973 14.2k4 gold badges29 silver badges55 bronze badges asked Aug 21, 2020 at 16:54 Akhil SuseelanAkhil Suseelan 2171 gold badge5 silver badges25 bronze badges 3
  • 1 I think you can use refs in this situation. Check this out: stackoverflow./questions/43441856/… – kubilay salih Commented Aug 22, 2020 at 7:15
  • @kubilaysalih: Can you give an example on how can I add this in my case? – Akhil Suseelan Commented Aug 22, 2020 at 7:42
  • 1 here example: codesandbox.io/s/… also check this library. you can use ref version with smooth animations github./ganderzz/react-scroll-to – kubilay salih Commented Aug 22, 2020 at 7:59
Add a ment  | 

1 Answer 1

Reset to default 4 +50

Using Ref

To start things off, we can have a state that keeps the eventKey of the active Accordion

const [activeKey, setActiveKey] = useState("");

After that, we use a ref for our React-Bootstrap Accordion ponent. We need to use Forwarded Refs later on to at least assign a ref to the topmost DOM element of the Accordion ponent so we can scroll to it.

As for the Icon, take a look at its onClick event, this simply sets the activeKey to "0" which is mapped with your Accordion.Collapse ponent's eventKey. This will serve as the trigger point for its "expanding".

// we are going to need a ref to the Accordion element go get its position/use the scrollIntoView function
const accordElem = useRef(null);

const handleClickEdit = () => {
  setActiveKey("0"); // "0" here is as defined in your Accordion.Collapse eventKey
  accordElem.current.scrollIntoView({
    behavior: "smooth",
    block: "end",
    inline: "nearest"
  }); // initiate scroll to the "AddMock" Accordion ponent
};

return (
  <div>
    <AddMock
      activeKey={activeKey}
      setActiveKey={setActiveKey}
      ref={accordElem}
    />

    ...

    <Icon
      name="pencil"
      size="huge"
      style={{ cursor: "pointer" }}
      onClick={() => handleClickEdit("0")}
    />

For the scrolling we can use https://developer.mozilla/en-US/docs/Web/API/Element/scrollIntoView. In addition, there are of course other alternatives such as scrollTo

Finally, here is how our Accordion ponent looks like with the forwarded ref & utilization of the activeKey prop taken from the parent state:

const AddMock = React.forwardRef((props, ref) => {
  // optional re-toggling of expanded accordion
  function handleClickToggle(eventKey) {
    if (eventKey === props.activeKey) {
      props.setActiveKey("");
    } else {
      props.setActiveKey(eventKey);
    }
  }

  return (
    <div className="row" ref={ref}>
      <Accordion style={{ paddingLeft: "32px" }} activeKey={props.activeKey}>
        <Card className="collapseStyle">
          <Card.Header>
            <Accordion.Toggle
              as={Button}
              variant="link"
              eventKey="0"
              onClick={() => handleClickToggle("0")}
            >
              Add Mock
            </Accordion.Toggle>
          </Card.Header>
          <Accordion.Collapse eventKey="0">
            <Card.Body>
              ...

CodeSandBox: https://codesandbox.io/s/react-semantic-ui-react-bootstrap-3ndyl?file=/src/App.js:2444-3230

本文标签: javascriptHow to scroll and expand an Accordion by onClick on an icon from a componentStack Overflow