Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: create challenge 48 without solution #759

Merged
merged 7 commits into from
Apr 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ If you would like to propose a challenge, this project is open source, so feel f

## Challenges

Check [all 47 challenges](https://angular-challenges.vercel.app/)
Check [all 48 challenges](https://angular-challenges.vercel.app/)

## Contributors ✨

Expand Down
36 changes: 36 additions & 0 deletions apps/forms/form-dialog-alert/.eslintrc.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"extends": ["../../../.eslintrc.json"],
"ignorePatterns": ["!**/*"],
"overrides": [
{
"files": ["*.ts"],
"extends": [
"plugin:@nx/angular",
"plugin:@angular-eslint/template/process-inline-templates"
],
"rules": {
"@angular-eslint/directive-selector": [
"error",
{
"type": "attribute",
"prefix": "app",
"style": "camelCase"
}
],
"@angular-eslint/component-selector": [
"error",
{
"type": "element",
"prefix": "app",
"style": "kebab-case"
}
]
}
},
{
"files": ["*.html"],
"extends": ["plugin:@nx/angular-template"],
"rules": {}
}
]
}
11 changes: 11 additions & 0 deletions apps/forms/form-dialog-alert/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
# Avoid losing form data

> author: [Timothy Alcaide](https://github.com/alcaidio)

### Run Application

```bash
npx nx serve form-dialog-alert
```

Challenge documentation is [here](https://angular-challenges.vercel.app/challenges/forms/48-form-dialog-alert/).
72 changes: 72 additions & 0 deletions apps/forms/form-dialog-alert/project.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
{
"name": "form-dialog-alert",
"$schema": "../../../node_modules/nx/schemas/project-schema.json",
"projectType": "application",
"prefix": "app",
"sourceRoot": "apps/forms/form-dialog-alert/src",
"tags": [],
"targets": {
"build": {
"executor": "@angular-devkit/build-angular:application",
"outputs": ["{options.outputPath}"],
"options": {
"outputPath": "dist/apps/forms/form-dialog-alert",
"index": "apps/forms/form-dialog-alert/src/index.html",
"browser": "apps/forms/form-dialog-alert/src/main.ts",
"polyfills": ["zone.js"],
"tsConfig": "apps/forms/form-dialog-alert/tsconfig.app.json",
"inlineStyleLanguage": "scss",
"assets": [
"apps/forms/form-dialog-alert/src/favicon.ico",
"apps/forms/form-dialog-alert/src/assets"
],
"styles": ["apps/forms/form-dialog-alert/src/styles.scss"],
"scripts": []
},
"configurations": {
"production": {
"budgets": [
{
"type": "initial",
"maximumWarning": "500kb",
"maximumError": "1mb"
},
{
"type": "anyComponentStyle",
"maximumWarning": "2kb",
"maximumError": "4kb"
}
],
"outputHashing": "all"
},
"development": {
"optimization": false,
"extractLicenses": false,
"sourceMap": true
}
},
"defaultConfiguration": "production"
},
"serve": {
"executor": "@angular-devkit/build-angular:dev-server",
"configurations": {
"production": {
"buildTarget": "form-dialog-alert:build:production"
},
"development": {
"buildTarget": "form-dialog-alert:build:development"
}
},
"defaultConfiguration": "development"
},
"extract-i18n": {
"executor": "@angular-devkit/build-angular:extract-i18n",
"options": {
"buildTarget": "form-dialog-alert:build"
}
},
"lint": {
"executor": "@nx/eslint:lint"
}
}
}
20 changes: 20 additions & 0 deletions apps/forms/form-dialog-alert/src/app/app.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
import { Component } from '@angular/core';
import { RouterOutlet } from '@angular/router';
import { NavComponent } from './ui/nav.component';

@Component({
standalone: true,
imports: [RouterOutlet, NavComponent],
selector: 'app-root',
template: `
<div class="h-screen bg-gray-50">
<app-nav
class="mx-auto flex w-full items-center justify-center pb-2 pt-8" />

<main class="px-4 py-16 sm:px-6 lg:px-8">
<router-outlet></router-outlet>
</main>
</div>
`,
})
export class AppComponent {}
7 changes: 7 additions & 0 deletions apps/forms/form-dialog-alert/src/app/app.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { ApplicationConfig } from '@angular/core';
import { provideRouter, withComponentInputBinding } from '@angular/router';
import { appRoutes } from './app.routes';

export const appConfig: ApplicationConfig = {
providers: [provideRouter(appRoutes, withComponentInputBinding())],
};
29 changes: 29 additions & 0 deletions apps/forms/form-dialog-alert/src/app/app.routes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
import { Route } from '@angular/router';
import { JoinComponent } from './pages/join.component';
import { PageComponent } from './pages/page.component';

export const appRoutes: Route[] = [
{
path: '',
pathMatch: 'full',
redirectTo: 'form',
},
{
path: 'form',
loadComponent: () => JoinComponent,
},
{
path: 'page-1',
data: {
title: 'Page 1',
},
loadComponent: () => PageComponent,
},
{
path: 'page-2',
data: {
title: 'Page 2',
},
loadComponent: () => PageComponent,
},
];
16 changes: 16 additions & 0 deletions apps/forms/form-dialog-alert/src/app/pages/join.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { FormComponent } from '../ui/form.component';

@Component({
standalone: true,
imports: [FormComponent],
template: `
<section class="mx-auto max-w-screen-sm">
<div class="rounded-lg bg-white p-8 shadow-lg lg:p-12">
<app-form />
</div>
</section>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class JoinComponent {}
14 changes: 14 additions & 0 deletions apps/forms/form-dialog-alert/src/app/pages/page.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
import { ChangeDetectionStrategy, Component, input } from '@angular/core';

@Component({
standalone: true,
template: `
<section>
<h1>{{ title() }}</h1>
</section>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class PageComponent {
title = input.required<string>();
}
30 changes: 30 additions & 0 deletions apps/forms/form-dialog-alert/src/app/ui/dialog.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';

// NOTE : this is just the dialog content, you need to implement dialog logic

@Component({
standalone: true,
template: `
<div role="alert" class="rounded-xl border border-gray-100 bg-white p-5">
<h3 class="block text-xl font-medium text-red-600">
You have unsaved information!
</h3>

<p class="mt-1 text-gray-700">Do you want to continue and lose them?</p>

<div class="mt-4 flex gap-2">
<button
class="inline-flex items-center gap-2 rounded-lg bg-red-600 px-4 py-2 text-white hover:bg-red-700">
Yes continue
</button>

<button
class="block rounded-lg px-4 py-2 text-gray-700 transition hover:bg-gray-50">
Stay on page
</button>
</div>
</div>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class AlertDialogComponent {}
78 changes: 78 additions & 0 deletions apps/forms/form-dialog-alert/src/app/ui/form.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,78 @@
import { ChangeDetectionStrategy, Component, inject } from '@angular/core';
import { FormBuilder, ReactiveFormsModule, Validators } from '@angular/forms';

@Component({
selector: 'app-form',
standalone: true,
imports: [ReactiveFormsModule],
template: `
<form [formGroup]="form" (ngSubmit)="onSubmit()" class="space-y-4">
<div>
<label class="sr-only" for="name">Name</label>
<input
class="w-full rounded-lg border-gray-200 p-3 text-sm"
placeholder="Name"
type="text"
formControlName="name"
id="name" />
</div>

<div class="grid grid-cols-1 gap-4 sm:grid-cols-2">
<div>
<label class="sr-only" for="email">Email</label>
<input
class="w-full rounded-lg border-gray-200 p-3 text-sm"
placeholder="Email address"
type="email"
formControlName="email"
id="email" />
</div>

<div>
<label class="sr-only" for="phone">Phone</label>
<input
class="w-full rounded-lg border-gray-200 p-3 text-sm"
placeholder="Phone Number"
type="tel"
formControlName="phone"
id="phone" />
</div>
</div>

<div>
<label class="sr-only" for="message">Message</label>

<textarea
class="w-full rounded-lg border-gray-200 p-3 text-sm"
placeholder="Message"
rows="8"
formControlName="message"
id="message"></textarea>
</div>

<div class="mt-4">
<button
[disabled]="form.invalid"
type="submit"
class="inline-block w-full rounded-lg border bg-gray-50 px-5 py-3 font-medium text-gray-900 disabled:cursor-not-allowed disabled:bg-gray-300 sm:w-auto">
Submit
</button>
</div>
</form>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class FormComponent {
private fb = inject(FormBuilder);

form = this.fb.nonNullable.group({
name: ['', { validators: [Validators.required] }],
email: ['', [Validators.required, Validators.email]], // other syntax
phone: '',
message: '',
});

onSubmit() {
if (this.form.valid) this.form.reset();
}
}
33 changes: 33 additions & 0 deletions apps/forms/form-dialog-alert/src/app/ui/nav.component.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
import { ChangeDetectionStrategy, Component } from '@angular/core';
import { RouterLink, RouterLinkActive } from '@angular/router';

@Component({
selector: 'app-nav',
standalone: true,
imports: [RouterLink, RouterLinkActive],
template: `
<nav
class="inline-flex overflow-hidden rounded-md border bg-white shadow-sm">
<a
routerLink="/form"
routerLinkActive="bg-gray-300 hover:bg-gray-300"
class="inline-block px-4 py-2 text-sm font-medium text-gray-900 hover:bg-gray-100 focus:relative">
Form
</a>
<a
routerLink="/page-1"
routerLinkActive="bg-gray-300 hover:bg-gray-300"
class="inline-block px-4 py-2 text-sm font-medium text-gray-900 hover:bg-gray-100 focus:relative">
Page 1
</a>
<a
routerLink="/page-2"
routerLinkActive="bg-gray-300 hover:bg-gray-300"
class="inline-block px-4 py-2 text-sm font-medium text-gray-900 hover:bg-gray-100 focus:relative">
Page 2
</a>
</nav>
`,
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NavComponent {}
Empty file.
Binary file added apps/forms/form-dialog-alert/src/favicon.ico
Binary file not shown.
13 changes: 13 additions & 0 deletions apps/forms/form-dialog-alert/src/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>form-dialog-alert</title>
<base href="/" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link rel="icon" type="image/x-icon" href="favicon.ico" />
</head>
<body>
<app-root></app-root>
</body>
</html>
7 changes: 7 additions & 0 deletions apps/forms/form-dialog-alert/src/main.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app/app.component';
import { appConfig } from './app/app.config';

bootstrapApplication(AppComponent, appConfig).catch((err) =>
console.error(err),
);
5 changes: 5 additions & 0 deletions apps/forms/form-dialog-alert/src/styles.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
@tailwind base;
@tailwind components;
@tailwind utilities;

/* You can add global styles to this file, and also import other style files */
Loading