mirror of
https://github.com/Raghu-Ch/angular-challenges.git
synced 2026-02-10 12:53:03 -05:00
feat: add challenge 49
This commit is contained in:
BIN
docs/src/assets/rxjs/49/prototype.gif
Normal file
BIN
docs/src/assets/rxjs/49/prototype.gif
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 104 KiB |
46
docs/src/content/docs/challenges/rxjs/49-hold-to-send-btn.md
Normal file
46
docs/src/content/docs/challenges/rxjs/49-hold-to-send-btn.md
Normal file
@@ -0,0 +1,46 @@
|
||||
---
|
||||
title: 🟠 Hold to save button
|
||||
description: You're tasked with implementing Lucie's button design, requiring holding it for a set time to save, taking over from Sacha; functionalities include configuring duration, countdown initiation on "mousedown", progress bar reset on "mouseleave" or "mouseup", reflecting remaining time, and simulating save request on hold completion, using RxJS operators and ensuring declarative code.
|
||||
author: timothy-alcaide
|
||||
contributors:
|
||||
- alcaidio
|
||||
challengeNumber: 49
|
||||
command: rxjs-hold-to-save-btn
|
||||
sidebar:
|
||||
order: 19
|
||||
badge: New
|
||||
---
|
||||
|
||||
## Context
|
||||
|
||||
As a member of the development team, you have to respond to a specific request from the UX designer, 👩🏻🎨 Lucie, who has designed a button that must be held down for X amount of time to save a save request.
|
||||
|
||||
Sacha 👶🏼 the trainee has already integrated the design but doesn't know how to perform the "holdable" functionality.
|
||||
|
||||
So you're going to take over from him.
|
||||
|
||||
## Functional expectation
|
||||
|
||||
> "As a user, I would like to save something by holding down the button for a certain amount of time."
|
||||
|
||||
Here the prototype made by Lucie :
|
||||
|
||||

|
||||
|
||||
## Acceptance Criteria
|
||||
|
||||
1. We should be able to configure a maintenance duration in milliseconds.
|
||||
2. Pressing and holding the button triggers the countdown on "mousedown" event.
|
||||
3. On "mouseleave" or "mouseup" events, the progress bar is reset to 0.
|
||||
4. The progress bar representing the remaining relative time should reflect the remaining time.
|
||||
5. Simulates a backup request when the hold time is over (console log or alert).
|
||||
6. You must maximize the use of RxJS operators and be as declarative as possible.
|
||||
|
||||
<details>
|
||||
<summary>Tips 🤫 (if you really need it and after careful consideration)</summary>
|
||||
<ul>
|
||||
<li>Create the `HolddableDirective`</li>
|
||||
<li>Use `TemplateRef` and `fromEvent` from rxjs to catch events OR `@HostListener`</li>
|
||||
<li>Perhaps the following rxjs operators can help you: interval, takeUntil, switchmap, takeWhile/retry...</li>
|
||||
</ul>
|
||||
</details>
|
||||
@@ -13,7 +13,7 @@ hero:
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
- text: Ir al Desafío más reciente
|
||||
link: /es/challenges/forms/48-avoid-losing-form-data/
|
||||
link: /es/challenges/rxjs/49-hold-to-save-btn/
|
||||
icon: rocket
|
||||
- text: Dar una estrella
|
||||
link: https://github.com/tomalaforge/angular-challenges
|
||||
@@ -26,8 +26,8 @@ import MyIcon from '../../../components/MyIcon.astro';
|
||||
import SubscriptionForm from '../../../components/SubscriptionForm.astro';
|
||||
|
||||
<CardGrid>
|
||||
<Card title="48 Desafíos">
|
||||
Este repositorio contiene 48 Desafíos relacionados con <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> y <b>Typescript</b>.
|
||||
<Card title="49 Desafíos">
|
||||
Este repositorio contiene 49 Desafíos relacionados con <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> y <b>Typescript</b>.
|
||||
Estos desafíos se resuelven en torno a problemas de la vida real o características específicas para mejorar tus habilidades.
|
||||
</Card>
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ hero:
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
- text: Aller au dernier Challenge
|
||||
link: /fr/challenges/forms/48-avoid-losing-form-data/
|
||||
link: /fr/challenges/rxjs/49-hold-to-save-btn/
|
||||
icon: rocket
|
||||
- text: Donne une étoile
|
||||
link: https://github.com/tomalaforge/angular-challenges
|
||||
@@ -26,8 +26,8 @@ import MyIcon from '../../../components/MyIcon.astro';
|
||||
import SubscriptionForm from '../../../components/SubscriptionForm.astro';
|
||||
|
||||
<CardGrid>
|
||||
<Card title="48 Défis">
|
||||
Ce répertoire rassemble 48 Défis liés à <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> et <b>Typescript</b>. Ces défis portent sur des problèmes réels ou des fonctionnalités spécifiques pour améliorer vos compétences.
|
||||
<Card title="49 Défis">
|
||||
Ce répertoire rassemble 49 Défis liés à <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> et <b>Typescript</b>. Ces défis portent sur des problèmes réels ou des fonctionnalités spécifiques pour améliorer vos compétences.
|
||||
</Card>
|
||||
|
||||
<Card title="Subscribe to get notify of latest challenges">
|
||||
|
||||
@@ -27,8 +27,8 @@ import MyIcon from '../../components/MyIcon.astro';
|
||||
import SubscriptionForm from '../../components/SubscriptionForm.astro';
|
||||
|
||||
<CardGrid>
|
||||
<Card title="48 Challenges">
|
||||
This repository gathers 48 Challenges related to <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> and <b>Typescript</b>.
|
||||
<Card title="49 Challenges">
|
||||
This repository gathers 49 Challenges related to <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> and <b>Typescript</b>.
|
||||
These challenges resolve around real-life issues or specific features to elevate your skills.
|
||||
</Card>
|
||||
|
||||
|
||||
@@ -13,7 +13,7 @@ hero:
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
- text: Ir para o desafio mais recente
|
||||
link: /pt/challenges/forms/48-avoid-losing-form-data/
|
||||
link: /pt/challenges/rxjs/49-hold-to-save-btn/
|
||||
icon: rocket
|
||||
- text: Dar uma estrela
|
||||
link: https://github.com/tomalaforge/angular-challenges
|
||||
@@ -26,8 +26,8 @@ import MyIcon from '../../../components/MyIcon.astro';
|
||||
import SubscriptionForm from '../../../components/SubscriptionForm.astro';
|
||||
|
||||
<CardGrid>
|
||||
<Card title="48 Desafios">
|
||||
Este repositório possui 48 Desafios relacionados a <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>,
|
||||
<Card title="49 Desafios">
|
||||
Este repositório possui 49 Desafios relacionados a <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>,
|
||||
<b>Ngrx</b> e <b>Typescript</b>.
|
||||
Esses desafios são voltados para problemas reais ou funcionalidades específicas afim de
|
||||
melhorar suas habilidades.
|
||||
|
||||
@@ -13,7 +13,7 @@ hero:
|
||||
icon: right-arrow
|
||||
variant: primary
|
||||
- text: Перейти к последней задаче
|
||||
link: /ru/challenges/forms/48-avoid-losing-form-data/
|
||||
link: /ru/challenges/rxjs/49-hold-to-save-btn/
|
||||
icon: rocket
|
||||
- text: Добавить звезду
|
||||
link: https://github.com/tomalaforge/angular-challenges
|
||||
@@ -26,8 +26,8 @@ import MyIcon from '../../../components/MyIcon.astro';
|
||||
import SubscriptionForm from '../../../components/SubscriptionForm.astro';
|
||||
|
||||
<CardGrid>
|
||||
<Card title="47 испытаний">
|
||||
Этот репозиторий содержит 47 испытаний, связанных с <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> и <b>Typescript</b>.
|
||||
<Card title="49 испытаний">
|
||||
Этот репозиторий содержит 49 испытаний, связанных с <b>Angular</b>, <b>Nx</b>, <b>RxJS</b>, <b>Ngrx</b> и <b>Typescript</b>.
|
||||
Испытания основаны на реальных задачах или инструментах для того, чтобы прокачать вас.
|
||||
</Card>
|
||||
|
||||
|
||||
Reference in New Issue
Block a user