245 lines
14 KiB
HTML
Executable File
245 lines
14 KiB
HTML
Executable File
<div class="layout-main">
|
|
<div class="grid">
|
|
<div class="col-12 lg:col-6 xl:col-3">
|
|
<div class="card mb-0">
|
|
<div class="flex justify-content-between mb-3">
|
|
<div>
|
|
<span class="block text-500 font-medium mb-3">Orders</span>
|
|
<div class="text-900 font-medium text-xl">152</div>
|
|
</div>
|
|
<div class="flex align-items-center justify-content-center bg-blue-100 border-round" [ngStyle]="{width: '2.5rem', height: '2.5rem'}">
|
|
<i class="pi pi-shopping-cart text-blue-500 text-xl"></i>
|
|
</div>
|
|
</div>
|
|
<span class="text-green-500 font-medium">24 new </span>
|
|
<span class="text-500">since last visit</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 lg:col-6 xl:col-3">
|
|
<div class="card mb-0">
|
|
<div class="flex justify-content-between mb-3">
|
|
<div>
|
|
<span class="block text-500 font-medium mb-3">Revenue</span>
|
|
<div class="text-900 font-medium text-xl">$2.100</div>
|
|
</div>
|
|
<div class="flex align-items-center justify-content-center bg-orange-100 border-round" [ngStyle]="{width: '2.5rem', height: '2.5rem'}">
|
|
<i class="pi pi-map-marker text-orange-500 text-xl"></i>
|
|
</div>
|
|
</div>
|
|
<span class="text-green-500 font-medium">%52+ </span>
|
|
<span class="text-500">since last week</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 lg:col-6 xl:col-3">
|
|
<div class="card mb-0">
|
|
<div class="flex justify-content-between mb-3">
|
|
<div>
|
|
<span class="block text-500 font-medium mb-3">Customers</span>
|
|
<div class="text-900 font-medium text-xl">28441</div>
|
|
</div>
|
|
<div class="flex align-items-center justify-content-center bg-cyan-100 border-round" [ngStyle]="{width: '2.5rem', height: '2.5rem'}">
|
|
<i class="pi pi-inbox text-cyan-500 text-xl"></i>
|
|
</div>
|
|
</div>
|
|
<span class="text-green-500 font-medium">520 </span>
|
|
<span class="text-500">newly registered</span>
|
|
</div>
|
|
</div>
|
|
<div class="col-12 lg:col-6 xl:col-3">
|
|
<div class="card mb-0">
|
|
<div class="flex justify-content-between mb-3">
|
|
<div>
|
|
<span class="block text-500 font-medium mb-3">Comments</span>
|
|
<div class="text-900 font-medium text-xl">152 Unread</div>
|
|
</div>
|
|
<div class="flex align-items-center justify-content-center bg-purple-100 border-round" [ngStyle]="{width: '2.5rem', height: '2.5rem'}">
|
|
<i class="pi pi-comment text-purple-500 text-xl"></i>
|
|
</div>
|
|
</div>
|
|
<span class="text-green-500 font-medium">85 </span>
|
|
<span class="text-500">responded</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12 xl:col-6">
|
|
<div class="card">
|
|
<h5>Recent Sales</h5>
|
|
<p-table [value]="products" [paginator]="true" [rows]="5" responsiveLayout="scroll">
|
|
<ng-template pTemplate="header">
|
|
<tr>
|
|
<th>Image</th>
|
|
<th pSortableColumn="name">Name <p-sortIcon field="name"></p-sortIcon></th>
|
|
<th pSortableColumn="price">Price <p-sortIcon field="price"></p-sortIcon></th>
|
|
<th>View</th>
|
|
</tr>
|
|
</ng-template>
|
|
<ng-template pTemplate="body" let-product>
|
|
<tr>
|
|
<td>
|
|
<img src="../../../assets/demo/images/product/{{product.image}}" class="shadow-4" alt="{{product.name}}" width="50">
|
|
</td>
|
|
<td>{{product.name}}</td>
|
|
<td>{{product.price | currency:'USD'}}</td>
|
|
<td>
|
|
<button pButton pRipple type="button" icon="pi pi-search" class="p-button p-component p-button-text p-button-icon-only"></button>
|
|
</td>
|
|
</tr>
|
|
</ng-template>
|
|
</p-table>
|
|
</div>
|
|
<div class="card">
|
|
<div class="flex justify-content-between align-items-center mb-5">
|
|
<h5>Best Selling Products</h5>
|
|
<div>
|
|
<button pButton type="button" icon="pi pi-ellipsis-v" class="p-button-rounded p-button-text p-button-plain" (click)="menu.toggle($event)"></button>
|
|
<p-menu #menu [popup]="true" [model]="items"></p-menu>
|
|
</div>
|
|
</div>
|
|
<ul class="list-none p-0 m-0">
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Space T-Shirt</span>
|
|
<div class="mt-1 text-600">Clothing</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-orange-500 h-full" [ngStyle]="{width: '50%'}"></div>
|
|
</div>
|
|
<span class="text-orange-500 ml-3 font-medium">%50</span>
|
|
</div>
|
|
</li>
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Portal Sticker</span>
|
|
<div class="mt-1 text-600">Accessories</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 ml-0 md:ml-8 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-cyan-500 h-full" [ngStyle]="{width: '16%'}"></div>
|
|
</div>
|
|
<span class="text-cyan-500 ml-3 font-medium">%16</span>
|
|
</div>
|
|
</li>
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Supernova Sticker</span>
|
|
<div class="mt-1 text-600">Accessories</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 ml-0 md:ml-8 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-pink-500 h-full" [ngStyle]="{width: '67%'}"></div>
|
|
</div>
|
|
<span class="text-pink-500 ml-3 font-medium">%67</span>
|
|
</div>
|
|
</li>
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Wonders Notebook</span>
|
|
<div class="mt-1 text-600">Office</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 ml-0 md:ml-8 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-green-500 h-full" [ngStyle]="{width: '35%'}"></div>
|
|
</div>
|
|
<span class="text-green-500 ml-3 font-medium">%35</span>
|
|
</div>
|
|
</li>
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Mat Black Case</span>
|
|
<div class="mt-1 text-600">Accessories</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 ml-0 md:ml-8 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-purple-500 h-full" [ngStyle]="{width: '75%'}"></div>
|
|
</div>
|
|
<span class="text-purple-500 ml-3 font-medium">%75</span>
|
|
</div>
|
|
</li>
|
|
<li class="flex flex-column md:flex-row md:align-items-center md:justify-content-between mb-4">
|
|
<div>
|
|
<span class="text-900 font-medium mr-2 mb-1 md:mb-0">Robots T-Shirt</span>
|
|
<div class="mt-1 text-600">Clothing</div>
|
|
</div>
|
|
<div class="mt-2 md:mt-0 ml-0 md:ml-8 flex align-items-center">
|
|
<div class="surface-300 border-round overflow-hidden w-10rem lg:w-6rem" [ngStyle]="{height: '8px'}">
|
|
<div class="bg-teal-500 h-full" [ngStyle]="{width: '40%'}"></div>
|
|
</div>
|
|
<span class="text-teal-500 ml-3 font-medium">%40</span>
|
|
</div>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-12 xl:col-6">
|
|
<div class="card">
|
|
<h5>Sales Overview</h5>
|
|
<p-chart type="line" [data]="chartData"></p-chart>
|
|
</div>
|
|
|
|
<div class="card">
|
|
<div class="flex align-items-center justify-content-between mb-4">
|
|
<h5>Notifications</h5>
|
|
<div>
|
|
<button pButton type="button" icon="pi pi-ellipsis-v" class="p-button-rounded p-button-text p-button-plain" (click)="menu.toggle($event)"></button>
|
|
<p-menu #menu [popup]="true" [model]="items"></p-menu>
|
|
</div>
|
|
</div>
|
|
|
|
<span class="block text-600 font-medium mb-3">TODAY</span>
|
|
<ul class="p-0 mx-0 mt-0 mb-4 list-none">
|
|
<li class="flex align-items-center py-2 border-bottom-1 surface-border">
|
|
<div class="w-3rem h-3rem flex align-items-center justify-content-center bg-blue-100 border-circle mr-3 flex-shrink-0">
|
|
<i class="pi pi-dollar text-xl text-blue-500"></i>
|
|
</div>
|
|
<span class="text-900 line-height-3">Richard Jones
|
|
<span class="text-700"> has purchased a blue t-shirt for <span class="text-blue-500">79$</span></span>
|
|
</span>
|
|
</li>
|
|
<li class="flex align-items-center py-2">
|
|
<div class="w-3rem h-3rem flex align-items-center justify-content-center bg-orange-100 border-circle mr-3 flex-shrink-0">
|
|
<i class="pi pi-download text-xl text-orange-500"></i>
|
|
</div>
|
|
<span class="text-700 line-height-3">Your request for withdrawal of <span class="text-blue-500 font-medium">2500$</span> has been initiated.</span>
|
|
</li>
|
|
</ul>
|
|
|
|
<span class="block text-600 font-medium mb-3">YESTERDAY</span>
|
|
<ul class="p-0 m-0 list-none">
|
|
<li class="flex align-items-center py-2 border-bottom-1 surface-border">
|
|
<div class="w-3rem h-3rem flex align-items-center justify-content-center bg-blue-100 border-circle mr-3 flex-shrink-0">
|
|
<i class="pi pi-dollar text-xl text-blue-500"></i>
|
|
</div>
|
|
<span class="text-900 line-height-3">Keyser Wick
|
|
<span class="text-700"> has purchased a black jacket for <span class="text-blue-500">59$</span></span>
|
|
</span>
|
|
</li>
|
|
<li class="flex align-items-center py-2 border-bottom-1 surface-border">
|
|
<div class="w-3rem h-3rem flex align-items-center justify-content-center bg-pink-100 border-circle mr-3 flex-shrink-0">
|
|
<i class="pi pi-question text-xl text-pink-500"></i>
|
|
</div>
|
|
<span class="text-900 line-height-3">Jane Davis
|
|
<span class="text-700"> has posted a new questions about your product.</span>
|
|
</span>
|
|
</li>
|
|
</ul>
|
|
</div>
|
|
|
|
<div class="px-4 py-5 shadow-2 flex flex-column md:flex-row md:align-items-center justify-content-between mb-3"
|
|
[ngStyle]="{borderRadius: '1rem', background: 'linear-gradient(0deg, rgba(0, 123, 255, 0.5), rgba(0, 123, 255, 0.5)), linear-gradient(92.54deg, #1C80CF 47.88%, #FFFFFF 100.01%)'}">
|
|
<div>
|
|
<div class="text-blue-100 font-medium text-xl mt-2 mb-3">TAKE THE NEXT STEP</div>
|
|
<div class="text-white font-medium text-5xl">Try PrimeBlocks</div>
|
|
</div>
|
|
<div class="mt-4 mr-auto md:mt-0 md:mr-0">
|
|
<a target="_blank" href="https://www.primefaces.org/primeblocks-ng" class="p-button font-bold px-5 py-3 p-button-warning p-button-rounded p-button-raised">
|
|
Get Started
|
|
</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|