This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add decaying average logic to the frontend (#86)
* Add multi threading * Restyle KPI Table and cleanup code * Rename to correspond to definitions * Reformat code * Add loading icon * Decrease personal development graph width * Add decaying average to front-end * Rename styling entries to conform with coding conventions and reformat code * Use colors from domain * Small cleanup changes * Eslint enforcements updates * CI testing * CI testing * Bugfixes * Hardcoded preliminary version of the dashboard with functional term buttons. Ready for demo skrr skrr * Fix competence profile being empty and cleanup code * Make personal development height the same as competence graph * Use different order for terms * Remove centering * Show toolbar * changes of commands to pnpm * Set version and package manager * Add a readme * First POC for moving DecayingAverage logic to frontend * Moved the DecayingAverage.ts to the frontend * Removal backed code of decayingAverage * Fronted changes * Merge * Trying * POC decaying average * Cleanup * Add abstraction for competence outcome results * Removal of backend Decaying average calculations * Calculating decaying average in the frontend * Frontend implementation of decaying average * Import change * code cleanup * code cleanup * Graph changes on term selection * Implementation PersonalDevelopmentGraph.vue * Warning fixes * Mastery level indication in PersonalDevelopmentGraph.vue * Fixed the mess * Change AssessedAt to SubmittedAt * Added comments * Cleanup code * MOved functions inside mount function * Changed function names * Changes and removed unused file * Project setting changes --------- Co-authored-by: Jelle Maas <typiqally@gmail.com> Co-authored-by: jan.fojtik <jan.fojtik@indicia.nl>
- Loading branch information
1 parent
f8b6bc3
commit fd84e49
Showing
12 changed files
with
323 additions
and
90 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,5 +23,4 @@ | |
<ItemGroup> | ||
<PackageReference Include="DocumentFormat.OpenXml" Version="2.18.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Epsilon.Abstractions.Model; | ||
|
||
public record CompetenceOutcomeResult( | ||
int OutcomeId, | ||
double Grade, | ||
DateTime SubmittedAt | ||
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Epsilon.Abstractions.Model; | ||
|
||
public record DecayingAverage( | ||
double Score, | ||
int ArchitectureLayer, | ||
int Activity | ||
); |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
namespace Epsilon.Abstractions.Model; | ||
|
||
public record ProfessionalSkillResult( | ||
int OutcomeId, | ||
int Skill, | ||
int MasteryLevel, | ||
double Grade, | ||
DateTime AssessedAt | ||
); | ||
) : CompetenceOutcomeResult(OutcomeId, Grade, AssessedAt); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,10 @@ | ||
namespace Epsilon.Abstractions.Model; | ||
|
||
public record ProfessionalTaskResult( | ||
int OutcomeId, | ||
int ArchitectureLayer, | ||
int Activity, | ||
int MasteryLevel, | ||
double Grade, | ||
DateTime AssessedAt | ||
); | ||
) : CompetenceOutcomeResult(OutcomeId, Grade, AssessedAt); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.