Subscribe Newsletter
Subscribe To Newsletter Component Documentation
Overview
Subscribe To Newsletter
component is designed for user subscription to a newsletter. It provides an interface for users to enter their email addresses and subscribe to updates. The component includes a header, subheader, email input field, and a submit button. It also handles email validation and displays appropriate messages based on the subscription status.Model Documentation
Model Structure
Subscribe To Newsletter
component relies on a data model that includes:header
: The main heading displayed above the subscription form.subHeader
: An optional subheading that appears below the main heading.buttonText
: The text displayed on the subscription button.email
: The email address entered by the user.emailIsValid
: A boolean indicating whether the entered email address is valid.showEmailValidMessage
: A boolean controlling the display of the success message after a successful subscription.isLoading
: A boolean indicating whether the subscription request is being processed.Example Model
Component Structure
Subscribe To Newsletter
component includes:1.
2.
3.
4.
HTML Template
JavaScript
Subscribe To Newsletter
component handles email input, validation, and subscription.Component Definition
Explanation
model
object that includes configuration details like header text, subheader, and button text.subscribeEmail
: Handles the email subscription process, including validating the email and triggering a subscription request.validEmail
: Validates the email address format using a regular expression.getAlignmentClass
: Returns the appropriate alignment class based on the alignment value from the model.Modified at 2024-08-27 12:08:08