npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@huxy/layout

v2.1.5

Published

react configurable layout

Downloads

283

Readme

layout

GitHub license npm version npm

功能

layout 框架是传统的中后台 layout 模板,提供了头部导航栏、菜单栏、底部栏、logo、面包屑等。

  • 支持菜单栏展示、隐藏,展开、缩小等配置。
  • 支持左侧垂直菜单、顶部水平菜单、水平垂直菜单组合。
  • 支持自适应屏幕。根据屏幕大小展开、缩小、隐藏菜单,头部信息展示方式切换。
  • 支持 nav 导航栏自定义。自定义导航信息、下拉信息、点击事件等。

使用

常用配置:

  • menuType: vertical | horizontal | compose, 默认 vertical。横纵菜单配置。
  • MenuBottom:菜单底部内容
  • MainTop:主页顶部内容。如:面包屑。
  • Footer:页面底部内容。
  • headerStyle、asideStyle、menuStyle、contentStyle:样式。
  • handleNavClick:导航栏点击事件。
  • leftList、rightList:左侧导航栏、右侧导航栏配置。
  • logo、title、Link:logo、标题、Link 组件 注入。
  • menuAnimate: Boolean | String, 默认 false。

nav configs

export const leftNav = () => {
  const left = getIntls('nav.left', {});
  return [
    {
      key: 'collapse',
      name: left?.collapse ?? 'collapse',
      type: 'collapse',
      smShow: true,
      Custom: props => <CustomCollapse {...props} />,
    },
    {
      key: 'projectList',
      name: left?.projectList ?? 'projectList',
      type: 'projectList',
      arrowDir: 'lt',
      Ricon: true,
      children: [
        {
          key: 'API文档',
          name: left?.apis ?? 'API文档',
          icon: <Icon icon="ApiOutlined" />,
          type: 'link',
          link: 'http://ihuxy.com:8010',
        },
      ],
    },
    {
      key: 'wechat',
      title: 'wechat',
      icon: <Icon icon="WechatOutlined" />,
      arrowDir: 'lt',
      ChildRender: item => (
        <div className="follow-me">
          <img src={wx} alt="wechat" />
          <p>{left?.followMe ?? 'followMe'}:yiru_js</p>
        </div>
      ),
    },
    {
      key: 'configs',
      icon: <Icon icon="ToolOutlined" />,
      type: 'configs',
      smShow: true,
      Custom: props => <Settings {...props} />,
    },
    {
      key: 'search',
      title: left?.search ?? '搜索',
      Custom: props => <Search {...props} />,
    },
  ];
};
  • key: 标识符
  • name: 展示名
  • type: 类型
  • title: tooltop 展示信息
  • icon: 图标
  • img: 自定义图标
  • smShow: 小屏是否展示,默认不展示
  • Custom: 自定义组件
  • ChildRender: 自定义渲染
  • children: 下拉子菜单配置