定制 webotvorba/livewire-calendar 二次开发

按需修改功能、优化性能、对接业务系统,提供一站式技术支持

邮箱:yvsm@zunyunkeji.com | QQ:316430983 | 微信:yvsm316

webotvorba/livewire-calendar

Composer 安装命令:

composer require webotvorba/livewire-calendar

包简介

Laravel Livewire calendar component

README 文档

README

This package allows you to build a Livewire monthly calendar grid to show events for each day. Events can be loaded from within the component and will be presented on each day depending on the date of the event.

Special thanks to asantibanez/livewire-calendar as this originally was a fork of that package. We are using this new package in one of our large projects so we will be actively maintaining.

Preview

preview

Installation

You can install the package via composer:

composer require omnia-digital/livewire-calendar

Compatibility

This package supports a wide range of PHP, Laravel, and Livewire versions:

Package Version PHP Laravel Livewire
4.1.x 7.4 - 8.4 6 - 12 2, 3, 4
3.2.x 7.4 - 8.3 6 - 12 2, 3
3.1.x 7.4 - 8.3 6 - 11 2, 3
3.0.x 7.4 - 8.2 6 - 10 2, 3
2.2.x 7.4 - 8.2 6 - 10 2

Recommended installation:

composer require omnia-digital/livewire-calendar:^4.1

For upgrade guides, see UPGRADE.md.

Requirements

This package uses livewire/livewire (https://laravel-livewire.com/) under the hood.

It also uses TailwindCSS (https://tailwindcss.com/) for base styling.

Please make sure you include both of this dependencies before using this component.

Usage

In order to use this component, you must create a new Livewire component that extends from LivewireCalendar

You can use make:livewire to create a new component. For example.

php artisan make:livewire AppointmentsCalendar
  • In the AppointmentsCalendar class, instead of extending from the base Component Livewire class, extend from LivewireCalendar.
  • Remove the render method or you will override the parent and the calendar will not display.
  • You'll have a class similar to this snippet.
class AppointmentsCalendar extends LivewireCalendar
{
    //
}

In this class, you must override the following method

public function events() : Collection
{
    // must return a Laravel collection
}

In the events() method, return a collection holding the events that will be displayed on the calendar. Events must be keyed arrays holding at least the following keys: id, title, description, date (date must be a Carbon\Carbon instance).

Example

public function events() : Collection
{
    return collect([
        [
            'id' => 1,
            'title' => 'Breakfast',
            'description' => 'Pancakes! 🥞',
            'date' => Carbon::today(),
        ],
        [
            'id' => 2,
            'title' => 'Meeting with Pamela',
            'description' => 'Work stuff',
            'date' => Carbon::tomorrow(),
        ],
    ]);
}

The date value will be used to determine to what day the event belongs to. To load values in the events() method, you can use the following component properties to filter your events.

  • startsAt: starting date of month
  • endsAt: ending date of month
  • gridStartsAt: starting date of calendar grid. Can be a date from the previous month.
  • endingStartsAt: ending date of calendar grid. Can be a date from the next month.

Example

public function events(): Collection
{
    return Model::query()
        ->whereDate('scheduled_at', '>=', $this->gridStartsAt)
        ->whereDate('scheduled_at', '<=', $this->gridEndsAt)
        ->get()
        ->map(function (Model $model) {
            return [
                'id' => $model->id,
                'title' => $model->title,
                'description' => $model->notes,
                'date' => $model->scheduled_at,
            ];
        });
}

Multi-Day Events

Events can span multiple days using start_date and end_date instead of the legacy date field:

public function events(): Collection
{
    return collect([
        [
            'id' => 1,
            'title' => 'Conference',
            'description' => 'Annual Tech Conference',
            'start_date' => Carbon::parse('2024-03-15'),
            'end_date' => Carbon::parse('2024-03-17'),
        ],
    ]);
}

This event will appear on March 15, 16, and 17 with visual styling indicating it spans multiple days.

Multi-Day Event with Times

You can optionally include start_time and end_time for display purposes:

[
    'id' => 2,
    'title' => 'Training Session',
    'start_date' => Carbon::parse('2024-03-20'),
    'end_date' => Carbon::parse('2024-03-22'),
    'start_time' => '09:00',
    'end_time' => '17:00',
]

The start time will display on the first day, and end time on the last day.

Event Metadata in Custom Views

When customizing the event view, multi-day events include additional metadata:

  • $event['is_multiday'] - Boolean, true if event spans multiple days
  • $event['is_first_day'] - Boolean, true if this is the first day of the event
  • $event['is_last_day'] - Boolean, true if this is the last day of the event
  • $event['day_position'] - Integer, which day of the event (1-indexed)
  • $event['total_days'] - Integer, total number of days the event spans

Note: Multi-day events have drag and drop disabled by default.

Backwards Compatibility

Existing events using the date field will continue to work. The calendar automatically detects which format is being used. If both date and start_date/end_date are present, the new format takes precedence.

Now, we can include our component in any view.

Example

<livewire:appointments-calendar/>

This will render a calendar grid.

By default, the component will render the current month. If you want to change the starting month, you can set the initialYear and initialMonth props.

Example

<livewire:appointments-calendar
   initialYear="2019"
   initialMonth="12"
/>

If you use it as a nested component, you can use variables and make it dynamic (:key prop will force livewire to re-render calendar).

Example

<livewire:appointments-calendar
   initialYear="{{ $currentYear }}"
   initialMonth="{{ $currentMonth }}"
   :key="$currentYear.$currentMonth"
/>

For Livewire 3+: Drag and drop is now handled via Alpine.js (bundled with Livewire 3+), so @livewireCalendarScripts is optional. It's only needed if you've published and customized the views using the legacy inline event handlers.

For Livewire 2: You must include scripts with @livewireCalendarScripts to enable drag and drop. Include them after @livewireScripts:

@livewireScripts
@livewireCalendarScripts

The component has 3 public methods that can help navigate forward and backward through months:

  • goToPreviousMonth
  • goToNextMonth
  • goToCurrentMonth

You can use these methods on extra views using before-calendar-view or after-calendar-view explained below.

Advanced usage

Ui customization

You can customize the behavior of the component with the following properties when rendering on a view:

  • week-starts-at which can be a number from 0 to 6 according to Carbon days of week to indicate with which day of week the calendar should render first.

  • event-view which can be any blade.php view that will be used to render the event card. This view will be injected with a $event variable holding its data.

  • before-calendar-view and after-calendar-view can be any blade.php views that can be rendered before or after the calendar itself. These can be used to add extra features to your component using Livewire.

  • drag-and-drop-classes can be any css class used to render the hover effect when dragging an event over each day in the calendar. By default, this value is border border-blue-400 border-4

  • day-of-week-view which can be any blade.php view that will be used to render the header of each calendar day. This view will be injected the day property which is a Carbon instance of the day of the week.

<livewire:appointments-grid
    week-starts-at="0, 1, 2, 3, 4, 5 or 6. 0 stands for Sunday"
    event-view="path/to/view/starting/from/views/folder"
    day-of-week-view="path/to/view/starting/from/views/folder"
    before-calendar-view="path/to/view/starting/from/views/folder"
    after-calendar-view="path/to/view/starting/from/views/folder"
    drag-and-drop-classes="css classes"
/>

Advanced ui customization

(This options should be used using blade views based on the component default views)

To use these options, it is recommended to publish the base blade views used by the component and extend their behavior and styling to your liking. To do this, run php artisan vendor:publish and export the livewire-calendar tag.

  • calendar-view which can be any blade.php view that renders the whole component. It's advised to override this view with an altered copy of the base calendar-view eg adding a view next to the component.

  • day-view which can be any blade.php view that will be used to render each day of the month. This view will be injected with the following properties: componentId (id of the Livewire component) , day (day of the month as a Carbon instance) , dayInMonth (if the day is part of the month or not) , isToday (if the day is today's date) , events (events collection that correspond to this day)

Example

<livewire:appointments-grid
    calendar-view="path/to/view/starting/from/views/folder"
    day-view="path/to/view/starting/from/views/folder"
/>

Interaction customization

You can override the following methods to add interactivity to your component

public function onDayClick($year, $month, $day)
{
    // This event is triggered when a day is clicked
    // You will be given the $year, $month and $day for that day
}

public function onEventClick($eventId)
{
    // This event is triggered when an event card is clicked
    // You will be given the event id that was clicked
}

public function onEventDropped($eventId, $year, $month, $day)
{
    // This event will fire when an event is dragged and dropped into another calendar day
    // You will get the event id, year, month and day where it was dragged to
}

Automatic polling

You can also add automatic polling if needed using pollMillis parameters. You can combo with pollAction in order to call a specific action in your component at the desired polling interval.

Disabling interactions

By default click and drag/drop events are enabled. To disable them you can use the following parameters when rendering the component

<livewire:appointments-grid
    :day-click-enabled="false"
    :event-click-enabled="false"
    :drag-and-drop-enabled="false"
/>

Testing

composer test

Changelog

Please see CHANGELOG for more information what has changed recently.

Contributing

Please see CONTRIBUTING for details.

Security

If you discover any security related issues, please email us at info@omnia.church instead of using the issue tracker.

Credits

License

The MIT License (MIT). Please see License File for more information.

webotvorba/livewire-calendar 适用场景与选型建议

webotvorba/livewire-calendar 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 29 次下载、GitHub Stars 达 0, 最近一次更新时间为 2025 年 02 月 27 日, 在 PHP 生态内属于活跃度较高的组件。

它主要适用于以下技术方向: 「livewire-calendar」 「omnia」 「omnia-church-apps」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。

我们在过去多个企业项目中使用过 webotvorba/livewire-calendar 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。

围绕 webotvorba/livewire-calendar 我们能提供哪些服务?
定制开发 / 二次开发

基于 webotvorba/livewire-calendar 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。

BUG 修复 & 性能优化

线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。

项目外包 & 长期维护

承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。

yvsm@zunyunkeji.com QQ:316430983 微信:yvsm316 西安尊云信息科技 · 专注 PHP / Go / 分布式系统研发

统计信息

  • 总下载量: 29
  • 月度下载量: 0
  • 日度下载量: 0
  • 收藏数: 0
  • 点击次数: 18
  • 依赖项目数: 0
  • 推荐数: 0

GitHub 信息

  • Stars: 0
  • Watchers: 0
  • Forks: 22
  • 开发语言: PHP

其他信息

  • 授权协议: MIT
  • 更新时间: 2025-02-27