1
0
forked from PGL/Clyde

moving file into extensions directory

This commit is contained in:
Bartha Maxime 2024-04-04 21:27:51 +02:00
parent dbe28a7fed
commit 3d78851b29
2 changed files with 24 additions and 13 deletions

View File

@ -1,9 +1,23 @@
<!----------------------------------------------------
File: ResearcherProfile.vue
Author: Maxime Bartha
Scope: Extension Publicatons scientifiquess
Description: Researcher Profile Page containing his articles and his statistics
----------------------------------------------------->
<script setup> <script setup>
import { ref } from "vue"; import { ref } from "vue";
const input = ref(""); const input = ref("");
const statsOf = ref(""); const statsOf = ref("");
const statsBy = ref(""); const statsBy = ref("");
const jsonMockViewsByYears= [
{label: "2004", y:4},
{label: "2005", y:99},
{label: "2007", y:555},
{label: "2009", y:22},
{label: "2011", y:1666},
]
function inputKeyUp() { function inputKeyUp() {
let filter, ul, li, a, txtValue; let filter, ul, li, a, txtValue;
@ -33,7 +47,7 @@ const mydata = {
animationEnabled: true, animationEnabled: true,
title: { title: {
fontColor: "white", fontColor: "white",
text: statsOf.value + " By "+ statsBy.value, text : "please select options",
}, },
data: [ data: [
{ {
@ -43,14 +57,6 @@ const mydata = {
indexLabelFontColor: "white", indexLabelFontColor: "white",
toolTipContent: toolTipContent:
"<span style='\"'color: {color};'\"'>{label}</span> {y}(#percent%)", "<span style='\"'color: {color};'\"'>{label}</span> {y}(#percent%)",
dataPoints: [
{ label: "Organic Traffic", y: 130631 },
{ label: "Direct", y: 28874 },
{ label: "Referral", y: 15467 },
{ label: "Social", y: 10543 },
{ label: "Email", y: 5613 },
{ label: "Others", y: 8492 },
],
}, },
], ],
}, },
@ -60,16 +66,21 @@ const mydata = {
}, },
methods : { methods : {
chartInstance(chart){ chartInstance(chart){
mydata.chart = chart mydata.chart = chart;
}, },
update(){ update(){
mydata.options.title = { mydata.options.title = {
fontColor: "white", fontColor: "white",
text: statsOf.value + " By "+ statsBy.value, text: statsOf.value + " By "+ statsBy.value,
} }
if (statsOf.value === "views" && statsBy.value === "years") {
console.log("yeasear")
mydata.options.data[0].dataPoints = jsonMockViewsByYears;
}
console.log(mydata.options.data)
mydata.options.title.text = statsOf.value + " By "+ statsBy.value;
mydata.chart.render() mydata.chart.render()
console.log(mydata.options.title)
setTimeout(this.update, 1000);
} }
} }
}; };

View File

@ -9,7 +9,7 @@ import Profil from "@/Apps/Profil.vue"
import Courses from "@/Apps/ManageCourses.vue" import Courses from "@/Apps/ManageCourses.vue"
import Users from "@/Apps/UsersList.vue" import Users from "@/Apps/UsersList.vue"
import Students from "@/Apps/StudentsList.vue" import Students from "@/Apps/StudentsList.vue"
import ResearcherProfile from "@/Apps/ResearcherProfile.vue"; import ResearcherProfile from "@/Apps/ScientificPublications/ResearcherProfile.vue";
const apps = { const apps = {
'/login': LoginPage, '/login': LoginPage,