Compare commits

...

10 Commits

Author SHA1 Message Date
Desy Ayurianti
a4ab48ab20 fix(readme): update read me documentation 2024-12-30 12:01:27 +07:00
Desy Ayurianti
98ca03b55e fix(register): fix handling error 2024-12-12 11:29:03 +07:00
Desy Ayurianti
944a9fa5cb fix(graph): fix graph for first load 2024-12-02 15:03:21 +07:00
Desy Ayurianti
4377bb493d fix(actualgraph): fix satuan plugin 2024-11-29 15:13:08 +07:00
Desy Ayurianti
7c44188d6e fix(graph): fix pulign ticks satuan 2024-11-29 15:01:29 +07:00
Desy Ayurianti
a5fbb018c4 fix(actualgraph): adding satuan in sumbu Y 2024-11-29 14:14:44 +07:00
Desy Ayurianti
d6e7c7696c fix(graph): adding satuan in sumbu Y 2024-11-29 14:09:05 +07:00
Desy Ayurianti
ae43ca880c fix(graph): adding new button for dht graph 2024-11-29 12:08:46 +07:00
Desy Ayurianti
cfbc25fd66 fix(auth+sidebar+register):change img 2024-11-28 19:39:59 +07:00
Desy Ayurianti
da65fdf819 fix(auth+register):adding copywrite and changing pict 2024-11-28 15:27:27 +07:00
14 changed files with 292 additions and 67 deletions

View File

@ -20,7 +20,8 @@ The data that will display on the graph is 24 hour trend data and there will be
## Technology Stack
- Angular 18 (Front-end Web Framework)
- Node JS version 18.20.4
- Angular 18.2.4 (Front-end Web Framework)
- REST API (Backend communication)
- GitLab for version control
@ -45,21 +46,25 @@ git clone https://gitlab.com/profile-image/kedaireka/smartfarming/frontend-smart
```
cd agrilink_vocpro
```
3. Run the project:
3. Install Dependencies:
```
npm install
```
4. Run the project:
```
ng serve
```
## Project Structure (Angular)
- `src/app/`: Contains the Angular application source code.
- `cores/`: Contains all constants, interfaces, and services needed for the project.
- `guards/`: Contains guards for
- `interceptors`: Contains handling error
- `interfaces/`: Contains TypeScript interfaces for data models and types used throughout the application.
- `services/`: Contains service files for managing API requests.
- `pages/`: Contains Angular components and views representing different pages of the application.
- `angular.json`: Angular project configuration file.
- `package.json`: Contains project dependencies and scripts for building and running the project.

View File

@ -27,6 +27,9 @@ export const httpErrorInterceptor: HttpInterceptorFn = (req, next) => {
case 404:
errorMessage = 'Resource not found: The requested resource does not exist.';
break;
case 422:
errorMessage = 'Enter a different username or email';
break;
case 500:
errorMessage = 'Server error: Please try again later.';
break;

View File

@ -1,13 +1,12 @@
<div class="container-fluid ps-md-0">
<div class="row g-0">
<div class="d-none d-md-flex col-md-4 col-lg-6 bg-image"></div>
<div class="col-md-8 col-lg-6">
<div class="d-none d-md-flex col-md-3 col-lg-6 bg-image"></div>
<div class="col-md-9 col-lg-6">
<div class="login d-flex align-items-center py-5">
<div class="container">
<div class="row">
<div class="col-md-9 col-lg-8 mx-auto">
<h3 class="login-heading mb-4">Welcome back!</h3>
<form (ngSubmit)="onSubmit()">
<div class="form-floating mb-3">
<input type="email"
@ -55,13 +54,17 @@
</span>
</button>
<div class="text-center">
<a class="small forgot" routerLink= '/register'>Register here</a>
<a class="small forgot" routerLink='/register'>Register here</a>
</div>
</div>
</form>
</div>
</div>
</div>
<div class="text-center-copyright">
<div>&copy;2024 Agrilink</div>
<div>Powered by <strong>Politeknik Negeri Malang</strong></div>
</div>
</div>
</div>
</div>

View File

@ -1,12 +1,17 @@
.login {
min-height: 100vh;
min-height: 100vh;
font-family: "Onest", sans-serif;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bg-image {
background-image: url('../../../assets/images/auth.png');
background-image: url('../../../assets/images/bg-auth.jpg');
background-size: cover;
background-position: left;
background-position: right;
height: 100vh;
border-radius: 0px 10px 10px 0px;
}
.login-heading {
@ -56,3 +61,17 @@
color: white;
}
.text-center {
margin-bottom: 20px;
}
.text-center-copyright {
text-align: center;
font-size: 0.85rem;
color: #636363;
padding: 15px 0;
}
.container{
padding-top: 50px;
}

View File

@ -20,7 +20,7 @@
<div class="dropdown pb-4">
<a href="#" class="d-flex align-items-center text-white text-decoration-none dropdown-toggle" id="dropdownUser1" data-bs-toggle="dropdown" aria-expanded="false">
<img [src]="avatar || 'https://github.com/mdo.png'" alt="User Avatar" width="30" height="30" class="rounded-circle"> <!-- Use avatar or a default image -->
<img [src]="avatar || 'https://cdn.pixabay.com/photo/2015/10/05/22/37/blank-profile-picture-973460_1280.png'" alt="User Avatar" width="30" height="30" class="rounded-circle"> <!-- Use avatar or a default image -->
<span class="d-none d-sm-inline mx-1">{{ fullName }}</span>
</a>
<ul class="dropdown-menu dropdown-menu-dark text-small shadow" aria-labelledby="dropdownUser1">

View File

@ -92,6 +92,12 @@ export class ActualgraphComponent implements OnInit {
y: {
stacked: true,
beginAtZero: false,
ticks: {
callback: (value: string | number, index: number, values: any) => {
return `${value} mg/L`;
}
}
}
}
}

View File

@ -17,7 +17,24 @@
</mat-form-field>
</div>
<div class="sensor-wrapper">
<div class="title">Sensor DHT</div>
<div class="title">Sensor DHT</div>
<div class="button-param">
<button
[ngClass]="{'active': activeButton === 'vicitemperature'}"
(click)="filterData('vicitemperature')">
Temperatur Udara
</button>
<button
[ngClass]="{'active': activeButton === 'vicihumidity'}"
(click)="filterData('vicihumidity')">
Kelembaban Udara
</button>
<button
[ngClass]="{'active': activeButton === 'viciluminosity'}"
(click)="filterData('viciluminosity')">
Intensitas Cahaya
</button>
</div>
<ng-container *ngIf="isLoadingDHT; else dhtData">
<div class="d-flex align-items-center" style="padding: 50px 0px 50px 0px">
<i class="fa fa-spinner fa-spin"></i>
@ -31,7 +48,7 @@
<div class="sensor-wrapper">
<div class="title-with-dropdown">
<div class="title">Sensor NPK 1</div>
<div class="title">Sensor NPK1</div>
<select class="form-select" style="margin-top: 10px" [(ngModel)]="selectedNPK1" (change)="onResize()">
<option value="npk">NPK</option>
<option value="temperature">Temperatur Tanah</option>
@ -53,7 +70,7 @@
<div class="sensor-wrapper">
<div class="title-with-dropdown">
<div class="title">Sensor NPK 2</div>
<div class="title">Sensor NPK2</div>
<select class="form-select" style="margin-top: 10px" [(ngModel)]="selectedNPK2" (change)=" onResize()">
<option value="npk">NPK</option>
<option value="temperature">Temperatur Tanah</option>

View File

@ -70,7 +70,7 @@
.title {
text-align: center;
font-size: 20px;
margin: 18px 0px 0px 0px;
margin: 18px 0px 18px 0px;
}
@media (max-width: 768px) {
@ -90,6 +90,18 @@
font-size: 10px;
align-items: center;
}
.button-param {
flex-direction: column;
align-items: center;
}
button {
width: 80%;
max-width: 300px;
text-align: center;
}
}
@media (max-width: 344px) {
@ -109,6 +121,17 @@
font-size: 10px;
align-items: center;
}
.button-param {
flex-direction: column;
align-items: center;
}
button {
width: 80%;
max-width: 300px;
text-align: center;
}
}
.loading {
@ -128,4 +151,28 @@
font-size: 18px;
}
.button-param {
display: flex;
justify-content: center;
flex-direction: row;
flex-wrap: wrap;
gap: 10px;
margin: 10px 0 10px 0px;
}
button {
font-family: 'Onest', sans-serif;
margin: 0;
padding: 5px 10px;
background-color: #E5E5E5;
color: #16423C;
border: none;
border-radius: 10px;
transition: all 0.3s ease;
}
button.active {
background-color: #16423C;
color: white;
}

View File

@ -1,5 +1,5 @@
import { Component, OnInit, ElementRef, ViewChild, AfterViewInit, OnDestroy, OnChanges, Input, SimpleChanges, ChangeDetectorRef } from '@angular/core';
import { Chart, registerables } from 'chart.js';
import { Chart, registerables, Tooltip } from 'chart.js';
import { SensorService } from '../../../../cores/services/sensor.service';
import { ApiResponse, ParameterSensor } from '../../../../cores/interface/sensor-data';
import { CommonModule, formatDate } from '@angular/common';
@ -16,10 +16,10 @@ const parameterColors: { [key: string]: string } = {
vicitemperature: '#8F5A62',
vicihumidity: '#16423C',
viciluminosity: '#DF9B55',
soiltemperature: '#FF6347',
soilhumidity: '#0389b5',
soilconductivity: '#A52A2A',
soilph: '#228B22',
soiltemperature: '#8c2d1c',
soilhumidity: '#3d7b8f',
soilconductivity: '#f2b8b8',
soilph: '#459645',
soilnitrogen: '#fece48',
soilphosphorus: '#B80F0A',
soilpotassium: '#4c1f74',
@ -52,6 +52,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
isNoDataNPK2: boolean = false;
allNoData: boolean = false;
activeButton: string = 'vicitemperature';
sensorParameters: { [key: string]: string[] } = {
dht: ['vicitemperature', 'vicihumidity', 'viciluminosity'],
@ -99,6 +100,9 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
}
ngAfterViewInit(): void {
setTimeout(() => {
this.updateCharts();
}, 0);
this.onResize();
}
@ -162,7 +166,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
const dEnd = endDate ? this.formatDate(endDate) : this.getDate();
if (timeRange === 'HOURLY') {
this.sensorService.getSensorDataHourly('dht', 'npk', hStart, hEnd, timeRange).subscribe({
this.sensorService.getSensorDataHourly('dht', '', hStart, hEnd, timeRange).subscribe({
next: (response) => {
this.isLoadingDHT = false;
if (response.statusCode === 200 && response.data.dht?.length > 0) {
@ -280,7 +284,6 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
updateCharts(): void {
const interval = this.selectedInterval;
Object.keys(this.charts).forEach(key => {
if (this.charts[key]) {
this.charts[key]?.destroy();
@ -298,8 +301,25 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
this.fetchNPK1Data(interval);
this.fetchNPK2Data(interval);
}
if (this.charts['dht']) {
this.filterData(this.activeButton);
console.log(this.activeButton);
}
}
filterData(parameter: string): void {
this.activeButton = parameter;
const chart = this.charts['dht'];
if (chart) {
chart.data.datasets.forEach((dataset: any) => {
dataset.hidden = dataset.label !== this.parameterDisplayNames[parameter];
});
chart.update();
}
}
createChart(canvas: HTMLCanvasElement, response: ApiResponse, sensor: string, selectedOption: string): void {
const ctx = canvas.getContext('2d');
@ -327,6 +347,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
const pointRadius = data.length === 1 ? 5 : 0;
const pointHoverRadius = data.length === 1 ? 7 : 0;
const isHidden = parameter !== this.activeButton;
return {
label: displayName,
@ -338,6 +359,7 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
tension: 0.5,
pointRadius,
pointHoverRadius,
hidden : isHidden
};
}).filter(dataset => dataset !== null);
} else {
@ -345,8 +367,6 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
.filter(parameter => {
if (selectedOption === 'npk') {
return ['soilphosphorus', 'soilnitrogen', 'soilpotassium'].includes(parameter);
} else if (selectedOption === 'others') {
return !['soilphosphorus', 'soilnitrogen', 'soilpotassium'].includes(parameter);
} else if (selectedOption === 'temperature') {
return ['soiltemperature'].includes(parameter);
} else if (selectedOption === 'humidity') {
@ -372,7 +392,6 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
const pointRadius = data.length === 1 ? 5 : 0;
const pointHoverRadius = data.length === 1 ? 7 : 0;
return {
label: displayName,
data,
@ -397,48 +416,127 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
this.charts[sensor]?.destroy();
}
this.charts[sensor] = new Chart(ctx, {
type: 'line',
data: {
labels: this.getLabels(response, sensor),
datasets,
},
options: {
responsive: true,
maintainAspectRatio: false,
aspectRatio: 2,
plugins: {
tooltip: {
enabled: true,
mode: 'nearest',
intersect: false,
callbacks: {
label: (tooltipItem: any) => {
const paramLabel = tooltipItem.dataset.label;
const value = tooltipItem.formattedValue;
return `${paramLabel}: ${value}`;
}
}
if(sensor === 'dht'){
this.charts[sensor] = new Chart(ctx, {
type: 'line',
data: {
labels: this.getLabels(response, sensor),
datasets,
},
options: {
responsive: true,
maintainAspectRatio: false,
aspectRatio: 2,
plugins: {
tooltip: {
enabled: true,
mode: 'nearest',
intersect: false,
callbacks: {
label: (tooltipItem: any) => {
const paramLabel = tooltipItem.dataset.label;
const value = tooltipItem.formattedValue;
return `${paramLabel}: ${value}`;
}
}
},
legend: {
display: false,
},
legend: { display: true }
},
scales: {
x: {
},
scales: {
x: {
grid: { display: false },
beginAtZero: true,
ticks: {
callback: (value: string | number, index: number, values: any) => {
const labels = this.getLabels(response, sensor);
return labels[index] || value;
}
}
},
y: {
grid: { display: false },
beginAtZero: true,
ticks: {
callback: (value: string | number, index: number, values: any) => {
const labels = this.getLabels(response, sensor);
return labels[index] || value;
}
}
callback: (value: string | number, index: number, values: any) => {
if (this.activeButton === 'vicitemperature') {
return `${value} °C`;
} else if (this.activeButton === 'vicihumidity') {
return `${value} %`;
} else if (this.activeButton === 'viciluminosity') {
return `${value} lux`;
}
return value;
}
},
}
}
}
});
}else if(sensor === 'npk1' || sensor === 'npk2'){
this.charts[sensor] = new Chart(ctx, {
type: 'line',
data: {
labels: this.getLabels(response, sensor),
datasets,
},
options: {
responsive: true,
maintainAspectRatio: false,
aspectRatio: 2,
plugins: {
tooltip: {
enabled: true,
mode: 'nearest',
intersect: false,
callbacks: {
label: (tooltipItem: any) => {
const paramLabel = tooltipItem.dataset.label;
const value = tooltipItem.formattedValue;
return `${paramLabel}: ${value}`;
}
}
},
legend: {
display: true,
},
y: { grid: { display: false }, beginAtZero: true }
}
}
});
},
scales: {
x: {
grid: { display: false },
beginAtZero: true,
ticks: {
callback: (value: string | number, index: number, values: any) => {
const labels = this.getLabels(response, sensor);
return labels[index] || value;
}
}
},
y: {
grid: { display: false },
beginAtZero: true,
ticks:{
callback: (value: string | number, index: number, values: any) => {
if(selectedOption === 'npk'){
return `${value} mg/L`;
} else if(selectedOption === 'temperature'){
return `${value} °C`;
} else if(selectedOption === 'humidity'){
return `${value} %`;
} else if(selectedOption === 'conductivity'){
return `${value} μS/cm`;
} else if(selectedOption === 'ph'){
return `${value} pH`;
} return value;
}
},
},
}
}
});
}
}
getDataFromResponse(response: ApiResponse, sensor: string, parameter: string): { data: number[], labels: string[] } {
@ -488,5 +586,5 @@ export class GraphComponent implements OnInit, AfterViewInit, OnDestroy, OnChang
const days = ['Sun', 'Mon', 'Tues', 'Wed', 'Thrus', 'Fri', 'Sat'];
return days[date.getDay()];
}
}
};

View File

@ -54,6 +54,10 @@
</div>
</div>
</div>
<div class="text-center-copyright">
<div>&copy;2024 Agrilink</div>
<div>Powered by <strong>Politeknik Negeri Malang</strong></div>
</div>
</div>
</div>
</div>

View File

@ -1,12 +1,17 @@
.login {
min-height: 100vh;
font-family: "Onest", sans-serif;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.bg-image {
background-image: url('../../../assets/images/auth.png');
background-image: url('../../../assets/images/bg-auth.jpg');
background-size: cover;
background-position: left;
background-position: right;
height: 100vh;
border-radius: 0px 10px 10px 0px;
}
.login-heading {
@ -46,3 +51,10 @@
}
}
}
.text-center-copyright {
text-align: center;
font-size: 0.85rem;
color: #636363;
padding: 15px 0;
}

View File

@ -40,6 +40,17 @@ export class RegisterComponent implements OnInit {
this.loading = false;
this.toast.error('Please fill in all fields.');
return;
} else if(this.password.length<8){
this.loading= false;
this.toast.error('Password must be at least 8 characters')
} else if(!this.email.includes('@')){
this.loading=false;
this.toast.error('Invalid Email');
} else {
(error: any) => {
this.loading = false;
this.toast.error(error.error.message);
}
}
const registrationData: RegistrationData = {

Binary file not shown.

After

Width:  |  Height:  |  Size: 724 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 36 KiB