patlamontagne/react-dot-php
最新稳定版本:v0.1.2
Composer 安装命令:
composer require patlamontagne/react-dot-php
包简介
The PHP adapter for react-dot.
关键字:
README 文档
README
Dots are separated backend driven React components.
What does it mean? It means you can add multiple single react components on your front-end and send them initial props right from your backend.
react-dot is intended for projects where you can't leverage inertiajs' SPA approach, or for existing server-side rendered projects where you just need to easily add some react interactivity without resorting to rebuilding the whole thing in react.
Javascript library
Use the JS library on your front-end to dynamically render dot components. https://github.com/patlamontagne/react-dot
Installing
composer require patlamontagne/react-dot-php
Rendering a dot
Each Dot::render will generate distinct react root that the JS library will use to initialize your components.
use ReactDot\Dot; // will echo the component directly Dot::render('Layout/NavigationBar', ['mode' => 'dark']); // accepts functions Dot::render('Layout/NavigationBar', [ 'mode' => 'dark', // lazy 'auth' => function() { if ($user = user()) { return [ 'user' => $user, ]; } }, ]); // get the resulting string echo Dot::build('Layout/NavigationBar', ['mode' => 'dark']);
Share props to all dots
Shared props will be sent to all dot components on the page.
// share a key/value prop Dot::share('mode', 'dark'); // also accepts functions... Dot::share('auth', function() { if ($user = user()) { return [ 'user' => $user, ]; } }); // ...and arrays Dot::share([ 'title' => 'Welcome', // lazy 'auth' => function() { if ($user = user()) { return [ 'user' => $user, ]; } }, ]);
统计信息
- 总下载量: 268
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2022-11-25