Initial Language Graph Implementation

This commit is contained in:
2023-12-28 22:34:36 -03:00
parent 12e8aadf7b
commit f4f11a8a05
9 changed files with 249 additions and 14 deletions

View File

@@ -1,18 +1,42 @@
import {Component, Input} from '@angular/core';
import {Component, Input, OnInit, ViewChild} from '@angular/core';
import { faCodeFork, faEye, faStar } from '@fortawesome/free-solid-svg-icons';
import {Project} from "../../shared/model/project/project.model";
import {Language, Project} from "../../shared/model/project/project.model";
import {faScaleBalanced} from "@fortawesome/free-solid-svg-icons/faScaleBalanced";
import {
ApexAnnotations,
ApexChart, ApexDataLabels,
ApexNonAxisChartSeries,
ApexPlotOptions,
ApexResponsive,
ChartComponent
} from "ng-apexcharts";
export type ChartOptions = {
series: ApexNonAxisChartSeries;
colors: string[];
chart: ApexChart;
responsive: ApexResponsive[];
labels: string[];
plotOptions: ApexPlotOptions;
dataLabels: ApexDataLabels;
};
@Component({
selector: 'app-project-card',
templateUrl: './project-card.component.html',
styleUrls: ['./project-card.component.css']
})
export class ProjectCardComponent {
export class ProjectCardComponent implements OnInit {
@Input() inverted: boolean = false;
@Input() project!: Project;
@ViewChild('language-chart')
languageChart: ChartComponent | undefined;
chartOptions: ChartOptions | undefined;
// Stats Icons Definitions
faLicense = faScaleBalanced;
@@ -22,6 +46,13 @@ export class ProjectCardComponent {
faEye = faEye;
ngOnInit() {
if (!!this.project.languages) {
this.chartOptions = this.generateChart(this.project.languages);
}
}
get hasLicense(): boolean {
return this.project.license !== undefined;
}
@@ -30,4 +61,37 @@ export class ProjectCardComponent {
return this.project.languages !== undefined &&
this.project.languages?.length > 0;
}
private generateChart(languages: Language[]): ChartOptions {
return {
series: languages.map(value => value.percentage),
colors: languages.map(value => value.color),
chart: {
width: 380,
type: "pie"
},
labels: languages.map(value => value.name),
responsive: [
{
breakpoint: 480,
options: {
chart: {
width: 300
},
legend: {
position: "bottom"
}
}
}
],
plotOptions: {
pie: {
expandOnClick: true,
}
},
dataLabels: {
enabled: false
}
};
}
}