Skip to content

Commit d7ad076

Browse files
committedDec 10, 2024·
Enhance claim component with preset amount buttons and update max claim limit to 0.1 BTC
1 parent 434778b commit d7ad076

File tree

4 files changed

+158
-25
lines changed

4 files changed

+158
-25
lines changed
 

‎faucet/src/app/components/claim.component.ts

+152-20
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export interface ClaimResponse {
1717
template: `
1818
<div class="claim-container">
1919
<h2 class="section-title">Claim Your Bitcoin</h2>
20-
20+
2121
<form (ngSubmit)="submitClaim()" #claimForm="ngForm" class="claim-form">
2222
<!-- Bitcoin Address Input -->
2323
<div class="form-group">
@@ -39,10 +39,17 @@ export interface ClaimResponse {
3939
Bitcoin address is required.
4040
</div>
4141
</div>
42-
42+
43+
<!-- Preset Amount Buttons -->
44+
<div class="preset-buttons">
45+
<button type="button" (click)="setAmount(0.001)" class="preset-button">0.001 BTC</button>
46+
<button type="button" (click)="setAmount(0.01)" class="preset-button">0.01 BTC</button>
47+
<button type="button" (click)="setAmount(0.1)" class="preset-button">0.1 BTC</button>
48+
</div>
49+
4350
<!-- Amount Input -->
4451
<div class="form-group">
45-
<label for="amount">Amount (max: 0.001 BTC)</label>
52+
<label for="amount">Amount (max: 0.1 BTC)</label>
4653
<input
4754
type="number"
4855
id="amount"
@@ -51,26 +58,26 @@ export interface ClaimResponse {
5158
#amountInput="ngModel"
5259
(blur)="amountTouched.set(true)"
5360
[class.invalid]="amountInput.invalid && shouldShowError(amountTouched())"
54-
placeholder="Enter amount (e.g., 0.001)"
61+
placeholder="Enter amount (e.g., 0.1)"
5562
min="0.00001"
56-
max="0.001"
63+
max="0.1"
5764
step="0.00001"
5865
required
5966
class="form-control"
6067
[disabled]="isSubmitting()"
6168
/>
6269
<div *ngIf="amountInput.invalid && shouldShowError(amountTouched())" class="error">
63-
Please enter a valid amount between 0.00001 and 0.001 BTC.
70+
Please enter a valid amount between 0.00001 and 0.1 BTC.
6471
</div>
6572
</div>
66-
73+
6774
<!-- Submit Button -->
6875
<button type="submit" [disabled]="isSubmitting() || claimForm.invalid" class="submit-button">
6976
<ng-container *ngIf="isSubmitting(); else submitText">Submitting...</ng-container>
7077
<ng-template #submitText>Claim Bitcoin</ng-template>
7178
</button>
7279
</form>
73-
80+
7481
<!-- Response Message -->
7582
<div *ngIf="submissionStatus()" class="response-message" [ngClass]="submissionStatus()?.type">
7683
<div *ngIf="submissionStatus()?.type === 'success'">
@@ -81,6 +88,14 @@ export interface ClaimResponse {
8188
<p>{{ submissionStatus()?.message }}</p>
8289
</div>
8390
</div>
91+
92+
<!-- Description Box -->
93+
<div class="description-box">
94+
<h3>About This Faucet</h3>
95+
<p>
96+
This faucet is designed to provide small amounts of Testnet Bitcoins to users for their experiments. The maximum claim per transaction is <strong>0.1 BTC</strong>. Abuse of this service may result in restrictions to ensure fair usage.
97+
</p>
98+
</div>
8499
</div>
85100
`,
86101
styles: [`
@@ -92,49 +107,49 @@ export interface ClaimResponse {
92107
margin: 2rem auto;
93108
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
94109
}
95-
110+
96111
.section-title {
97112
text-align: center;
98113
color: #086c81;
99114
margin-bottom: 1.5rem;
100115
font-size: 1.5rem;
101116
font-weight: bold;
102117
}
103-
118+
104119
.claim-form {
105120
display: flex;
106121
flex-direction: column;
107122
gap: 1.5rem;
108-
123+
109124
.form-group {
110125
display: flex;
111126
flex-direction: column;
112127
gap: 0.5rem;
113-
}
114-
128+
}
129+
115130
label {
116131
font-weight: bold;
117132
color: #022229;
118133
}
119-
134+
120135
.form-control {
121136
padding: 0.75rem;
122137
border: 1px solid #cbdde1;
123138
border-radius: 8px;
124139
font-size: 1rem;
125140
}
126-
141+
127142
.form-control:focus {
128143
outline: none;
129144
border-color: #086c81;
130145
box-shadow: 0 0 4px #086c81;
131146
}
132-
147+
133148
.error {
134149
font-size: 0.875rem;
135150
color: #ff0000;
136151
}
137-
152+
138153
.submit-button {
139154
background-color: #086c81;
140155
color: #ffffff;
@@ -144,17 +159,130 @@ export interface ClaimResponse {
144159
font-size: 1rem;
145160
cursor: pointer;
146161
transition: background-color 0.3s ease;
147-
162+
148163
&:disabled {
149164
background-color: #cbdde1;
150165
cursor: not-allowed;
151166
}
152-
167+
153168
&:hover:not(:disabled) {
154169
background-color: #0a758c;
155170
}
156171
}
157172
}
173+
174+
.preset-buttons {
175+
display: flex;
176+
gap: 0.5rem;
177+
margin-bottom: 1rem;
178+
}
179+
180+
.preset-button {
181+
background-color: #086c81;
182+
color: #ffffff;
183+
padding: 0.5rem 1rem;
184+
border: none;
185+
border-radius: 8px;
186+
font-size: 1rem;
187+
cursor: pointer;
188+
transition: background-color 0.3s ease;
189+
}
190+
191+
.preset-button:hover {
192+
background-color: #0a758c;
193+
}
194+
195+
.response-message {
196+
margin-top: 20px;
197+
padding: 20px;
198+
border-radius: 8px;
199+
font-size: 1rem;
200+
font-weight: bold;
201+
text-align: center;
202+
word-wrap: break-word; /* Ensure text wraps within the container */
203+
}
204+
205+
.response-message.success {
206+
background-color: #d4edda;
207+
color: #155724;
208+
border: 1px solid #c3e6cb;
209+
}
210+
211+
.response-message.error {
212+
background-color: #f8d7da;
213+
color: #721c24;
214+
border: 1px solid #f5c6cb;
215+
}
216+
217+
.description-box {
218+
margin-top: 2rem;
219+
padding: 1rem;
220+
background-color: #ffffff;
221+
border: 1px solid #cbdde1;
222+
border-radius: 8px;
223+
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
224+
}
225+
226+
@media (max-width: 768px) {
227+
.claim-container {
228+
padding: 1rem;
229+
}
230+
231+
.claim-form {
232+
gap: 1rem;
233+
padding: 0 0.5rem; /* Adjust padding for smaller screens */
234+
}
235+
236+
.form-group {
237+
padding: 0 0.5rem; /* Ensure equal padding on both sides for smaller screens */
238+
}
239+
240+
.preset-buttons {
241+
flex-direction: column;
242+
gap: 0.5rem;
243+
}
244+
245+
.response-message {
246+
font-size: 0.875rem;
247+
padding: 15px;
248+
word-wrap: break-word; /* Ensure text wraps within the container */
249+
}
250+
251+
.description-box {
252+
padding: 0.75rem;
253+
}
254+
}
255+
256+
@media (max-width: 480px) {
257+
.claim-container {
258+
padding: 1rem;
259+
margin: 1rem;
260+
}
261+
262+
.claim-form {
263+
gap: 0.75rem;
264+
padding: 0 0.25rem; /* Adjust padding for smaller screens */
265+
}
266+
267+
.form-group {
268+
padding: 0 0.25rem; /* Ensure equal padding on both sides for smaller screens */
269+
}
270+
271+
.preset-buttons {
272+
flex-direction: column;
273+
gap: 0.5rem;
274+
}
275+
276+
.response-message {
277+
font-size: 0.75rem;
278+
padding: 10px;
279+
word-wrap: break-word; /* Ensure text wraps within the container */
280+
}
281+
282+
.description-box {
283+
padding: 0.5rem;
284+
}
285+
}
158286
`]
159287
})
160288
export class ClaimComponent {
@@ -173,7 +301,7 @@ export class ClaimComponent {
173301

174302
// Validation Signals
175303
isAddressValid: Signal<boolean> = computed(() => !!this.address());
176-
isAmountValid: Signal<boolean> = computed(() => this.amount() !== null && this.amount()! > 0 && this.amount()! <= 0.001);
304+
isAmountValid: Signal<boolean> = computed(() => this.amount() !== null && this.amount()! > 0 && this.amount()! <= 0.1);
177305

178306
constructor(private apiService: ApiService) {}
179307

@@ -228,4 +356,8 @@ export class ClaimComponent {
228356
this.amountTouched.set(false);
229357
this.formSubmitted.set(false);
230358
}
359+
360+
setAmount(amount: number): void {
361+
this.amount.set(amount);
362+
}
231363
}

‎faucet/src/app/components/home.component.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -29,12 +29,12 @@ import { RouterModule } from '@angular/router';
2929
<article class="step" #stepElement>
3030
<div class="step-icon" aria-hidden="true">2</div>
3131
<h3>Enter the Amount</h3>
32-
<p>Specify the amount (less than 50 BTC test).</p>
32+
<p>Specify the amount (less than 0.1 BTC test).</p>
3333
</article>
3434
<article class="step" #stepElement>
3535
<div class="step-icon" aria-hidden="true">3</div>
3636
<h3>Claim Your Bitcoin</h3>
37-
<p>Submit your request and get your free Bitcoin instantly! (1 request per IP per 24 hours)</p>
37+
<p>Submit your request and get your free Bitcoin instantly!</p>
3838
</article>
3939
</div>
4040
</section>

‎faucet/src/app/components/layout.component.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ import { ScrollService } from '../services/scroll.service';
2222
</header>
2323
2424
<!-- Main Content -->
25-
<div class="content">
25+
<div class="main-content">
2626
<router-outlet></router-outlet>
2727
</div>
2828

‎faucet/src/styles.scss

+3-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ body, html {
55
font-family: 'Inter', sans-serif;
66
display: flex;
77
flex-direction: column;
8+
justify-content: space-between;
89
overscroll-behavior: none;
910
-webkit-overflow-scrolling: auto;
1011
}
@@ -73,6 +74,7 @@ nav {
7374
text-align: center;
7475
padding: 0.3rem 0;
7576
width: 100%;
77+
margin-top: auto;
7678
}
7779

7880
.footer a {
@@ -264,7 +266,7 @@ nav {
264266
grid-template-columns: 1fr;
265267
gap: 1.5rem;
266268
}
267-
269+
268270
.step {
269271
max-width: 400px;
270272
margin: 0 auto;
@@ -310,7 +312,6 @@ nav {
310312
}
311313

312314
.form-control {
313-
width: 100%;
314315
padding: 10px;
315316
border: 1px solid #ced4da;
316317
border-radius: 5px;

0 commit comments

Comments
 (0)
Please sign in to comment.