Added deepL translation api and made little improvements
This commit is contained in:
@@ -1,12 +1,18 @@
|
||||
<div [ngClass]="{'background-color': backgroundColor}">
|
||||
|
||||
<div class="alert alert-warning shadow-lg " *ngIf="allert">
|
||||
<div class="alert alert-warning shadow-lg" *ngIf="allert">
|
||||
<div>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current flex-shrink-0 h-6 w-6" fill="none" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" /></svg>
|
||||
<svg xmlns="http://www.w3.org/2000/svg" class="stroke-current flex-shrink-0 h-6 w-6" fill="none"
|
||||
viewBox="0 0 24 24">
|
||||
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2"
|
||||
d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z"/>
|
||||
</svg>
|
||||
<span>Enter a location!!</span>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<button class="btn btn-outline btn-primary" id="translate" (click)="translate()">Traduci</button>
|
||||
|
||||
<!-- <div class="canvas nuvola">
|
||||
<canvas #myCanvas width="100vw" class="canvas"></canvas>
|
||||
</div> -->
|
||||
@@ -16,7 +22,7 @@
|
||||
<div class="inputElements">
|
||||
<input #myInput type="text" [(ngModel)]="luogoSelezionato" (keyup)="cercaLuogo(myInput.value)"
|
||||
(keydown)="selezionaSuggerimento($event)" placeholder="Type here"
|
||||
class="input input-bordered input-primary w-full max-w-xs">
|
||||
class="input input-bordered input-primary btn-wide">
|
||||
|
||||
<button
|
||||
class="btn gap-2 border-primary bg-primary text-secondary hover:bg-secondary hover:text-primary hover:border-primary"
|
||||
@@ -29,27 +35,28 @@
|
||||
</button>
|
||||
|
||||
</div>
|
||||
<ng-container *ngIf="locationsPopup | async as locations;">
|
||||
<ul *ngIf="locations.length > 0" class="menu bg-base-200 !w-fit p-2 rounded-box" id="list">
|
||||
|
||||
<li class="menu-title">
|
||||
<span>Places</span>
|
||||
</li>
|
||||
|
||||
<li *ngFor="let luogo of locations" (click)="luogoSelezionato=luogo.location; cercaLuogo(luogo.location)">
|
||||
{{luogo.location}}
|
||||
</li>
|
||||
|
||||
<li class="menu-title">
|
||||
<span>Near</span>
|
||||
</li>
|
||||
|
||||
<li *ngFor="let luogo of luoghiNear()">
|
||||
{{luogo.location}}
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</ng-container>
|
||||
</div>
|
||||
<ng-container *ngIf="locationsPopup | async as locations;">
|
||||
<ul *ngIf="locations.length > 0" class="menu bg-base-200 p-2 rounded-box" id="list"
|
||||
[style.width.px]="myInput.offsetWidth">
|
||||
|
||||
<li class="menu-title">
|
||||
<span>Places</span>
|
||||
</li>
|
||||
|
||||
<li *ngFor="let luogo of locations" (click)="luogoSelezionato=luogo.location; cercaLuogo(luogo.location)">
|
||||
{{luogo.location}}
|
||||
</li>
|
||||
|
||||
<li class="menu-title">
|
||||
<span>Near</span>
|
||||
</li>
|
||||
|
||||
<li *ngFor="let luogo of luoghiNear()">
|
||||
{{luogo.location}}
|
||||
</li>
|
||||
|
||||
</ul>
|
||||
</ng-container>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user