antd tab组件怎么使用hooks?

发布于 2022-09-12 14:03:25 字数 260 浏览 17 评论 0

image.png
https://ant.design/components...

官网的add和remove也没有调用,,没看懂onEdit怎么用,没有this怎么操作?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

人间不值得 2022-09-19 14:03:25

我用函数组件重写了一下,那个 action 其实就是调了下 remove

import React, { useState } from "react";
import ReactDOM from "react-dom";
import "antd/dist/antd.css";
import "./index.css";
import { Tabs, Button } from "antd";

const { TabPane } = Tabs;

const Demo: React.FC = () => {
  const [newTabIndex, setNewTabIndex] = useState<number>(0);
  const [panes, setPanes] = useState([
    { title: "Tab 1", content: "Content of Tab Pane 1", key: "1" },
    { title: "Tab 2", content: "Content of Tab Pane 2", key: "2" }
  ]);
  const [activeKey, setActiveKey] = useState<string>(panes[0]?.key);

  const onChange = (activeKey: string) => {
    setActiveKey(activeKey);
  };

  const add = () => {
    const activeKey = `newTab${newTabIndex + 1}`;
    setNewTabIndex(newTabIndex + 1);
    panes.push({ title: "New Tab", content: "New Tab Pane", key: activeKey });
    setActiveKey(activeKey);
    setPanes(panes);
  };

  const remove = (targetKey) => {
    let lastIndex;
    panes.forEach((pane, i) => {
      if (pane.key === targetKey) {
        lastIndex = i - 1;
      }
    });
    const tempPanes = panes.filter((pane) => pane.key !== targetKey);
    if (tempPanes.length && activeKey === targetKey) {
      if (lastIndex >= 0) {
        setActiveKey(tempPanes[lastIndex].key);
      } else {
        setActiveKey(tempPanes[0].key);
      }
    }
    setActiveKey(activeKey);
    setPanes(tempPanes);
  };

  const onEdit = (targetKey, action) => {
    remove(targetKey);
  };

  return (
    <div>
      <div style={{ marginBottom: 16 }}>
        <Button onClick={add}>ADD</Button>
      </div>
      <Tabs
        hideAdd
        onChange={onChange}
        activeKey={activeKey}
        type="editable-card"
        onEdit={onEdit}
      >
        {panes.map((pane) => (
          <TabPane tab={pane.title} key={pane.key}>
            {pane.content}
          </TabPane>
        ))}
      </Tabs>
    </div>
  );
};

ReactDOM.render(<Demo />, document.getElementById("container"));
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文