hrdrv/laravel-onboard
Composer 安装命令:
composer require hrdrv/laravel-onboard
包简介
Track onboarding steps for users when they get setup in your app.
README 文档
README
A Laravel package to help track user onboarding steps.
Based on calebporzio/onboard.
Licence
This package is Treeware. If you use it in production, then we ask that you buy the world a tree to thank us for our work. By contributing to the Treeware forest you’ll be creating employment for local families and restoring wildlife habitats.
You can buy trees here offset.earth/treeware
Read more about Treeware at treeware.earth
Installation:
- Install the package via composer
composer require wfeller/laravel-onboard
- Add the
WF\Onboard\GetsOnboardedtrait to your app's User model
class User extends Model { use \WF\Onboard\GetsOnboarded; // ... }
Example Configuration:
Configure your steps in your App\Providers\AppServiceProvider.php
public function boot() { // This step will only apply to User::class: OnboardFacade::addStep('Create your first post', User::class) ->link('/post/create') ->cta('Create Post') // ->cacheResults() // You can cache the results to avoid duplicating queries ->completeIf(function (User $user) { // This will make 1 DB query each time to retrieve the count // The result will be cached if using cacheResults() return $user->posts()->count() > 0; }) // You may add a scope to only fetch users having completed this step // This scope will be used when querying User::onboarded()->get() ->completeScope(function (Builder $builder) { $builder->whereHas('posts'); }) // All steps are required by default for all users, but you can change this behaviour ->requiredIf(function (User $user) { return $user->type === 'writer'; }) // You may translate your required method into a DB where clause. // If you don't, your completeScope (i.e. $builder->whereHas('posts')) will be called on all Users ->requiredScope(function (Builder $builder) { $builder->where('type', 'writer'); }); }
Usage:
Now you can access these steps along with their state wherever you like. Here is an example blade template:
@if (Auth::user()->onboarding()->inProgress()) <div> @foreach (Auth::user()->onboarding()->steps as $step) <span> @if($step->complete()) <i class="fa fa-check-square-o fa-fw"></i> <s>{{ $loop->iteration }}. {{ $step->title }}</s> @else <i class="fa fa-square-o fa-fw"></i> {{ $loop->iteration }}. {{ $step->title }} @endif </span> <a href="{{ $step->link }}" {{ $step->complete() ? 'disabled' : '' }}> {{ $step->cta }} </a> @endforeach </div> @endif
Check out all the available features below:
User::onboarded()->get()->each->notify(new OnboardingComplete); // User::onboarded(true by default) User::onboarded(false)->get()->each->notify(new OnboardingIncomplete); $onboarding = Auth::user()->onboarding(); $onboarding->inProgress(); $onboarding->finished(); $onboarding->finishedRequired(); $onboarding->nextUnfinishedStep(); $onboarding->step($code); // returns the step you're looking for $onboarding->steps()->each(function($step) { $step->code; $step->title; $step->cta; $step->link; $step->complete(); $step->incomplete(); $step->required(); $step->optional(); });
Definining custom attributes and accessing them:
// Defining the attributes // Closures will be resolved using the given onboarding user as their only argument OnboardFacade::addStep('Step w/ custom attributes', User::class) ->setAttributes([ 'name' => 'Waldo', 'shirt_color' => 'Red & White', 'shirt_price' => function (User $user) { return $user->age * 4; // yes, that example sucks :) }, ]); // Accessing them $step->name; $step->shirt_color; $step->shirt_price;
Example middleware
If you want to ensure that your user is redirected to the next
unfinished onboarding step, whenever they access your web application,
you can use the following middleware as a starting point:
<?php namespace App\Http\Middleware; use Illuminate\Support\Facades\Auth; use Closure; class RedirectToUnfinishedOnboardingStep { public function handle($request, Closure $next) { if (Auth::user()->onboarding()->inProgress()) { return redirect()->to( Auth::user()->onboarding()->nextUnfinishedStep()->link ); } return $next($request); } }
Quick tip: Don't add this middleware to routes that update the state of the onboarding steps, your users will not be able to progress because they will be redirected back to the onboarding step.
hrdrv/laravel-onboard 适用场景与选型建议
hrdrv/laravel-onboard 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 5.97k 次下载、GitHub Stars 达 0, 最近一次更新时间为 2023 年 06 月 06 日, 在 PHP 生态内属于活跃度较高的组件。
我们在过去多个企业项目中使用过 hrdrv/laravel-onboard 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 hrdrv/laravel-onboard 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
统计信息
- 总下载量: 5.97k
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 19
- 依赖项目数: 0
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2023-06-06