View Source AshAuthentication.Phoenix.Components.Password.Input (ash_authentication_phoenix v1.9.4)

Function components for dealing with form input during password authentication.

Component hierarchy

These function components are consumed by AshAuthentication.Phoenix.Components.Password.SignInForm, AshAuthentication.Phoenix.Components.Password.RegisterForm and AshAuthentication.Phoenix.Components.ResetForm.

Overrides

This component provides the following overrides:

  • :label_class - CSS class for label elements.
  • :field_class - CSS class for div elements surrounding the fields.
  • :input_class - CSS class for text/password input elements.
  • :input_class_with_error - CSS class for text/password input elements when there is a validation error.
  • :submit_class - CSS class for the form submit input element.
  • :error_ul - CSS class for the ul element on error lists.
  • :error_li - CSS class for the li elements on error lists.
  • :input_debounce - Number of milliseconds to debounce input by (or nil to disable).

See AshAuthentication.Phoenix.Overrides for more information.

Summary

Functions

Generate a list of errors for a field (if there are any).

Generate a form field for the configured identity field.

Generate a form field for the configured password confirmation entry field.

Generate a form field for the configured password entry field.

Generate an form submit button.

Functions

@spec error(%{
  :socket => Phoenix.LiveView.Socket.t(),
  :form => AshPhoenix.Form.t(),
  :field => atom(),
  optional(:field_label) => String.Chars.t(),
  optional(:errors) => [{atom(), String.t()}]
}) :: Phoenix.LiveView.Rendered.t() | no_return()

Generate a list of errors for a field (if there are any).

Props

  • socket - Phoenix LiveView socket. This is needed to be able to retrieve the correct CSS configuration. Required.
  • form - An AshPhoenix.Form. Required.
  • field - The field for which to retrieve the errors. Required.
  • overrides - A list of override modules.
@spec identity_field(%{
  :socket => Phoenix.LiveView.Socket.t(),
  :strategy => AshAuthentication.Strategy.t(),
  :form => AshPhoenix.Form.t(),
  optional(:input_type) => :text | :email,
  optional(:overrides) => [module()]
}) :: Phoenix.LiveView.Rendered.t() | no_return()

Generate a form field for the configured identity field.

Props

  • socket - Phoenix LiveView socket. This is needed to be able to retrieve the correct CSS configuration. Required.
  • strategy - The configuration map as per AshAuthentication.authenticated_resources/1. Required.
  • form - An AshPhoenix.Form. Required.
  • input_type - Either :text or :email. If not set it will try and guess based on the name of the identity field.
  • overrides - A list of override modules.
Link to this function

password_confirmation_field(assigns)

View Source
@spec password_confirmation_field(%{
  :socket => Phoenix.LiveView.Socket.t(),
  :strategy => AshAuthentication.Strategy.t(),
  :form => AshPhoenix.Form.t(),
  optional(:overrides) => [module()]
}) :: Phoenix.LiveView.Rendered.t() | no_return()

Generate a form field for the configured password confirmation entry field.

Props

@spec password_field(%{
  :socket => Phoenix.LiveView.Socket.t(),
  :strategy => AshAuthentication.Strategy.t(),
  :form => AshPhoenix.Form.t(),
  optional(:overrides) => [module()]
}) :: Phoenix.LiveView.Rendered.t() | no_return()

Generate a form field for the configured password entry field.

Props

@spec submit(%{
  :socket => Phoenix.LiveView.Socket.t(),
  :strategy => AshAuthentication.Strategy.t(),
  :form => AshPhoenix.Form.t(),
  :action => :sign_in | :register,
  optional(:label) => String.t(),
  optional(:overrides) => [module()]
}) :: Phoenix.LiveView.Rendered.t() | no_return()

Generate an form submit button.

Props

  • socket - Phoenix LiveView socket. This is needed to be able to retrieve the correct CSS configuration. Required.
  • strategy - The configuration map as per AshAuthentication.authenticated_resources/1. Required.
  • form - An AshPhoenix.Form. Required.
  • action - Either :sign_in or :register. Required.
  • label - The text to show in the submit label. Generated from the configured action name (via Phoenix.HTML.Form.humanize/1) if not supplied.
  • overrides - A list of override modules.