coryrose1 / livewire-tables

An extension for Laravel Livewire that allows you to effortlessly scaffold datatables with optional pagination, search, and sort.
Other
87 stars 19 forks source link

Detecting sort in the column header #10

Open coryrose1 opened 4 years ago

coryrose1 commented 4 years ago

Currently the <th> header cells do not detect when / if they are sorted.

I think I'll end up having to extract them into a component where we can pass different states, such as a base class (passing in from config / table $css array), and ascending class, and a descending class.

$fields could be modified to support a ascending_class and descending_class strings.

It's going to get pretty dirty..

@if ($sortField == 'id')
  @if ($sortDir == 'asc')
    <th class="base-class ascending-class" wire:click="$emit('sortColumn', 0)">ID</th>
  @elseif ($sortDir == 'desc')
    <th class="base-class descending-class" wire:click="$emit('sortColumn', 0)">ID</th>
  @endif
@else
  <th class="base-class" wire:click="$emit('sortColumn', 0)">ID</th>
@endif
coryrose1 commented 4 years ago

I've played around with extracting table headers to a Blade component.

My first thought was to use a Livewire component, and to extend LivewireModelTable in order to have access to current $sortField and $sortDir. However this was not a great idea as it then broke the sorting mechanism - it wasn't extending UsersTable and thus the $fields array was empty when sort was triggered from the header cell component.

We just really needed a Blade component with a slot, to hide some of the ugly if statements shown in my initial comment.

This is what I have come up with at this time:

users-table.blade.php

<tr class="table-row">
  @component('livewire-tables::th-cell', ['colNum' => 0, 'field' => $fields[0], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    ID
  @endcomponent
  @component('livewire-tables::th-cell', ['colNum' => 1, 'field' => $fields[1], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    Name
  @endcomponent
  @component('livewire-tables::th-cell', ['colNum' => 2, 'field' => $fields[2], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    City
  @endcomponent
</tr>

th-cell.blade.php (component)

<th
    @if (array_key_exists('sortable', $field) && $field['sortable'] && !is_null($sortField) && $sortField == $field['name'])
    @if ($sortDir == 'asc')
    class="{{ trim($css['th'] . ' ' . $css['sorted'] . ' ' . $css['sorted_asc']) }}"
    @elseif ($sortDir == 'desc')
    class="{{ trim($css['th'] . ' ' . $css['sorted'] . ' ' . $css['sorted_desc']) }}"
    @else
    class="{{ trim($css['th'] . ' ' . $css['sorted']) }}"
    @endif
    @else
    @if ($css['th'])
    class="{{ $css['th'] }}"
    @endif
    @endif
>
    @if (array_key_exists('sortable', $field) && $field['sortable'])
        <button wire:click="$emit('sortColumn', {{ $colNum }})">
            {{ $slot }}
            @if (!is_null($sortField) && $sortField == $field['name'])
                @if ($sortDir == 'asc')
                    &nbsp;&#9650;
                @elseif ($sortDir == 'desc')
                    &nbsp;&#9660;
                @endif
            @endif
        </button>
    @else
        {{ $slot }}
    @endif
</th>

Thoughts

Need to provide prepared $css to the view (users-table)

Previously we could just pass $rowData as $css was only used during the view scaffolding. We now need to also pass a prepared $css (i.e. merged config/livewire-tables CSS and component $css).

Sort button

If the column is sortable we provide a button that has emits the sort even when clicked. I think this is more semantically correct than only clicking the . However I'm thinking we now need to provide style options for the button.

Why don't we extract the entire header into a component, and loop over $fields?

While this would be visually preferable, my reasoning against this is to provide the user the ability to edit the $slot (where column name is currently entered), if need be. This way it can be wrapped in a or what have you. Or even to insert cells in between others if necessary.

coryrose1 commented 4 years ago

Update on the header view components.

th-cell.blade.php

<th
    @if (array_key_exists('sortable', $field) && $field['sortable'])
    @if (!is_null($sortField) && $sortField == $field['name'])
    class="{{ trim($field['header_class'] . ' ' . $css['th'] . ' ' . $css['sorted']) }}"
    @else
    class="{{ trim($field['header_class'] . ' ' . $css['th']) }}"
    @endif
    style="cursor: pointer;"
    wire:click="$emit('sortColumn', {{ $colNum }})"
    @else
    class="{{ trim($field['header_class'] . ' ' . $css['th']) }}"
    @endif
>
    {{ $slot }}
    @if (array_key_exists('sortable', $field) && $field['sortable'] && !is_null($sortField) && $sortField == $field['name'])
        @if ($sortDir == 'asc')
            <span style="float: right">&#9650;</span>
        @elseif ($sortDir == 'desc')
            <span style="float: right">&#9660;</span>
        @endif
    @endif
</th>

users-table.blade.php

<tr class="table-row">
  @component('livewire-tables::th-cell', ['colNum' => 0, 'field' => $fields[0], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    ID
  @endcomponent
  @component('livewire-tables::th-cell', ['colNum' => 1, 'field' => $fields[1], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    Name
  @endcomponent
  @component('livewire-tables::th-cell', ['colNum' => 2, 'field' => $fields[2], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
    City
  @endcomponent
</tr>

UsersTable.php

public function render()
    {
        return view('livewire.tables.users-table', [
            'rowData' => $this->query(),
            'css' => $this->prepareCssForTemplate(),
        ]);
    }

I tried to simplify it as much as possible by:

Any thoughts? Is this a good direction / addition to this package?

booni3 commented 4 years ago

Hey!

I like this! Abstracting it out is definitely a good call... although I feel it can go further, even if I am not sure how that works just yet!

i.e.

@component('livewire-tables::th-cell', ['colNum' => 2, 'field' => $fields[2], 'css' => $css, 'sortField' => $sortField, 'sortDir' => $sortDir])
  City
@endcomponent

To something like...

@component('livewire-tables::th-cell', $fields)
  City
@endcomponent

or...

@livewire('livewire-tables::th-cell', $field)

Or even better could the entire header row be livewire generated?

@livewire('th-row', $fields)

Doing as much of the logic as possible inside a php class would be nice too, almost like a view composer model (https://stitcher.io/blog/laravel-view-models).

I have been playing around with changing the @component to a @livewire and emitting a sort events however, so far no luck.

I believe there may be a bug within livewire that is preventing livewire logic from working insde a <th> tag. I have opened an issue here if you are interested.

https://github.com/livewire/livewire/issues/395

coryrose1 commented 4 years ago

Hey @booni3 ,

I went down the same route and tried to make a Livewire component that handled the table header row / cells. The issue I ran into was that the sort configuration is set in the generated PHP component i.e. UsersTable.php that extends LivewireTable.php. AFAIK unless the header Livewire component extends UsersTable.php it does not have access to the set sort.

I've also been having conversation on the new Livewire forum on the direction of this package. See this discussion thread:

https://forum.laravel-livewire.com/t/on-building-the-ideal-livewire-tables-package/40

iAmKevinMcKee on that forum has a great addition to Livewire with customizable stubs. This kind of blew my mind. Maybe the Livewire Tables package should leverage this, ship with one or many table "stubs" that can also be generated by the end user to have completely configurable pre-made table views. Maybe we can even break up the stubs, i.e. include a default table header stub. I really need to wrap my head around how this would work in addition to the scaffolding that takes place.

This core idea here has really halted me on this project until I can figure out the best way to move forward, as I think it could affect how the entirety of the package works.