mirror of
https://github.com/danielvici/tool-website.git
synced 2026-01-17 02:21:26 +00:00
first content
add: Cards for Generators on startpage. test site, navbar
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
import { ApplicationConfig, provideBrowserGlobalErrorListeners, provideZoneChangeDetection } from '@angular/core';
|
||||
import {
|
||||
ApplicationConfig,
|
||||
provideBrowserGlobalErrorListeners,
|
||||
provideZoneChangeDetection,
|
||||
} from '@angular/core';
|
||||
import { provideRouter } from '@angular/router';
|
||||
|
||||
import { routes } from './app.routes';
|
||||
@@ -7,6 +11,6 @@ export const appConfig: ApplicationConfig = {
|
||||
providers: [
|
||||
provideBrowserGlobalErrorListeners(),
|
||||
provideZoneChangeDetection({ eventCoalescing: true }),
|
||||
provideRouter(routes)
|
||||
]
|
||||
provideRouter(routes),
|
||||
],
|
||||
};
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<app-navbar class="fixed top-0 left-0 w-screen h-16 z-[999]"></app-navbar>
|
||||
|
||||
<main class="pt-16 bg-black-eerie min-h-screen">
|
||||
<div class="p-8 pt-24 h-screen text-white bg-black-eerie mx-auto flex justify-center-safe" >
|
||||
<!-- pt-16 bg-black-eerie h-screen flex justify-center-safe mx-auto " -->
|
||||
<router-outlet></router-outlet>
|
||||
</main>
|
||||
|
||||
</div>
|
||||
|
||||
@@ -1,13 +1,18 @@
|
||||
import { Routes } from '@angular/router';
|
||||
import { Startpage } from './sites/startpage/startpage';
|
||||
import {TestIt} from './sites/test-it/test-it';
|
||||
|
||||
export const routes: Routes = [
|
||||
|
||||
|
||||
|
||||
|
||||
{
|
||||
path:'test',
|
||||
component: TestIt,
|
||||
},
|
||||
{
|
||||
path: '',
|
||||
component: Startpage,
|
||||
},
|
||||
{
|
||||
path: '**',
|
||||
redirectTo: '',
|
||||
}
|
||||
];
|
||||
|
||||
@@ -1,12 +1,12 @@
|
||||
import { Component, signal } from '@angular/core';
|
||||
import { RouterOutlet } from '@angular/router';
|
||||
import {Navbar} from './components/navbar/navbar';
|
||||
import { Navbar } from './components/navbar/navbar';
|
||||
|
||||
@Component({
|
||||
selector: 'app-root',
|
||||
imports: [RouterOutlet, Navbar],
|
||||
templateUrl: './app.html',
|
||||
styleUrl: './app.css'
|
||||
styleUrl: './app.css',
|
||||
})
|
||||
export class App {
|
||||
protected readonly title = signal('tools-website');
|
||||
|
||||
0
src/app/components/custom-card/custom-card.css
Normal file
0
src/app/components/custom-card/custom-card.css
Normal file
15
src/app/components/custom-card/custom-card.html
Normal file
15
src/app/components/custom-card/custom-card.html
Normal file
@@ -0,0 +1,15 @@
|
||||
@if (enabled()) {
|
||||
<div
|
||||
class="h-full
|
||||
hover:cursor-pointer flex flex-col p-6 rounded-lg border border-gray-700 bg-zinc-800 transition-colors duration-200 hover:border-blue-500"
|
||||
[routerLink]="destination()">
|
||||
<app-custom-title
|
||||
[text]="title()"
|
||||
[textSizeInPx]="titleSizeInPx()"
|
||||
[textColor]="titleColor()"
|
||||
fontWeight="bold"
|
||||
class="mb-2"
|
||||
></app-custom-title>
|
||||
<span [ngStyle]="{'color': descriptionColor()}">{{ description() }}</span>
|
||||
</div>
|
||||
}
|
||||
22
src/app/components/custom-card/custom-card.spec.ts
Normal file
22
src/app/components/custom-card/custom-card.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CustomCard } from './custom-card';
|
||||
|
||||
describe('CustomCard', () => {
|
||||
let component: CustomCard;
|
||||
let fixture: ComponentFixture<CustomCard>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [CustomCard],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(CustomCard);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
28
src/app/components/custom-card/custom-card.ts
Normal file
28
src/app/components/custom-card/custom-card.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { Component, input } from '@angular/core';
|
||||
import { CustomTitle } from '../custom-title/custom-title';
|
||||
import {RouterLink} from '@angular/router';
|
||||
import {NgStyle} from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-custom-card',
|
||||
imports: [CustomTitle, RouterLink, NgStyle],
|
||||
templateUrl: './custom-card.html',
|
||||
styleUrl: './custom-card.css',
|
||||
})
|
||||
export class CustomCard {
|
||||
|
||||
title = input.required<string>();
|
||||
titleSizeInPx = input<number>(20);
|
||||
titleColor = input<string>();
|
||||
|
||||
description = input.required<string>();
|
||||
descriptionColor = input<string>();
|
||||
|
||||
destination = input.required<string>();
|
||||
enabled = input.required<boolean>();
|
||||
|
||||
|
||||
ngOnInit() {
|
||||
console.log(this.destination());
|
||||
}
|
||||
}
|
||||
0
src/app/components/custom-title/custom-title.css
Normal file
0
src/app/components/custom-title/custom-title.css
Normal file
6
src/app/components/custom-title/custom-title.html
Normal file
6
src/app/components/custom-title/custom-title.html
Normal file
@@ -0,0 +1,6 @@
|
||||
<a
|
||||
[ngStyle]="{
|
||||
'font-size': textSizeInPx() + 'px',
|
||||
color: textColor(),
|
||||
'font-weight': fontWeight()}"
|
||||
>{{ text() }}</a>
|
||||
22
src/app/components/custom-title/custom-title.spec.ts
Normal file
22
src/app/components/custom-title/custom-title.spec.ts
Normal file
@@ -0,0 +1,22 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { CustomTitle } from './custom-title';
|
||||
|
||||
describe('CustomTitle', () => {
|
||||
let component: CustomTitle;
|
||||
let fixture: ComponentFixture<CustomTitle>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [CustomTitle],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(CustomTitle);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
15
src/app/components/custom-title/custom-title.ts
Normal file
15
src/app/components/custom-title/custom-title.ts
Normal file
@@ -0,0 +1,15 @@
|
||||
import { Component, input } from '@angular/core';
|
||||
import {NgClass, NgStyle} from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-custom-title',
|
||||
imports: [NgStyle, NgClass],
|
||||
templateUrl: './custom-title.html',
|
||||
styleUrl: './custom-title.css',
|
||||
})
|
||||
export class CustomTitle {
|
||||
text = input.required<string>();
|
||||
textSizeInPx = input<number>(16);
|
||||
textColor = input<string>();
|
||||
fontWeight = input<string>("normal");
|
||||
}
|
||||
@@ -1,11 +1,17 @@
|
||||
<nav class="h-16 bg-blue-marian">
|
||||
<div class="flex justify-between items-center px-4 bg-blue-marian text-white container mx-auto h-full">
|
||||
<div
|
||||
class="flex justify-between items-center px-4 bg-blue-marian text-white container mx-auto h-full"
|
||||
>
|
||||
<div class="flex items-center h-full">
|
||||
<span class="font-bold text-xl">Home</span>
|
||||
<a class="font-bold text-xl" routerLink="/">Home</a>
|
||||
</div>
|
||||
<div class="flex flex-row space-x-4 gap-6">
|
||||
<a class="hover:text-blue-200" routerLink="/coming-soon" routerLinkActive="active-link">Coming Soon</a>
|
||||
<a class="hover:text-blue-200" routerLink="/changelog" routerLinkActive="active-link">Changelog</a>
|
||||
<a class="hover:text-blue-200" routerLink="/coming-soon" routerLinkActive="active-link"
|
||||
>Coming Soon</a
|
||||
>
|
||||
<a class="hover:text-blue-200" routerLink="/changelog" routerLinkActive="active-link"
|
||||
>Changelog</a
|
||||
>
|
||||
<a class="hover:text-blue-200" routerLink="/about" routerLinkActive="active-link">About</a>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8,9 +8,8 @@ describe('Navbar', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Navbar]
|
||||
})
|
||||
.compileComponents();
|
||||
imports: [Navbar],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Navbar);
|
||||
component = fixture.componentInstance;
|
||||
|
||||
@@ -1,17 +1,11 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {RouterLink, RouterLinkActive} from '@angular/router';
|
||||
import {NgOptimizedImage} from '@angular/common';
|
||||
import { RouterLink, RouterLinkActive } from '@angular/router';
|
||||
import { NgOptimizedImage } from '@angular/common';
|
||||
|
||||
@Component({
|
||||
selector: 'app-navbar',
|
||||
imports: [
|
||||
RouterLinkActive,
|
||||
RouterLink,
|
||||
NgOptimizedImage
|
||||
],
|
||||
imports: [RouterLinkActive, RouterLink],
|
||||
templateUrl: './navbar.html',
|
||||
styleUrl: './navbar.css',
|
||||
})
|
||||
export class Navbar {
|
||||
|
||||
}
|
||||
export class Navbar {}
|
||||
|
||||
@@ -1,7 +1,32 @@
|
||||
<div class="text-white">
|
||||
|
||||
<h1 class="text-center">Moin Welt</h1>
|
||||
<p>TailwindCSS geht</p>
|
||||
|
||||
|
||||
<div class="mb-6">
|
||||
<app-custom-title
|
||||
[textSizeInPx]="24"
|
||||
text="Tools"
|
||||
textColor="white"
|
||||
class="font-bold"
|
||||
></app-custom-title>
|
||||
</div>
|
||||
<div class="gap-6 ml-4 max-w-7xl mx-auto space-y-12">
|
||||
@for (feature of features; track $index) {
|
||||
@if (feature.enabled) {
|
||||
<div>
|
||||
<div class="mb-4">
|
||||
<app-custom-title
|
||||
[textSizeInPx]="20"
|
||||
[text]="feature.name"
|
||||
textColor="oklch(70.7% 0.165 254.624)"
|
||||
fontWeight="bold"
|
||||
></app-custom-title>
|
||||
</div>
|
||||
<div class="ml-4 grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-6">
|
||||
@for (tool of feature.tools; track $index) {
|
||||
<app-custom-card [title]="tool.name" [description]="tool.description" descriptionColor="oklch(70.4% 0.04 256.788)"
|
||||
[destination]="tool.link" [enabled]="tool.enabled"></app-custom-card>
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
}
|
||||
}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@@ -8,9 +8,8 @@ describe('Startpage', () => {
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [Startpage]
|
||||
})
|
||||
.compileComponents();
|
||||
imports: [Startpage],
|
||||
}).compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(Startpage);
|
||||
component = fixture.componentInstance;
|
||||
|
||||
@@ -1,14 +1,43 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {NgOptimizedImage} from '@angular/common';
|
||||
import { NgOptimizedImage } from '@angular/common';
|
||||
import { CustomTitle } from '../../components/custom-title/custom-title';
|
||||
import { CustomCard } from '../../components/custom-card/custom-card';
|
||||
import {ReactiveFormsModule} from '@angular/forms';
|
||||
|
||||
@Component({
|
||||
selector: 'app-startpage',
|
||||
imports: [
|
||||
NgOptimizedImage
|
||||
],
|
||||
templateUrl: './startpage.html',
|
||||
styleUrl: './startpage.css',
|
||||
imports: [CustomTitle, CustomCard, ReactiveFormsModule],
|
||||
})
|
||||
export class Startpage {
|
||||
|
||||
features = [{
|
||||
name: 'Generators',
|
||||
enabled: true,
|
||||
tools: [{
|
||||
name: 'Password Generator',
|
||||
description: 'Create secure passwords with custom options',
|
||||
link: '/generator/password',
|
||||
enabled: true,
|
||||
}, {
|
||||
name: 'QR Code Generator',
|
||||
description: 'Generate and download QR codes for any text or URL',
|
||||
link: '/generator/qr',
|
||||
enabled: true,
|
||||
}]}, {
|
||||
name: 'Tests',
|
||||
enabled: true,
|
||||
tools: [{
|
||||
name: 'Test 1',
|
||||
description: 'This is a just test description.',
|
||||
link: '/test',
|
||||
enabled: true,
|
||||
},{
|
||||
name: 'Test 2',
|
||||
description: 'This is a just test description.',
|
||||
link: '/test',
|
||||
enabled: false,
|
||||
}]
|
||||
}];
|
||||
}
|
||||
|
||||
0
src/app/sites/test-it/test-it.css
Normal file
0
src/app/sites/test-it/test-it.css
Normal file
9
src/app/sites/test-it/test-it.html
Normal file
9
src/app/sites/test-it/test-it.html
Normal file
@@ -0,0 +1,9 @@
|
||||
<div class="flex flex-col justify-center items-center">
|
||||
<h1 class="text-7xl text-white m-10">Yeah. This Site works...</h1>
|
||||
<div class="flex justify-center">
|
||||
<button
|
||||
class="text-xl w-fit bg-blue-500 text-white py-2 px-4 rounded-md hover:bg-blue-600 transition-colors hover:cursor-pointer"
|
||||
routerLink="/"
|
||||
>Home</button>
|
||||
</div>
|
||||
</div>
|
||||
23
src/app/sites/test-it/test-it.spec.ts
Normal file
23
src/app/sites/test-it/test-it.spec.ts
Normal file
@@ -0,0 +1,23 @@
|
||||
import { ComponentFixture, TestBed } from '@angular/core/testing';
|
||||
|
||||
import { TestIt } from './test-it';
|
||||
|
||||
describe('TestIt', () => {
|
||||
let component: TestIt;
|
||||
let fixture: ComponentFixture<TestIt>;
|
||||
|
||||
beforeEach(async () => {
|
||||
await TestBed.configureTestingModule({
|
||||
imports: [TestIt]
|
||||
})
|
||||
.compileComponents();
|
||||
|
||||
fixture = TestBed.createComponent(TestIt);
|
||||
component = fixture.componentInstance;
|
||||
fixture.detectChanges();
|
||||
});
|
||||
|
||||
it('should create', () => {
|
||||
expect(component).toBeTruthy();
|
||||
});
|
||||
});
|
||||
14
src/app/sites/test-it/test-it.ts
Normal file
14
src/app/sites/test-it/test-it.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
import { Component } from '@angular/core';
|
||||
import {RouterLink} from '@angular/router';
|
||||
|
||||
@Component({
|
||||
selector: 'app-test-it',
|
||||
imports: [
|
||||
RouterLink
|
||||
],
|
||||
templateUrl: './test-it.html',
|
||||
styleUrl: './test-it.css',
|
||||
})
|
||||
export class TestIt {
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user