
Security News
AGENTS.md Gains Traction as an Open Format for AI Coding Agents
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
@talentui/biz-helper
Advanced tools
如果你计划让你整个应用的State都是immutable的,用这个替换redux的combineReducers
如果你在写ActionCreators的时候,想用一个树型结构来代码你组件的结构,并且在传递的时候不用一个一个把方法列出来,可以这样
export const actionCreator = {
home: {
switchLang: function(lang){
return {type: SWITCH, lang}
},
header: {
logout: function(){}
},
sidebar: {
search: function(){}
},
content: {
update: function(){}
}
}
}
此时你的home组件可以这样组织
import React, {Component} from 'react'
import {connect} from 'react-redux';
import {actionCreator} from './redux/actions'
import mapActionCreators from '@beisen/talent-ui-helper/lib/utils/mapActionCreators';
import Header,
import Sidebar,
import Content,
@connect(mapStateToProps, mapActionCreators(actionCreator))
export default class extends Component {
render(){
let {home} = this.props
let {switchLang, header, sidebar, content} = home;
return <div>
<span onClick={switchLang}></span>
<Header {...header}/>
<Sidebar {...sidebar}/>
<Content {...content}/>
</div>
}
}
在你的header组件中
export (props) => {
let {logout} = props;
return <header >
<a href='javascript:;' onClick={logout}>
登出
</a>
</header>
}
和console.log()差不多,代码很简单,详情自己看
[path: lib/middleware/analysisAfter.js]
[path: lib/middleware/analysisBefore.js]
[path: lib/middleware/fetch.js]
FAQs
helpers form legacy talentui and new helpers
The npm package @talentui/biz-helper receives a total of 3 weekly downloads. As such, @talentui/biz-helper popularity was classified as not popular.
We found that @talentui/biz-helper demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 4 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
AGENTS.md is a fast-growing open format giving AI coding agents a shared, predictable way to understand project setup, style, and workflows.
Security News
/Research
Malicious npm package impersonates Nodemailer and drains wallets by hijacking crypto transactions across multiple blockchains.
Security News
This episode explores the hard problem of reachability analysis, from static analysis limits to handling dynamic languages and massive dependency trees.