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

@bale-sprint/react

v1.1.7

Published

React common files, contains mobile and pc .

Downloads

117

Readme

React 框架公用文件

提取 React 框架公用文件, 在 pcmobile 中引用, 减少代码量, React 版本为 18.x

Frameworks Project Structure Src

├── types                                            // *.d.ts 目录
├── assets                                           // 资源文件目录
│   ├── locales                                      // 国际化配置
│   │   ├── en.toml                                  // 中文
│   │   └── zh.toml                                  // 英文
├── communal                                         // 框架目录
│   ├── config                                       // 配置文件
│   │   ├── constant.toml                            // 全局常量类配置文件
│   │   ├── system.toml                              // 全局系类配置文件
│   │   └── index.tsx                                // 配置导出
│   ├── exception                                    // 捕捉全局异常
│   ├── hooks                                        // hooks
│   ├── request                                      // 封装 axios 请求
│   ├── router                                       // 框架路由类
│   ├── utils                                        // 全局公共文件
│   ├── index.tsx                                    // 默认入口
│   ├── layout.tsx                                   // layout
│   └── theme.tsx                                    // theme
├── route                                            // 配置路由
│   ├── router.back.toml                             // 配置后端请求URL
│   ├── router.url.toml                              // 配置前端请求URL
│   └── index.tsx                                    // 配置路由
└──views                                             // 业务
│   ├── components                                   // 公共组件
│   ├── modules                                      // 公共模块
│   ├── pages                                        // 页面
│   └── stores                                       // stores

准备工作

  • communal 下创建 layout.tsx 文件, 编写路由, 参考如下:
import { Route, Routes } from 'react-router-dom'
const RenderRoutes = (routes: RouteInterface[]) => {
  // 判断没用的路由, 跳转到404
  let usedRoutes: Array<RouteInterface> = []
  for (let router of routes) {
    if (!Utils.isBlank(router.path) || router.component !== null) {
      usedRoutes.push(router)
    }
  }

  if (usedRoutes.length > 0) {
    return (
      <Routes>
        {
          routes.map((route: RouteInterface, index: number) => {
              return (
                <Route
                  key={index}
                  path={route.path}
                  element={
                    <Suspense fallback={<Loading show={true} />}>
                        <ScrollToTop />
                        <route.component routes={route.routes || []} />
                    </Suspense>
                  }>
                 </Route>
               )
          })
        }
    </Routes>
    )
  } else {
    return <Route element={<NotFound />} />
  }
}

// 切换皮肤
const switchSkin = (skin: string = '') => {
  let classList = document.body.classList || []
  const remove = () => {
    if (skin === CONSTANT.SKINS[0]) {
      classList.remove(CONSTANT.SKINS[1])
    } else {
      classList.remove(CONSTANT.SKINS[0])
    }
  }

  remove()
  if (!classList.contains(skin)) {
    classList.add(skin)
  }
}

const Layout = (): ReactElement => {
  const { commonStore } = useStore()

  useEffect(
    () => {
      switchSkin(commonStore.skin)
    },
    [commonStore.skin]
  )

  const render = () => {
    return RenderRoutes(routes)
  }

  return render()
}

export default observer(Layout)
  • assets/stypes 下面添加 theme 文件夹, 并添加 index.less 和 其他皮肤文件
  • route 下添加 router.back.tomlrouter.url.toml 以及 index.tsx
  • views/stores 下添加 config.tsx, 并导出 store, 参考如下:
import commonStore from './base/common.store'

export function createStore() {
  return {
    commonStore,
  }
}

export const store = createStore()
export type Stores = ReturnType<typeof createStore>
  • 在项目根目录下添加 tsconfig.path.json 文件

使用

  • 引入
  npm install @bale-sprint/react
  • api
    • tsconfig.path.json 中配置别名后, 可直接通过别名引入相关文件, 参考如下:
import {useMount} from '@hooks/useMount'
  • 别名参考如下(在 paths 下配置):
{
  "@/*": ["src/*"],
  "@assets/*": ["src/assets/*"],
  "@communal/*": ["src/communal/*"],
  "@config/*": ["src/communal/config/*"],
  "@hooks/*": ["src/communal/hooks/*"],
  "@router/*": ["src/communal/router/*"],
  "@request/*": ["src/communal/request/*"],
  "@configs/*": ["src/communal/configs/*"],
  "@route/*": ["src/route/*"],
  "@views/*": ["src/views/*"],
  "@stores/*": ["src/views/stores/*"],
  "@utils/*": ["src/communal/utils/*"],
  "@pages/*": ["src/views/pages/*"]
}