Use the built-in custom events to create and experiment with automations! 🤖
Event | Description |
---|---|
page_viewed.home |
Submitted when the home tab is displayed. |
page_viewed.cart |
Submitted when the cart tab is displayed. |
page_viewed.settings |
Submitted when the settings tab is displayed. |
page_viewed.inbox |
Submitted when the inbox is displayed. |
page_viewed.user_profile |
Submitted when the user profile is displayed. |
page_viewed.events |
Submitted when the events builder is displayed. |
page_viewed.products |
Submitted when the products list is displayed. |
page_viewed.product_details |
Submitted when the product details is displayed. |
add_to_cart |
Submitted when the user adds a product to the cart. ¹ |
remove_from_cart |
Submitted when the user removes a product from the cart. ¹ |
cart_updated |
Submitted when the cart is updated. ² |
cart_cleared |
Submitted when the cart is cleared. |
purchase |
Submitted when the user completes a purchase. ² |
product_viewed |
Submitted when the user view the details of a product. ¹ |
¹ Data object includes a ProductRepresentation
.
² Data object includes a ProductsOverviewRepresentation
.
{
id: String
name: String
price: Double
price_formatted: String
}
{
total_price: Double
total_price_formatted: String
total_items: Int
products: Array<ProductRepresentation>
You will need the following things properly installed on your computer.
- Git
- Node.js (with npm)
- Ember CLI
- Google Chrome
git clone <repository-url>
this repositorycd notificare-go-web
npm install
ember serve
- Visit your app at http://localhost:4303.
- Visit your tests at http://localhost:4303/tests.
Make use of the many generators for code, try ember help generate
for more details
ember test
ember test --server
npm run lint
npm run lint:fix
ember build
(development)ember build --environment production
(production)