- Timestamp:
- 07/22/20 13:08:15 (4 years ago)
- Branches:
- master
- Children:
- ca0dae7
- Parents:
- 1f041f6
- Location:
- Farmatiko
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
Farmatiko/ClientApp/package-lock.json
r1f041f6 r46c298d 6332 6332 "integrity": "sha512-a30VEBm4PEdx1dRB7MFK7BejejvCvBronbLjht+sHuGYj8PHs7M/5Z+rt5lw551vZ7yfTCj4Vuyy3mSJytDWRQ==" 6333 6333 }, 6334 "hammerjs": { 6335 "version": "2.0.8", 6336 "resolved": "https://registry.npmjs.org/hammerjs/-/hammerjs-2.0.8.tgz", 6337 "integrity": "sha1-BO93hiz/K7edMPdpIJWTAiK/YPE=" 6338 }, 6334 6339 "handle-thing": { 6335 6340 "version": "2.0.1", -
Farmatiko/ClientApp/package.json
r1f041f6 r46c298d 28 28 "bootstrap": "^4.3.1", 29 29 "core-js": "^3.3.3", 30 "hammerjs": "^2.0.8", 30 31 "jquery": "3.4.1", 31 32 "oidc-client": "^1.9.1", -
Farmatiko/ClientApp/src/app/app.server.module.ts
r1f041f6 r46c298d 6 6 7 7 @NgModule({ 8 9 8 imports: [AppModule, ServerModule, ModuleMapLoaderModule], 9 bootstrap: [AppComponent] 10 10 }) 11 11 export class AppServerModule { } -
Farmatiko/ClientApp/src/app/home/home.component.css
r1f041f6 r46c298d 1 1 .wrapper { 2 3 4 2 display: flex; 3 justify-content: space-around; 4 padding-top: 50px; 5 5 } 6 6 7 7 nav { 8 8 float: right; 9 9 } 10 10 11 11 table { 12 12 margin-top: 25px; 13 13 } -
Farmatiko/ClientApp/src/app/home/home.component.html
r1f041f6 r46c298d 1 1 <div class="wrapper"> 2 2 <div> 3 3 <h2>Лекови</h2> 4 4 <input type="text" class="form-control" name="lek" placeholder="Пронајди лек"> 5 5 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true"> 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 6 <thead> 7 <tr> 8 <th>Placeholder1</th> 9 <th>Placeholder2</th> 10 <th>Placeholder3</th> 11 <th>Placeholder4</th> 12 </tr> 13 </thead> 14 <tbody> 15 <tr *ngFor=""> 16 <td>data1</td> 17 <td>data2</td> 18 <td>data3</td> 19 <td>data4</td> 20 </tr> 21 </tbody> 22 22 </table> 23 23 <nav aria-label="Page navigation example"> 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 24 <ul class="pagination"> 25 <li class="page-item"> 26 <a class="page-link" href="#" aria-label="Previous"> 27 <span aria-hidden="true">«</span> 28 <span class="sr-only">Previous</span> 29 </a> 30 </li> 31 <li class="page-item"><a class="page-link" href="#">1</a></li> 32 <li class="page-item"><a class="page-link" href="#">2</a></li> 33 <li class="page-item"><a class="page-link" href="#">3</a></li> 34 <li class="page-item"> 35 <a class="page-link" href="#" aria-label="Next"> 36 <span aria-hidden="true">»</span> 37 <span class="sr-only">Next</span> 38 </a> 39 </li> 40 </ul> 41 </nav> 42 </div> 43 <div> 44 44 <h2>Аптеки</h2> 45 45 <input type="text" class="form-control" name="apteka" placeholder="Пронајди аптека"> 46 46 <table class='table table-striped table-bordered table-sm' cellspacing="0" width="100%" aria-labelledby="tableLabel" *ngIf="true"> 47 47 <thead> 48 48 <tr> 49 50 51 52 49 <th>Placeholder1</th> 50 <th>Placeholder2</th> 51 <th>Placeholder3</th> 52 <th>Placeholder4</th> 53 53 </tr> 54 55 54 </thead> 55 <tbody> 56 56 <tr *ngFor=""> 57 58 59 60 57 <td>data1</td> 58 <td>data2</td> 59 <td>data3</td> 60 <td>data4</td> 61 61 </tr> 62 62 </tbody> 63 63 </table> 64 64 <nav aria-label="Page navigation example"> 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 65 <ul class="pagination"> 66 <li class="page-item"> 67 <a class="page-link" href="#" aria-label="Previous"> 68 <span aria-hidden="true">«</span> 69 <span class="sr-only">Previous</span> 70 </a> 71 </li> 72 <li class="page-item"><a class="page-link" href="#">1</a></li> 73 <li class="page-item"><a class="page-link" href="#">2</a></li> 74 <li class="page-item"><a class="page-link" href="#">3</a></li> 75 <li class="page-item"> 76 <a class="page-link" href="#" aria-label="Next"> 77 <span aria-hidden="true">»</span> 78 <span class="sr-only">Next</span> 79 </a> 80 </li> 81 </ul> 82 </nav> 83 </div> 84 84 </div> -
Farmatiko/ClientApp/src/app/korona/korona.component.html
r1f041f6 r46c298d 1 1 <div class="container"> 2 <div class="row"> 3 <br/> 4 <div class="col text-center"> 5 <h2>Коронавирус</h2> 6 <p>статистика</p> 7 </div> 8 9 10 11 </div> 12 <div class="row text-center"> 13 <div class="col"> 14 <div class="counter"> 15 <i class="fa fa-code fa-2x">0</i> 16 <h2 class="timer count-title count-number" data-to="100" data-speed="1500"></h2> 17 <p class="count-text ">Placeholder1</p> 2 <div class="row"> 3 <br /> 4 <div class="col text-center"> 5 <h2>Коронавирус</h2> 6 <p>статистика</p> 18 7 </div> 19 </div> 20 <div class="col"> 21 <div class="counter"> 22 <i class="fa fa-coffee fa-2x">0</i> 23 <h2 class="timer count-title count-number" data-to="1700" data-speed="1500"></h2> 24 <p class="count-text ">Placeholder2</p> 8 9 10 11 </div> 12 <div class="row text-center"> 13 <div class="col"> 14 <div class="counter"> 15 <i class="fa fa-code fa-2x">0</i> 16 <h2 class="timer count-title count-number" data-to="100" data-speed="1500"></h2> 17 <p class="count-text ">Placeholder1</p> 18 </div> 25 19 </div> 26 </div> 27 <div class="col"> 28 <div class="counter"> 29 <i class="fa fa-lightbulb-o fa-2x">0</i> 30 <h2 class="timer count-title count-number" data-to="11900" data-speed="1500"></h2> 31 <p class="count-text ">Placeholder3</p> 32 </div></div> 33 <div class="col"> 34 <div class="counter"> 35 <i class="fa fa-bug fa-2x">0</i> 36 <h2 class="timer count-title count-number" data-to="157" data-speed="1500"></h2> 37 <p class="count-text ">Placeholder4</p> 20 <div class="col"> 21 <div class="counter"> 22 <i class="fa fa-coffee fa-2x">0</i> 23 <h2 class="timer count-title count-number" data-to="1700" data-speed="1500"></h2> 24 <p class="count-text ">Placeholder2</p> 25 </div> 38 26 </div> 39 </div> 40 </div> 27 <div class="col"> 28 <div class="counter"> 29 <i class="fa fa-lightbulb-o fa-2x">0</i> 30 <h2 class="timer count-title count-number" data-to="11900" data-speed="1500"></h2> 31 <p class="count-text ">Placeholder3</p> 32 </div> 33 </div> 34 <div class="col"> 35 <div class="counter"> 36 <i class="fa fa-bug fa-2x">0</i> 37 <h2 class="timer count-title count-number" data-to="157" data-speed="1500"></h2> 38 <p class="count-text ">Placeholder4</p> 39 </div> 40 </div> 41 </div> 41 42 </div> -
Farmatiko/ClientApp/src/app/models/HealthFacilities.ts
r1f041f6 r46c298d 1 1 export class HealthFacilities { 2 3 4 5 6 7 2 Name: string; 3 Municipality: string; 4 Address: string; 5 Type: string; 6 Email: string; 7 Phone: string; 8 8 } -
Farmatiko/ClientApp/src/app/models/HealthcareWorkers.ts
r1f041f6 r46c298d 2 2 3 3 export class HealthcareWorkers { 4 5 6 7 4 Name: string; 5 Branch: Date; 6 Facility: HealthFacilities; 7 Title: string; 8 8 } -
Farmatiko/ClientApp/src/app/models/MedicineList.ts
r1f041f6 r46c298d 2 2 3 3 export class MedicineList { 4 5 4 Medicines: Medicine[]; 5 HasMedicine: boolean[]; 6 6 } -
Farmatiko/ClientApp/src/app/models/Pandemic.ts
r1f041f6 r46c298d 1 1 export class Pandemic { 2 3 4 5 6 7 8 9 2 Name: string; 3 TotalMK: BigInt; 4 ActiveMK: BigInt; 5 DeathsMK: BigInt; 6 NewMK: BigInt; 7 TotalGlobal: BigInt; 8 DeathsGlobal: BigInt; 9 ActiveGlobal: BigInt; 10 10 } -
Farmatiko/ClientApp/src/app/models/Pharmacy.ts
r1f041f6 r46c298d 1 1 export class Pharmacy { 2 3 4 5 2 Name: string; 3 Location: string; 4 Address: string; 5 WorkAllTime: boolean; 6 6 } -
Farmatiko/ClientApp/src/app/models/PharmacyHead.ts
r1f041f6 r46c298d 3 3 4 4 export class PharmacyHead { 5 6 7 8 9 5 PharmacyMedicines: MedicineList; 6 Pharmacy: Pharmacy[]; 7 Email: string; 8 Passwd: string; 9 Name: string; 10 10 } -
Farmatiko/ClientApp/src/app/nav-menu/nav-menu.component.css
r1f041f6 r46c298d 5 5 } 6 6 7 a.navbar-brand img {8 width: 200px;9 }7 a.navbar-brand img { 8 width: 200px; 9 } 10 10 11 11 html { 12 12 font-size: 14px; 13 13 } 14 14 15 @media (min-width: 768px) { 15 16 html { -
Farmatiko/ClientApp/src/app/nav-menu/nav-menu.component.html
r1f041f6 r46c298d 1 1 <header> 2 <nav 3 class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3" 4 > 2 <nav class="navbar navbar-expand-sm navbar-toggleable-sm navbar-light bg-white border-bottom box-shadow mb-3"> 5 3 <div class="container"> 6 4 <a class="navbar-brand" [routerLink]="['/']"><img src="../../assets/logo.png"></a> 7 <button 8 class="navbar-toggler" 9 type="button" 10 data-toggle="collapse" 11 data-target=".navbar-collapse" 12 aria-label="Toggle navigation" 13 [attr.aria-expanded]="isExpanded" 14 (click)="toggle()" 15 > 5 <button class="navbar-toggler" 6 type="button" 7 data-toggle="collapse" 8 data-target=".navbar-collapse" 9 aria-label="Toggle navigation" 10 [attr.aria-expanded]="isExpanded" 11 (click)="toggle()"> 16 12 <span class="navbar-toggler-icon"></span> 17 13 </button> 18 <div 19 class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse" 20 [ngClass]="{ show: isExpanded }" 21 > 14 <div class="navbar-collapse collapse d-sm-inline-flex flex-sm-row-reverse" 15 [ngClass]="{ show: isExpanded }"> 22 16 <ul class="navbar-nav flex-grow"> 23 <li 24 class="nav-item" 25 [routerLinkActive]="['link-active']" 26 [routerLinkActiveOptions]="{ exact: true }" 27 > 17 <li class="nav-item" 18 [routerLinkActive]="['link-active']" 19 [routerLinkActiveOptions]="{ exact: true }"> 28 20 <a class="nav-link text-dark" [routerLink]="['/']">Побарај лек</a> 29 21 </li> 30 22 <li class="nav-item" [routerLinkActive]="['link-active']"> 31 <a class="nav-link text-dark" [routerLink]="['/mapa']" 32 >Мапа на здравствени работници и здравствени установи</a 33 > 34 </li> 23 <a class="nav-link text-dark" [routerLink]="['/mapa']">Мапа на здравствени работници и здравствени установи</a> 24 </li> 35 25 <li class="nav-item" [routerLinkActive]="['link-active']"> 36 <a class="nav-link text-dark" [routerLink]="['/koronavirus']" 37 >Коронавирус</a 38 > 26 <a class="nav-link text-dark" [routerLink]="['/koronavirus']">Коронавирус</a> 39 27 </li> 40 28 </ul> -
Farmatiko/ClientApp/src/app/shared/material.module.ts
r1f041f6 r46c298d 24 24 import { MatRadioModule } from '@angular/material/radio'; 25 25 import { MatRippleModule } from '@angular/material/core'; 26 import { MatSelectModule} from '@angular/material/select';27 import { MatSidenavModule} from '@angular/material/sidenav';28 import { MatSliderModule} from '@angular/material/slider';29 import { MatSlideToggleModule} from '@angular/material/slide-toggle';30 import { MatSnackBarModule} from '@angular/material/snack-bar';31 import { MatTableModule} from '@angular/material/table';32 import { MatSortModule} from '@angular/material/sort';33 import { MatTabsModule} from '@angular/material/tabs';34 import { MatToolbarModule} from '@angular/material/toolbar';35 import { MatTooltipModule} from '@angular/material/tooltip';36 import { MatFormFieldModule} from '@angular/material/form-field';26 import { MatSelectModule } from '@angular/material/select'; 27 import { MatSidenavModule } from '@angular/material/sidenav'; 28 import { MatSliderModule } from '@angular/material/slider'; 29 import { MatSlideToggleModule } from '@angular/material/slide-toggle'; 30 import { MatSnackBarModule } from '@angular/material/snack-bar'; 31 import { MatTableModule } from '@angular/material/table'; 32 import { MatSortModule } from '@angular/material/sort'; 33 import { MatTabsModule } from '@angular/material/tabs'; 34 import { MatToolbarModule } from '@angular/material/toolbar'; 35 import { MatTooltipModule } from '@angular/material/tooltip'; 36 import { MatFormFieldModule } from '@angular/material/form-field'; 37 37 38 38 import { CdkTableModule } from '@angular/cdk/table'; -
Farmatiko/Farmatiko.csproj
r1f041f6 r46c298d 38 38 </ItemGroup> 39 39 40 <ItemGroup> 41 <Folder Include="Services\" /> 42 </ItemGroup> 43 40 44 <Target Name="DebugEnsureNodeEnv" BeforeTargets="Build" Condition=" '$(Configuration)' == 'Debug' And !Exists('$(SpaRoot)node_modules') "> 41 45 <!-- Ensure Node.js is installed -->
Note:
See TracChangeset
for help on using the changeset viewer.