- Raise an error if a meta struct with the wrong pagination type is passed to the
pagination
orcursor_pagination
component.
- Fix compilation error in Phoenix LiveView 1.0.0-rc.7.
- Fix type of
row_click
attribute.
- Support and require
live_view ~> 1.0.0-rc.0
. - Allow to pass options directly in config file instead of referencing function.
- Fixed a deprecation warning in Elixir 1.17.
- Loosen version requirement for
flop
to support 0.26.
- Added
:pagination_list_item_attrs
option toFlop.Phoenix.pagination/1
.
- Support
:col_class
attr on:col
and:action
slots in addition to:col_style
.
- Don't render empty
style
attributes oncol
elements incolgroup
.
- The page range calculation in the
Flop.Phoenix.pagination/1
was incorrect towards the last pages.
- Loosen version requirement for
phoenix_html
.
- Warning when wrapping table component and passing on
:col
slot as attribute.
- Support Flop 0.25.0.
- Update documentation examples for filter forms.
- Requires
phoenix_html ~> 4.0
.
- Don't render
li
element if a pagination link is not rendered.
- Support Flop ~> 0.24.0.
- Numbered pagination links were not wrapped in
li
elements.
- Allow to use
t:Phoenix.HTML.safe/0
as a label attribute in table headers.
- Added
directions
attribute to thecol
slot of the table component. This allows you to override the default sort directions, e.g. to specify nulls-first or nulls-last. - Added
thead_th_attrs
andth_wrapper_attrs
attributes to thecol
slot of the table component. - Added
thead_th_attrs
attribute to theaction
slot of the table component.
- Renamed
attrs
attribute on thecol
andaction
slots of the table component totbody_td_attrs
in order to match the naming of the global table options.
Rename the attrs
attribute to tbody_td_attrs
in both the col
slot and the
action
slot:
<Flop.Phoenix.table items={@pets} meta={@meta} path={~p"/pets"}>
- <:col :let={p} attrs={[class="my-class"]}><%= p.id %></:col>
- <:action :let={p} attrs={[class="my-class"]}>button</:col>
+ <:col :let={p} tbody_td_attrs={[class="my-class"]}><%= p.id %></:col>
+ <:action :let={p} tbody_td_attrs={[class="my-class"]}>button</:col>
</Flop.Phoenix.table>
- Support
phoenix_liveview ~> 0.20
.
- Allow passing a function to the
attrs
option of table component's:action
slot. Before, this was only supported in the:col
slot.
- Improve some error messages and documentation examples.
- In the
:col
and:action
slots of the table component, theattrs
option did not properly override the attributes set with the:tbody_td_attrs
option.
- Depend on flop ~> 0.22.0.
- Added an
on_paginate
attribute to thepagination
andcursor_pagination
components. This attribute takes aPhoenix.LiveView.JS
command as a value. The attribute can be combined with thepath
attribute, in which case the URL will be patched and the the given JS command is executed. - Similarly, an
on_sort
attribute was added to thetable
component. - Allow setting
tbody_tr_attrs
to a function that takes the current row item as an argument and returns a list of attributes. - Allow setting the
attrs
attribute of the:col
slot of the table component to a function that takes the current row item as an argument and returns a list of attributes.
- The table ID falls back to
"sortable-table"
if no schema module is used. - The tbody ID was changed to
{id}-tbody
. - The table container ID is set to
{id}-container
now. - The table ID is set to
{id}
now.
- The
show
andhide
attributes of the:col
slot of the table component are now deprecated in favor of the:if
attribute. - The
event
attribute of the pagination, cursor pagination and table components has been deprecated in favor ofon_pagination
andon_sort
.
- The table component only renders an ascending/descending order indicator in the column header for the first order field, instead rendering one in the column headers for all ordered fields.
- Support Flop 0.22.
- Necessary updates for
phoenix_live_view ~> 0.19.0
. - Requires
phoenix_live_view ~> 0.19.0
. - Remove previously deprecated
Flop.Phoenix.pop_filter/2
. UseFlop.Filter.pop/3
instead.
- Added
hidden
attribute to hidden inputs rendered byfilter_fields
component in order to solve CSS spacing issues.
- Added support for LiveView streams to the table component. To this end,
row_id
,row_item
andid
attributes were added to the component, following the example of Phoenix 1.7. Theid
attribute is added to thetbody
. If noid
is explicitly set, a default value will be used depending on the schema name.
- Added dependency on
Phoenix.HTML
~> 3.3.0
. - The
filter_fields
component now passes thePhoenix.HTML.FormField
struct introduced inPhoenix.HTML
3.3.0 to the inner block. - Support
:as
option for filter inputs withPhoenix.HTML.FormData/4
(inputs_for
). Phoenix.HTML.FormData.input_type/2
now considers the Ecto type for join, custom and compound fields.- Remove support for
path_helper
assigns, previously deprecated in 0.15. - Deprecate
Flop.Phoenix.pop_filter/2
.
If your input
component already knows how to handle the
Phoenix.HTML.FormField
struct, you can update the inner block for
filter_fields
like this:
<.filter_fields :let={i} form={f} fields={[:email, :name]}>
<.input
- field={{i.form, i.field}}
+ field={i.field}
type={i.type}
label={i.label}
- id={i.id}
- name={i.name}
- value={i.value}
{i.rest}
/>
</.filter_fields>
If your input
component still expects the individual assigns, you can update
the inner block like this:
<.filter_fields :let={i} form={f} fields={[:email, :name]}>
<.input
- field={{i.form, i.field}}
+ field={{i.field.form, i.field.field}}
type={i.type}
label={i.label}
- id={i.id}
- name={i.name}
- value={i.value}
+ id={i.field.id}
+ name={i.field.name}
+ value={i.field.value}
{i.rest}
/>
</.filter_fields>
For an upgrade example for the path_helper
assign, see the changelog entry for
version 0.15.0.
- Support Flop 0.19.
- Allow passing an
offset
when generating filter inputs withPhoenix.HTML.Form.inputs_for/3
.
- New option
tbody_attrs
for table component. - New attribute
row_click
and slotaction
for table component.
- To pass additional attributes to a column, you will now have to use the
attrs
attribute. This was necessary because defining aglobal
attribute on a slot causes a compile-time error inphoenix_live_view
0.18.3.
<Flop.Phoenix.table items={@pets} meta={@meta} path={~p"/pets"}>
- <:col :let={p} class="my-class"><%= p.id %></:col>
+ <:col :let={p} attrs={[class="my-class"]}><%= p.id %></:col>
</Flop.Phoenix.table>
- New Phoenix component
Flop.Phoenix.hidden_inputs_for_filter/1
.
- Major refactoring of
Flop.Phoenix.filter_fields/1
. Instead of giving you the rendered<label>
and<input>
elements, the component now only passes the necessary arguments to the inner block. You will have to pass these arguments to your owninput
component (or whatever you name it). The field option format has also been updated. These changes were made to fix warnings emitted by live view 0.18.1, and also accompany current changes in Phoenix that thin outPhoenix.HTML
/Phoenix.HTML.Form
in favor of Phoenix components for inputs. - Require
flop >= 0.17.1 and < 0.19.0
.
- Removed
Flop.Phoenix.filter_hidden_inputs_for/1
. This function is not used internally anymore. You can either usePhoenix.HTML.Form.hidden_inputs_for/1
(Phoenix.HTML ~> 3.2), or useFlop.Phoenix.hidden_inputs_for_filter/1
, which does the same, but as a Phoenix component. - Removed
Flop.Phoenix.filter_label/1
andFlop.Phoenix.filter_input/1
. With the changes toFlop.Phoenix.filter_fields/1
and the move away from the input rendering functions ofPhoenix.HTML.Form
, these functions don't have any value anymore. Read the documentation ofFlop.Phoenix.hidden_inputs_for_filter/1
for an example on how to easily render the fields of individual filters.
- Fixed warnings about tainted variables in live view 0.18.1.
- Fixed an issue where default parameters set in the backend module were not removed from the query parameters.
- Fixed URLs ending with
?
when no query parameters are necessary if the path is passed as a string.
Previously, you would render a filter form like this:
<.form :let={f} for={@meta}>
<Flop.Phoenix.filter_fields :let={entry} form={f} fields={[:name, :email]}>
<div class="field">
<%= entry.label %>
<%= entry.input %>
</div>
</Flop.Phoenix.filter_fields>
</.form>
In this example, entry.label
and entry.input
are complete <label>
and
<input>
elements with all attributes set. You will need to change this to:
<.form :let={f} for={@meta}>
<.filter_fields :let={i} form={f} fields={[:name, :email]}>
<.input
id={i.id}
name={i.name}
label={i.label}
type={i.type}
value={i.value}
field={{i.form, i.field}}
{i.rest}
/>
</.filter_fields>
</.form>
You will have to define an input
component in your project. You can take a
hint from the input
component that is generated as part of the Components
module by Phoenix 1.7.
Remove input_opts
and label_opts
and pass them directly to your input
component, or add them directly to the input
component. If you passed an id
to filter_fields
, set in on the form
instead.
<.filter_fields
:let={i}
form={f}
fields={[:name]}
- id="some-id"
- input_opts={[class: "input", phx_debounce: 100]}
- label_opts={[class: "label"]}
>
<.input
...
+ class="input"
+ phx-debounce={100}
/>
</.filter_fields>
Use strings instead of atoms to set the type, and use the types that your
input
component understands.
<.filter_fields
:let={i}
form={f}
fields={[
- name: [type: :text_input],
+ name: [type: "text"],
- age: [type: :number_input],
+ age: [type: "number"],
- phone: [type: :telephone_input],
+ phone: [type: "tel"]
]}
>
If you passed additional input function options in a tuple, take them out of the tuple and add them to the keyword list instead.
<.filter_fields
:let={i}
form={f}
fields={[
- role: [type: {:select, ["author", "editor"], class: "select"}]
+ role: [type: "select", options: ["author", "editor"], class: "select"]
]}
>
The default
option is not handled for you anymore. You can still set it, but
it will just be passed on as part of the rest
options, so your input
component will need to handle it.
If you used Flop.Phoenix.filter_label/1
or Flop.Phoenix.filter_input/1
before, follow the example in the documentation of
Flop.hidden_inputs_for_filter/1
to render the inputs of individual filters
without the removed components.
- Change version requirement for Flop to
>= 0.15.0 and < 0.19.0
.
- Typespec of
Flop.Phoenix.build_path/3
.
This release adds support for passing URI strings instead of MFA or FA tuples to
components and helper functions. This allows you to use the library with the
verified routes introduced in Phoenix 1.7. Alternatively, you can now also
choose to pass a 1-ary path builder function. See Flop.Phoenix.build_path/3
for examples. Passing tuples pointing to route helpers is still supported.
- Added an example for a custom filter form component to the readme.
- Support passing a URI string as a path to the
table
,pagination
andcursor_pagination
components and tobuild_path/3
. - Support passing a 1-ary path builder function to the
table
,pagination
andcursor_pagination
components and tobuild_path/3
. - New function
Flop.Phoenix.pop_filter/2
.
- Require
live_view ~> 0.18.0
. - Deprecate
path_helper
assign in favor ofpath
. - Use declarative assigns and replace
Phoenix.LiveView.Helpers.live_patch/1
withPhoenix.Component.link/1
. Flop.Phoenix.filter_input/1
requires additional options for the input function to be passed in theinput_opts
assign, instead of passing them directly to the component. This was necessary because the global attributes you can define with declarative assigns in LiveView 0.18 are meant for HTML attributes, while the input options may contain any additional attributes necessary (e.g. a list of select options that are rendered as option elements).
- Apply
show
andhide
attribute for columns tocolgroup
as well. - Correctly handle multiple inputs for the same field in
Flop.filter_fields/1
.
Rename the path_helper
assigns of table
, pagination
and
cursor_pagination
components to path
.
- <.pagination meta={@meta} path_helper={{Routes, :pet_path, [@socket, :index]}} />
+ <.pagination meta={@meta} path={{Routes, :pet_path, [@socket, :index]}} />
Wrap additional options passed to Flop.Phoenix.filter_input/1
into a single
input_opts
assign.
- <.filter_input form={ff} class="select" options={[:some, :options]} />
+ <.filter_input form={ff} input_opts={[class: "select", options: [:some, :options]]} />
- Support Flop
~> 0.17.0
.
- Support Flop
~> 0.16.0
.
symbol_unsorted
option for thetable
component.caption
assign for thetable
component.col_style
assign for the:col
slot of thetable
component.
- Additional attributes passed to the
<:col>
slot will now be added as attributes to the<td>
tags.
- Add
cursor_pagination/1
component.
- The pagination component adds the
disabled
class to thespan
that is displayed when the previous or next link is disabled now. Previously, thedisabled
attribute was set on thespan
. The class can be customized with the:disabled_class
option.
- Implement the
Phoenix.HTML.FormData
protocol forFlop.Meta
. This means you can pass the meta struct as:for
option to the Phoenixform_for
functions now. - Add the functions
filter_fields/1
,filter_input/1
andfilter_label/1
.
- Remove
:for
option. The schema module is now automatically derived from the meta struct.
- Adds
hide
andshow
options to table:col
.
- Passing a
label
to a table:col
is now optional.
- The
path_helper_args
assign has been removed in favor of passing mfa tuples aspath_helper
. - In the same vein,
Flop.Phoenix.build_path/4
has been replaced withFlop.Phoenix.build_path/3
, which also takes a tuple as the first argument. - The table component has been changed to use slots. The
headers
,footer
,row_func
androw_opts
assigns have been removed. Also, thetfoot_td_attrs
andtfoot_th_attrs
options have been removed. - The
live_view
version requirement has been changed to~> 0.17.0
. - Better error messages for invalid assigns have been added.
Update the path_helper
and path_helper_args
assigns set for the table
and pagination
component:
- path_helper={&Routes.pet_path/3}
- path_helper_args={[@socket, :index]}
+ path_helper={{Routes, :pet_path, [@socket, :index]}}
If you prefer, you can pass a function instead.
+ path_helper={{&Routes.pet_path/3, [@socket, :index]}}
Update any calls to Flop.Phoenix.build_path/4
:
- Flop.Phoenix.build_path(&Routes.pet_path/3, [@socket, :index], meta)
+ Flop.Phoenix.build_path({Routes, :pet_path, [@socket, :index]}, meta)
If you prefer, you can use a 2-tuple here as well:
+ Flop.Phoenix.build_path({&Routes.pet_path/3, [@socket, :index]}, meta)
Finally, update the tables in your templates:
<Flop.Phoenix.table
for={MyApp.Pet}
items={@pets}
meta={@meta}
- path_helper={&Routes.pet_path/3}
- path_helper_args={[@socket, :index]}
+ path_helper={{Routes, :pet_path, [@socket, :index]}}
- headers={[{"Name", :name}, {"Age", :age}]}
- row_func={fn pet, \_opts -> [pet.name, pet.age] end}
- footer={["", @average_age]}
- />
+ >
+ <:col let={pet} label="Name" field={:name}><%= pet.name %></:col>
+ <:col let={pet} label="Age" field={:age}><%= pet.age %></:col>
+ <:foot>
+ <tr>
+ <td></td>
+ <td><%= @average_age %></td>
+ </tr>
+ </:foot>
+ </Flop.Phoenix.table>
Also, you can remove tfoot_td_attrs
and tfoot_th_attrs
from the opts
assign (or opts provider function).
- It is now possible to set global options for the components in your config.
config :flop_phoenix,
pagination: [opts: {MyApp.ViewHelpers, :pagination_opts}],
table: [opts: {MyApp.ViewHelpers, :table_opts}]
- The
for
,event
andtarget
options moved from theopts
assign to the root. Theopts
assign is now exclusively used for customization options that modify the appearance, which are usually set globally for a project and are not related to the specific data or view. - The
row_func/2
function passed to thetable
component receives the newrow_opts
assign now instead of theopts
assign. - The pagination and table components only pass the
for
option to the query builder, instead of allopts
. - The
path_helper
andpath_helper_args
assigns are now optional if anevent
is passed. A descriptive error is raised if neither of them are passed. - The
opts
assign for the pagination and table components is now optional. - Aria labels were added to the links to the first and last page.
- The
aria-sort
attribute was added to the table headers.
- Remove the
for
,event
andtarget
from theopts
assign and add them as regular assigns at the root level. - Move any key/value pairs that are needed by your
row_func
fromopts
torow_opts
.
For example, if your row_func
looks like this:
def table_row(%Pet{id: id, name: name}, opts) do
socket = Keyword.fetch!(opts, :socket)
[name, link("show", to: Routes.pet_path(socket, :show, id))]
end
Update your template like this:
<Flop.Phoenix.sortable_table
row_func={&table_row/2}
- opts={[
- container: true,
- for: Pet,
- event: "sort-table",
- target: @myself,
- socket: @socket
- ]}
+ row_opts={[socket: @socket]}
+ for={Pet}
+ event="sort-table"
+ target={@myself}
+ opts={[container: true]}
/>
<Flop.Phoenix.pagination
- opts={[
- for: Pet,
- event: "paginate",
- target: @myself,
- page_links: {:ellipsis, 7}
- ]}
+ for={Pet}
+ event="paginate"
+ target={@myself}
+ opts={[page_links: {:ellipsis, 7}]}
/>
- Change
live_view
version requirement to~> 0.16.0 or ~> 0.17.0
.
- Add table foot option for sortable table.
- Loosen version requirement for Flop.
- New options
event
andtarget
for the pagination and sortable table component, which allow to emit pagination and sorting events in LiveView without patching the URL.
- Use
HEEx
templates for both the pagination and the sortable table component. Refer to the Readme for usage examples. - Require
live_view ~> 0.16.0
. - Support safe HTML tuples in unsortable table headers.
- Improve documentation with examples for LiveView, HEEx templates and EEx templates.
- Add wrapper around sortable table header link and order direction indicator.
- Add option
current_link_attrs
to pagination builder. - Add options
thead_tr_attrs
,thead_th_attrs
,tbody_tr_attrs
andtbody_td_attrs
to table generator. - Add option
no_results_content
to table generator, which sets the content that is going to be displayed instead of the table if the item list is empty. A default option is applied, so make sure to set the option and/or remove your own no results messages from your templates when making the upgrade.
- The table options
table_class
,th_wrapper_class
,symbol_class
andcontainer_class
were replaced in favour oftable_attrs
,th_wrapper_attrs
,symbol_attrs
andcontainer_attrs
for more flexibility and consistency with the pagination generator. To update, rename the options in your code and wrap the values in keyword lists with aclass
key (e.g.container_class: "table-container"
=>container_attrs: [class: "table-container"]
). - The
pagination_link_attrs
is not applied to current links anymore. Usecurrent_link_attrs
to set the attributes for the current link. - Omit
page=1
andoffset=0
when building query parameters. - Omit default values for order and limit/page size parameters when building query parameters.
- Requires Flop
~> 0.11.0
.
- Order direction indicator was wrapped twice.
- A Flop struct with an offset was resulting in invalid pagination links.
- Pagination helper generated invalid links when using
default_limit
option.
- Add
Flop.Phoenix.table/1
for rendering sortable tables. - Add function
Flop.Phoenix.to_query/1
, which converts a Flop struct into a keyword list for query parameters. - Add function
Flop.Phoenix.build_path/3
, which applies Flop parameters to a Phoenix path helper function.
- Remove
Flop.Phoenix.Live.PaginationComponent
in favor of makingFlop.Phoenix.pagination/4
work in both.eex
and.leex
templates.
- Merge pagination query parameters into existing query parameters, if present.
- Rename
FlopPhoenix
toFlop.Phoenix
. - Add
Flop.Phoenix.Live.PaginationComponent
for use withPhoenix.LiveView
. - Change pagination to always display links to the first and last page.
- Allow usage with newer versions of Flop.
- New option to hide the number of page links.
- New option to limit the number of page links.
- Add order and filter parameters to pagination links.
- Improve documentation.
previous_link/3
,next_link/3
andpage_links/3
are private functions now.
Initial release