簡體   English   中英

CRUD 背包 Laravel 。 圖表更新,當 Ajax 過濾器改變時

[英]CRUD Backpack Laravel . Graph update, when Ajax Filter get changed

請避免給我負面評論謝謝

在 Laravel Backpack admin 中,當我們點擊 Date Range filters 時,它正在過濾我們的表數據,這工作正常,但我希望當我們更改 ajax 過濾器時 Graph 也會改變。

在此處輸入圖片說明

據我所知, CrudConTroller 中的ajax日期范圍過濾器代碼:

 $this->crud->addFilter([
        'type'  => 'date_range',
        'name'  => 'created_at',
        'label' => 'Date range'
    ],
        false,
        function ($value) { // if the filter is active, apply these constraints
             $dates = json_decode($value);
             $this->crud->addClause('where', 'created_at', '>=', $dates->from);
             $this->crud->addClause('where', 'created_at', '<=', $dates->to . ' 23:59:59');
    });

和圖形正在小部件中,刀片模板文件: list.blade.php 。

 $widgets['before_content'][] = [
            'type' => 'div',
            'class' => 'row',
            'content' => [ // widgets
                [
                    'type' => 'chart',
                    'wrapperClass' => 'mt-4 col-md-12',
                    // 'class' => 'col-md-12',
                    'controller' => \App\Http\Controllers\Admin\Charts\UserChartController::class,
                    'content' => [
                        'header' => 'New Users', // optional
                         'body' => 'This chart should make it obvious', // optional
                    ]
                ],
            ],
        ]

有很多解決方案可以使用 php 來生成圖形而不是模板。 請參閱 中的相關部分。 文檔。

然后使用請求參數過濾圖形的數據。 我會嘗試發布一個例子。

我也需要這個確切的東西。 相當hacky,但我所做的是創建一個新的過濾器,從date_range過濾器開始,而不是只刷新數據表,而是刷新整個頁面。

這里是。 如果你把它放在resources/views/vendor/backpack/crud/filters/date_range_refresh.blade.php你將能夠使用date_range_refresh而不是date_range作為過濾器類型,並獲得你想要的結果:

{{-- Date Range Backpack CRUD filter --}}
<li filter-name="{{ $filter->name }}"
    filter-type="{{ $filter->type }}"
    filter-key="{{ $filter->key }}"
    class="nav-item dropdown {{ Request::get($filter->name)?'active':'' }}">
    <a href="#" class="nav-link dropdown-toggle" data-toggle="dropdown" role="button" aria-haspopup="true" aria-expanded="false">{{ $filter->label }} <span class="caret"></span></a>
    <div class="dropdown-menu p-0">
        <div class="form-group backpack-filter mb-0">
            <div class="input-group date">
                <div class="input-group-prepend">
                  <span class="input-group-text"><i class="la la-calendar"></i></span>
                </div>
                <input class="form-control pull-right"
                        id="daterangepicker-{{ $filter->key }}"
                        type="text"
                        @if ($filter->currentValue)
                            @php
                                $dates = (array)json_decode($filter->currentValue);
                                $start_date = $dates['from'];
                                $end_date = $dates['to'];
                                $date_range = implode(' ~ ', $dates);
                                $date_range = str_replace('-', '/', $date_range);
                                $date_range = str_replace('~', '-', $date_range);

                            @endphp
                            placeholder="{{ $date_range }}"
                        @endif
                        >
                <div class="input-group-append daterangepicker-{{ $filter->key }}-clear-button">
                  <a class="input-group-text" href=""><i class="la la-times"></i></a>
                </div>
            </div>
        </div>
    </div>
</li>

{{-- ########################################### --}}
{{-- Extra CSS and JS for this particular filter --}}

{{-- FILTERS EXTRA CSS  --}}
{{-- push things in the after_styles section --}}

@push('crud_list_styles')
    <!-- include select2 css-->
    <link rel="stylesheet" type="text/css" href="{{ asset('packages/bootstrap-daterangepicker/daterangepicker.css') }}" />
    <style>
        .input-group.date {
            width: 320px;
            max-width: 100%; }
        .daterangepicker.dropdown-menu {
            z-index: 3001!important;
        }
    </style>
@endpush


{{-- FILTERS EXTRA JS --}}
{{-- push things in the after_scripts section --}}

@push('crud_list_scripts')
    <script type="text/javascript" src="{{ asset('packages/moment/min/moment.min.js') }}"></script>
    <script type="text/javascript" src="{{ asset('packages/bootstrap-daterangepicker/daterangepicker.js') }}"></script>
  <script>

        function applyDateRangeFilter{{$filter->key}}(start, end) {
            if (start && end) {
                var dates = {
                    'from': start.format('YYYY-MM-DD'),
                    'to': end.format('YYYY-MM-DD')
                };
                var value = JSON.stringify(dates);
            } else {
                //this change to empty string,because addOrUpdateUriParameter method just judgment string
                var value = '';
            }
            var parameter = '{{ $filter->name }}';

            // behaviour for ajax table
            var ajax_table = $('#crudTable').DataTable();
            var current_url = ajax_table.ajax.url();
            var new_url = addOrUpdateUriParameter(current_url, parameter, value);

            // replace the datatables ajax url with new_url and reload it
            new_url = normalizeAmpersand(new_url.toString());
            ajax_table.ajax.url(new_url).load();

            // add filter to URL
            crud.updateUrl(new_url);

            // mark this filter as active in the navbar-filters
            if (URI(new_url).hasQuery('{{ $filter->name }}', true)) {
                $('li[filter-key={{ $filter->key }}]').removeClass('active').addClass('active');
            }
            else
            {
                $('li[filter-key={{ $filter->key }}]').trigger('filter:clear');
            }

            // ---------------------------------------------------------------
            // THIS is where it's different from the regular date_range filter
            // ---------------------------------------------------------------
            // When the filter is changed, refresh the page,
            // so that the NPS widget up-top get reloaded.
            
            document.location.reload();
        }

        jQuery(document).ready(function($) {
            var dateRangeInput = $('#daterangepicker-{{ $filter->key }}').daterangepicker({
                timePicker: false,
                ranges: {
                    'Last Year': [moment().startOf('year').subtract(1, 'year'), moment().endOf('year').subtract(1, 'year')],
                    'Last Month': [moment().subtract(1, 'month').startOf('month'), moment().subtract(1, 'month').endOf('month')],
                    'Last Week': [moment().subtract(1, 'week').startOf('week'), moment().subtract(1, 'week').endOf('week')],
                    'This Year': [moment().startOf('year'), moment().endOf('year')],
                    'This Month': [moment().startOf('month'), moment().endOf('month')],
                    'This Week': [moment().startOf('week'), moment().endOf('week')]
                },
                @if ($filter->currentValue)
                startDate: moment("{{ $start_date }}"),
                endDate: moment("{{ $end_date }}"),
                @endif
                alwaysShowCalendars: true,
                autoUpdateInput: true
            });

            dateRangeInput.on('apply.daterangepicker', function(ev, picker) {
                applyDateRangeFilter{{$filter->key}}(picker.startDate, picker.endDate);
            });

            $('li[filter-key={{ $filter->key }}]').on('hide.bs.dropdown', function () {
                if($('.daterangepicker').is(':visible'))
                return false;
            });

            $('li[filter-key={{ $filter->key }}]').on('filter:clear', function(e) {
                // console.log('daterangepicker filter cleared');
                //if triggered by remove filters click just remove active class,no need to send ajax
                $('li[filter-key={{ $filter->key }}]').removeClass('active');

                // ---------------------------------------------------------------
                // THIS is where it's different from the regular date_range filter
                // ---------------------------------------------------------------
                // When the filter is changed, refresh the page,
                // so that the NPS widget up-top get reloaded.
                document.location.reload();
            });

            // datepicker clear button
            $(".daterangepicker-{{ $filter->key }}-clear-button").click(function(e) {
                e.preventDefault();
                applyDateRangeFilter{{$filter->key}}(null, null);
            })
        });
  </script>
@endpush
{{-- End of Extra CSS and JS --}}
{{-- ########################################## --}}

它不漂亮......但是......這是一個解決方案😀

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM