![Oracle Drags Its Feet in the JavaScript Trademark Dispute](https://cdn.sanity.io/images/cgdhsj6q/production/919c3b22c24f93884c548d60cbb338e819ff2435-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
@epig/luna
Advanced tools
基于redux和redux-saga的数据流框架
创建应用
import App from '@dfxk/luna';
const app = new App({
render: () => {
return 'Hello world';
},
});
app.start('#root');
创建model
import createModel from '@dfxk/luna/model';
export interface UsersState {
loading: boolean;
}
const model = createModel({
modelName: 'users',
action: {
simple: {},
api: {
users: {
path: '/system/users',
},
},
},
reducer: ({ apiActionNames, createReducer }) => {
return createReducer<UsersState, any>({
[apiActionNames.users.request](state, action) {
return {
...state,
loading: true,
};
},
[apiActionNames.users.success](state, action) {
return {
...state,
loading: false,
};
},
[apiActionNames.users.error](state, action) {
return {
...state,
loading: false,
};
},
}, {
loading: false,
});
},
sagas: () => {
return [];
},
});
export default model;
给组件注入model
class App extends React.Component {}
/** 注入已加载model */
export default connect({
/** data: 属性名称, user: model名称 */
data: 'user',
})(App);
/** 注入异步model */
export default connect({
/** data: 属性名称, user: model名称 */
data: require('models/user'),
})(App);
给组件注入model的Hooks版本
import { useModel } from '@dfxk/luna';
export interface CounterProps {
}
export default function Counter (props: CounterProps) {
const [ home, homeActions, dispatch ] = useModel<HomeState, typeof homeModel.actions>(require('./model'));
return (
<div>
<p>{home.count}</p>
<button onClick={() => { dispatch(homeActions.simple.addCount()); }}>add count</button>
</div>
);
}
网络请求的Hooks版本(会触发model的错误处理)
import { useApi } from '@dfxk/luna';
export default function User (props) {
const { data } = useApi<any>({ path: '/getUser', data: { id: props.id } });
return (
<div>
<p>{data.name}</p>
</div>
);
}
异步加载组件
import DynamicComponent from '@dfxk/luna/DynamicComponent';
class App extends React.Component {
render() {
return (
<DynamicComponent
model={{
component: require('containers/User'),
}}
/>
);
}
}
FAQs
基于redux和redux-saga的数据流框架
We found that @epig/luna 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.