develop #1

Merged
s473561 merged 12 commits from develop into master 2023-07-05 19:17:21 +02:00
27 changed files with 364 additions and 59 deletions
Showing only changes of commit 95bad57562 - Show all commits

View File

@ -1,14 +1,15 @@
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
import { HoroscopeDataContainerComponent } from './horoscope-data-container/horoscope-data-container.component';
import {MockLoginComponent} from './mock-login/mock-login.component';
import { NumerologyComponent } from './numerology/numerology.component';
const routes: Routes = [
{
path: 'horoscope',
component: HoroscopeDataContainerComponent
},
{ path: 'login', component: MockLoginComponent },
{ path: 'numerology', component: NumerologyComponent },
{ path: '', redirectTo: '/horoscope', pathMatch: 'full' },
];

View File

@ -4,4 +4,5 @@
<!-- <app-horoscope></app-horoscope> -->
<!-- <app-horoscope-data-container></app-horoscope-data-container>
-->
<app-nav-bar></app-nav-bar>
<router-outlet></router-outlet>

View File

@ -7,5 +7,5 @@ import { Component } from '@angular/core';
styleUrls: ['./app.component.css']
})
export class AppComponent {
// title = 'my_app';
title = 'my_app';
}

View File

@ -6,15 +6,19 @@ import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { HoroscopeComponent } from './horoscope/horoscope.component';
import { FormsModule } from '@angular/forms';
import { OpenHoroscopeService } from './open-horoscope.service';
import { OpenHoroscopeService } from './open-horoscope/open-horoscope.service';
import { FontAwesomeModule } from '@fortawesome/angular-fontawesome';
import { HoroscopeDataContainerComponent } from './horoscope-data-container/horoscope-data-container.component';
import { NavBarComponent } from './nav-bar/nav-bar.component';
import { NumerologyComponent } from './numerology/numerology.component';
@NgModule({
declarations: [
AppComponent,
HoroscopeComponent,
HoroscopeDataContainerComponent
HoroscopeDataContainerComponent,
NavBarComponent,
NumerologyComponent
],
imports: [
BrowserModule,

View File

@ -1,3 +1,5 @@
<body>
<div class="search">
<form #form="ngForm" (submit)="onSubmit()">
<input type="text" placeholder="search sunsign" name="sunsign" [(ngModel)]="sunSign">
@ -6,4 +8,5 @@
<app-horoscope [horoscopeData]="horoscopeData1" (newSignEvent) = "changeGender"
>
</app-horoscope>
</app-horoscope>
</body>

View File

@ -18,4 +18,11 @@ describe('HoroscopeDataContainerComponent', () => {
it('should create', () => {
expect(component).toBeTruthy();
});
});
// describe('changeGender', () => {
// it('should asign to parameter gender woman if the input is woman', () => {
// const result = changeGender()
// })
// });

View File

@ -1,6 +1,6 @@
import { Component, OnInit } from '@angular/core';
import { HoroscopeData } from '../models/horoscope.model';
import { OpenHoroscopeService } from '../open-horoscope.service';
import { OpenHoroscopeService } from '../open-horoscope/open-horoscope.service';
import { faEarth, faFire, faCalendar} from '@fortawesome/free-solid-svg-icons';
@Component({
@ -38,7 +38,11 @@ export class HoroscopeDataContainerComponent implements OnInit {
next: (response) => {
this.horoscopeData1 = response;
console.log(response);
},
error: (error) => {
console.log(error);
}
});
}

View File

@ -1,4 +1,5 @@
<div class="container" *ngIf="horoscopeData">
<div class="if-no-error" *ngIf="!horoscopeData.error; else ifError">
<div class="first-column">
<div class="upper-data">
<img src="../assets/aquarius.jpg" *ngIf="horoscopeData.name === 'Aquarius'">
@ -13,21 +14,18 @@
<img src="../assets/scorpio.jpg" *ngIf="horoscopeData.name === 'Scorpio'">
<img src="../assets/taurus.jpg" *ngIf="horoscopeData.name === 'Tautus'">
<img src="../assets/virgo.jpg" *ngIf="horoscopeData.name === 'Virgo'">
<div class="horoscope-data">
<div class="sign">{{ horoscopeData.name }}</div>
</div>
</div>
<div class="lower-data">
<div class="more-info-label">
Information
{{ horoscopeData.name }}
</div>
<div class="more-info-container">
<div class="info-block">
<div class="info-block-label">
<fa-icon style="color: white" [icon]="faGlobe"></fa-icon>
<span>ruling<br>planet</span>
<span>ruling</span>
<span>planet</span>
</div>
<div class="info-block-value">
{{ horoscopeData.ruling_planet }}
@ -37,6 +35,7 @@
<div class="info-block-label">
<fa-icon style="color: white" [icon]="faFire"></fa-icon>
<span>element</span>
<span></span>
</div>
<div class="info-block-value">
{{ horoscopeData.element }}
@ -45,7 +44,8 @@
<div class="info-block-date">
<div class="info-block-label-date">
<fa-icon style="color: white" [icon]="faCalendar"></fa-icon>
<span>date range</span>
<span>date</span>
<span>range</span>
</div>
<div class="info-block-value-date">
{{ horoscopeData.date_range }}
@ -64,7 +64,7 @@
</div>
<div class="details-label">
<p>
Get to know yourself {{ gender }}
Get to know yourselfs
</p>
</div>
<div class="details-block" *ngIf="gender === 'woman'">
@ -74,4 +74,12 @@
{{ horoscopeData.man }}
</div>
</div>
</div>
</div>
<ng-template #ifError>
<div class="error-container">
<p>
{{ horoscopeData.error }}
</p>
</div>
</ng-template>
</div>

View File

@ -1,5 +1,5 @@
import { Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
import { OpenHoroscopeService } from '../open-horoscope.service';
import { OpenHoroscopeService } from '../open-horoscope/open-horoscope.service';
import { HoroscopeData } from '../models/horoscope.model';
import { faEarth, faFire, faCalendar} from '@fortawesome/free-solid-svg-icons';

View File

@ -1 +0,0 @@
<p>mock-login works!</p>

View File

@ -1,10 +0,0 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-mock-login',
templateUrl: './mock-login.component.html',
styleUrls: ['./mock-login.component.css']
})
export class MockLoginComponent {
}

View File

@ -15,5 +15,6 @@ export interface HoroscopeData {
symbol: string
weaknesses: string
woman: string
error: string
}

View File

@ -0,0 +1,4 @@
export interface NumerologyData{
desc: string
number: string
}

View File

@ -0,0 +1,29 @@
ul {
list-style-type: none;
margin: 0;
padding: 0;
overflow: hidden;
background-color: var(--dark-red);
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
}
li {
float: right;
}
li a {
display: block;
color: white;
text-align: center;
padding: 14px 16px;
text-decoration: none;
}
li a:hover {
background-color: #111;
}
.nav-bar {
width: 800px;
}

View File

@ -0,0 +1,18 @@
<nav class="nav-bar">
<div class="inside-nav-bar">
<ul>
<li>
<nav>
<a href="#" routerLink="/numerology" routerLinkActive="active">Numerology</a>
</nav>
</li>
<li>
<nav>
<a href="#" routerLink="/horoscope" routerLinkActive="active">Zodiac</a>
</nav>
</li>
</ul>
</div>
</nav>

View File

@ -1,16 +1,16 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { MockLoginComponent } from './mock-login.component';
import { NavBarComponent } from './nav-bar.component';
describe('MockLoginComponent', () => {
let component: MockLoginComponent;
let fixture: ComponentFixture<MockLoginComponent>;
describe('NavBarComponent', () => {
let component: NavBarComponent;
let fixture: ComponentFixture<NavBarComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [MockLoginComponent]
declarations: [NavBarComponent]
});
fixture = TestBed.createComponent(MockLoginComponent);
fixture = TestBed.createComponent(NavBarComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});

View File

@ -0,0 +1,10 @@
import { Component } from '@angular/core';
@Component({
selector: 'app-nav-bar',
templateUrl: './nav-bar.component.html',
styleUrls: ['./nav-bar.component.css']
})
export class NavBarComponent {
}

View File

@ -0,0 +1,72 @@
.container-numerology {
width: 600px;
height: 78vh;
background-color: var(--green-2);
border-radius: 20px;
box-shadow: 10px 10px 10px var(--shadow-dark);
display: flex;
flex-direction: row;
margin: 1em;
margin-top: 0.5em;
flex-direction: column;
}
.upper-num {
position: relative;
overflow: hidden;
height: 25%;
border-top-left-radius: 20px;
border-top-right-radius: 20px;
margin: 1em;
background-color: #9c6464;
}
.lower-num{
position: relative;
overflow: hidden;
width: 100%;
height: 75%;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
padding: 0 1em 1em 1em ;
display: flex;
flex-direction: column;
}
.num-disp {
font-size: 2em;
color: var(--white);
font-weight: 800;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.lower-container {
flex: 1;
background-color: var(--shadow-light);
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
margin-top: 1em;
width: 100%;
display: flex;
flex-wrap: wrap;
}
.lower-container p {
color: var(--white);
margin: 1em;
}
#noNumber {
font-size: 1em;
color: var(--white);
font-weight: 800;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
text-align: center
}

View File

@ -0,0 +1,26 @@
<body>
<div class="search">
<form #form="ngForm" (submit)="onSubmitNumber()">
<input type="text" placeholder="number" name="number" [(ngModel)]="number">
</form>
</div>
<div class="container-numerology" *ngIf="numerologyData">
<div class="upper-num">
<div class="num-disp">
{{ numerologyData.number }}
</div>
</div>
<div class="lower-num" >
<div class="lower-container" >
<p *ngIf="numerologyData.desc != ''">
{{ numerologyData.desc }}
</p>
<p id="noNumber" *ngIf="numerologyData.desc == ''">
There is no numerology for this number.
</p>
</div>
</div>
</div>
</body>

View File

@ -0,0 +1,21 @@
import { ComponentFixture, TestBed } from '@angular/core/testing';
import { NumerologyComponent } from './numerology.component';
describe('NumerologyComponent', () => {
let component: NumerologyComponent;
let fixture: ComponentFixture<NumerologyComponent>;
beforeEach(() => {
TestBed.configureTestingModule({
declarations: [NumerologyComponent]
});
fixture = TestBed.createComponent(NumerologyComponent);
component = fixture.componentInstance;
fixture.detectChanges();
});
it('should create', () => {
expect(component).toBeTruthy();
});
});

View File

@ -0,0 +1,39 @@
import { Component, OnInit } from '@angular/core';
import { OpenNumerologyService } from '../open-numerology/open-numerology.service';
import { NumerologyData } from '../models/numerology.model';
@Component({
selector: 'app-numerology',
templateUrl: './numerology.component.html',
styleUrls: ['./numerology.component.css']
})
export class NumerologyComponent implements OnInit{
public number: string = '7'
public numerologyData?: NumerologyData
constructor (private openNumerologyService: OpenNumerologyService) {
}
ngOnInit(): void {
this.getHoroscope();
this.number= '';
}
onSubmitNumber() {
this.getHoroscope();
this.number = '';
}
getHoroscope() {
this.openNumerologyService.getNumerologyData(this.number)
.subscribe({
next: (response) => {
this.numerologyData = response;
console.log(response);
}
});
}
}

View File

@ -1,7 +1,7 @@
import { Injectable } from '@angular/core';
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
import { Observable } from 'rxjs';
import { HoroscopeData } from './models/horoscope.model';
import { HoroscopeData } from '../models/horoscope.model';
@Injectable({
providedIn: 'root'

View File

@ -0,0 +1,16 @@
import { TestBed } from '@angular/core/testing';
import { OpenNumerologyService } from './open-numerology.service';
describe('OpenNumerologyService', () => {
let service: OpenNumerologyService;
beforeEach(() => {
TestBed.configureTestingModule({});
service = TestBed.inject(OpenNumerologyService);
});
it('should be created', () => {
expect(service).toBeTruthy();
});
});

View File

@ -0,0 +1,26 @@
import { HttpClient, HttpHeaders, HttpParams } from '@angular/common/http';
import { Injectable } from '@angular/core';
import { NumerologyData } from '../models/numerology.model';
import { Observable } from 'rxjs/internal/Observable';
@Injectable({
providedIn: 'root'
})
export class OpenNumerologyService {
constructor( private http: HttpClient ) { }
getNumerologyData(number: string): Observable<NumerologyData>{
const url = 'https://horoscope-astrology.p.rapidapi.com/numerology?';
const headers = new HttpHeaders({
'X-RapidAPI-Key': '5016ac0ebdmsha06ee5d995fe2c4p108e0fjsn03c8c4f21287',
'X-RapidAPI-Host': 'horoscope-astrology.p.rapidapi.com'
});
const params = new HttpParams()
.set('n', number.toLowerCase());
return this.http.get<NumerologyData>(url, {headers, params});
}
}

View File

@ -2,6 +2,8 @@
:root{
--green-1: #728c5d;
--green-2: #364d23;
--dark-red: #3f0302;
--light-orange: #fedaa9;
--white: #FFF;
--grey: #EDEDED;
--shadow-dark: rgba(0,0,0,0.3);
@ -16,22 +18,51 @@ body {
font-family: Verdana, Geneva, Tahoma, sans-serif;
font-size: 16px;
width: 100%;
height: 100vh;
height: 100%;
background-color: var(--green-1);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.first-column {
width: 35%;
display: flex;
flex-direction: column;
}
.second-column {
width: 65%;
display: flex;
flex-direction: column;
}
.container {
width: 800px;
height: 80vh;
height: 78vh;
background-color: var(--green-2);
border-radius: 20px;
box-shadow: 10px 10px 10px var(--shadow-dark);
/* display: flex;
flex-direction: row; */
margin: 1em;
margin-top: 0.5em;
}
.if-no-error{
display: flex;
flex-direction: row;
}
.error-container {
font-size: 2em;
color: var(--white);
font-weight: 800;
position: relative;
z-index: 1;
width: 100%;
height: 100%;
display: flex;
align-items: center;
justify-content: center;
}
.upper-data {
position: relative;
overflow: hidden;
@ -47,7 +78,7 @@ body {
height: 50%;
border-bottom-left-radius: 20px;
border-bottom-right-radius: 20px;
padding: 1em;
padding: 0 1em 1em 1em ;
display: flex;
flex-direction: column;
}
@ -77,7 +108,7 @@ body {
font-weight: 700;
}
.search {
margin-bottom: 1em;
margin-top: 0.5em;
text-align: center;
}
.search input {
@ -95,6 +126,9 @@ body {
}
.more-info-label{
color: var(--white);
text-align: center;
font-size: 1.5em;
font-weight: 600;
}
.more-info-container{
flex: 1;
@ -126,15 +160,15 @@ body {
}
.info-block-label span {
color: var(--white);
font-size: 0.8em;
font-size: 0.7em;
}
.info-block-value {
width: 50%;
display: flex;
padding-left: 10%;
justify-content: flex-start;
align-items: center;
color: var(--white);
font-size: 0.8em;
}
.info-block-label-date {
width: 25%;
@ -143,26 +177,17 @@ body {
align-items: center;
flex-direction: column;
color: var(--white);
font-size: 0.8em;
font-size: 0.7em;
}
.info-block-value-date {
width: 75%;
padding-left: 5%;
display: flex;
justify-content: flex-start;
align-items: center;
color: var(--white);
font-size: 0.8em;
}
.first-column {
width: 50%;
display: flex;
flex-direction: column;
}
.second-column {
width: 50%;
display: flex;
flex-direction: column;
}
.details-block {
padding: 1em;
background-color: var(--shadow-light);
@ -170,6 +195,7 @@ body {
border-radius: 20px;
margin-top: 1em;
margin-right: 1em;
font-size: 0.9em;;
}
.details-label {
margin-top: 1em;
@ -186,15 +212,15 @@ body {
align-items: center;
}
.button {
border-radius: 20px;
padding: 0.8em;
border-radius: 15px;
padding-top: 0.6em;
padding-bottom: 0.6em;
padding-left: 1.5em;
padding-right: 1.5em;
background-color: var(--green-1);
color: black;
border: none;
color: white;
margin-right: 10%;
text-align: center;
}
.button #woman{
background-color: pink;
}