Giter Site home page Giter Site logo

umi-plugin-panel-tabs's Introduction

umi-plugin-panel-tabs

NPM version NPM downloads Netlify Status

image

image

image

如何使用

安装依赖即可, 以umi-plugin开头的插件会被自动加载

配置项

在 config/config.ts - defineConfig 方法中进行配置

export default defineConfig({
  panelTab: {
    use404: true,
    useAuth: true,
    autoI18n: true,
    tabsLimit: 10,
    tabsLimitWait: 500,
    tabsLimitWarnTitle: '提示',
    tabsLimitWarnContent: '您当前打开页面过多, 请关闭不使用的页面以减少卡顿!',
  },
});
配置项 类型 默认值 说明
use404 boolean true 使用内置的 404 页面, 该页面会在 tab 中显示
useAuth boolean false 使用内置的 403 页面, 加载内置的权限判断 wrapper, 该页面会在 tab 中显示
autoI18n boolean true 自动开启国际化, 仅当ant-design-pro的locale不为false且不为空时生效
tabsLimit number 10 用户打开多少页签时弹出提示
tabsLimitWait number 500 页签数量检查防抖时间, 如果一次弹出了多个提示框, 可以适当延长此时间, 单位毫秒
tabsLimitWarnTitle string 提示 [配置国际化后此项不生效] 页签数量超限弹窗的标题
tabsLimitWarnContent string 您当前打开页面过多, 请关闭不使用的页面以减少卡顿! [配置国际化后此项不生效] 页签数量超限弹窗的内容

国际化配置项

国际化配置key 国际化配置value
panelTab.403.subTitle 抱歉,你无权访问该页面
panelTab.404.subTitle 抱歉,您访问的页面不存在
panelTab.closePage 关闭页面
panelTab.close 关闭
panelTab.closeOther 关闭其他
panelTab.closeAll 关闭所有
panelTab.refresh 刷新
panelTab.tabsLimitWarnTitle 提示
panelTab.tabsLimitWarnContent 您当前打开页面过多, 请关闭不使用的页面以减少卡顿!

额外的配置项

config/route.ts中所有具有 name 属性的路由默认都会在标签页中显示, 如果不希望在标签也中出现此路由有两种方式:

  1. 移除 route 中此路由配置的 name 属性
  2. 在该路由中配置属性hideInPanelTab, 将其设置为true, 此路由就不会在标签页中显示
  3. 开启后路由里配置的菜单名会被当作菜单名国际化的 key,插件会去 locales 文件中查找 menu.[key]对应的文案,默认值为该 key, 配置可参照 ant-design-pro 菜单国际化
export default [
  {
    path: '/welcome',
    name: 'welcome',
    icon: 'smile',
    component: './Welcome',
    hideInPanelTab: true,
  },
];

自定义场景使用

提供了hook方便在其他组件中使用

import { Button, Result } from 'antd';
import React from 'react';
import { usePanelTab } from 'umi';

export default () => {
  const { close, closeCurrent, closeOther, refresh, refreshCurrent, closeAll } = usePanelTab();
  return (
    <Result
      status="404"
      title="404"
      subTitle="抱歉,您访问的页面不存在。"
      extra={
        <Button type="primary" onClick={closeCurrent}>
          关闭页面
        </Button>
      }
    />
  );
};

常见问题

Q: 有示例代码吗?

A: 演示代码在 demo分支

Q: 配置后标签栏位置出现了偏移

A: 请在app.tsx的layout方法中添加 disableContentMargin: true 配置

Q: 需要自定义控制缓存?

A: 请参阅依赖 umi-plugin-keep-alivereact-activation

LICENSE

MIT

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.