Datasets:

Modalities:
Text
Formats:
json
Languages:
code
Size:
< 1K
Tags:
code
Libraries:
Datasets
pandas
License:
File size: 6,443 Bytes
eb67da4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
import './allprojectschart.html'
import { FlowRouter } from 'meteor/ostrio:flow-router-extra'
import { getUserSetting, getUserTimeUnitVerbose } from '../../utils/frontend_helpers'

Template.allprojectschart.onCreated(function allprojectschartCreated() {
  this.topTasks = new ReactiveVar()
  this.projectStats = new ReactiveVar()
  this.includeNotBillableTime = new ReactiveVar(false)
  this.autorun(() => {
    Meteor.call('getAllProjectStats', { includeNotBillableTime: this.includeNotBillableTime.get(), showArchived: this.data.showArchived.get() }, (error, result) => {
      if (error) {
        console.error(error)
      } else {
        this.projectStats.set(result)
      }
    })
    Meteor.call('getTopTasks', { projectId: 'all', includeNotBillableTime: this.includeNotBillableTime.get(), showArchived: this.data.showArchived.get() }, (error, result) => {
      if (error) {
        console.error(error)
      } else {
        this.topTasks.set(result)
      }
    })
  })
})
Template.allprojectschart.helpers({
  topTasks() {
    return Template.instance().topTasks.get()
  },
  totalHours() {
    return Template.instance().projectStats.get()
      ? Template.instance().projectStats.get().totalHours : false
  },
  showNotBillableTime: () => Template.instance().includeNotBillableTime.get(),
})
Template.allprojectschart.events({
  'change #showNotBillableTime': (event, templateInstance) => {
    event.preventDefault()
    templateInstance.includeNotBillableTime.set(templateInstance.$(event.currentTarget).is(':checked'))
  },
  'change #showArchived': (event, templateInstance) => {
    event.preventDefault()
    templateInstance.data.showArchived.set(templateInstance.$(event.currentTarget).is(':checked'))
  },
  'change #limit': (event, templateInstance) => {
    event.preventDefault()
    FlowRouter.setQueryParams({ limit: templateInstance.$(event.currentTarget).val() })
  },
})
Template.allprojectschart.onRendered(() => {
  const templateInstance = Template.instance()
  const precision = getUserSetting('precision')
  templateInstance.autorun(() => {
    templateInstance.$('#limit').val(FlowRouter.getQueryParam('limit') ? FlowRouter.getQueryParam('limit') : 25)
  })
  templateInstance.autorun(() => {
    if (templateInstance.subscriptionsReady()) {
      if (templateInstance.projectStats.get()) {
        import('frappe-charts').then((chartModule) => {
          const { Chart } = chartModule
          const stats = templateInstance.projectStats.get()
          if (stats) {
            if (getUserSetting('timeunit') === 'd') {
              stats.beforePreviousMonthHours
                  /= getUserSetting('hoursToDays')
              stats.beforePreviousMonthHours = Number(stats.beforePreviousMonthHours)
                .toFixed(precision)
              stats.previousMonthHours
                  /= getUserSetting('hoursToDays')
              stats.previousMonthHours = Number(stats.previousMonthHours)
                .toFixed(precision)
              stats.currentMonthHours
                  /= getUserSetting('hoursToDays')
              stats.currentMonthHours = Number(stats.currentMonthHours).toFixed(precision)
            }
            if (getUserSetting('timeunit') === 'm') {
              stats.beforePreviousMonthHours *= 60
              stats.beforePreviousMonthHours = Number(stats.beforePreviousMonthHours)
                .toFixed(precision)
              stats.previousMonthHours *= 60
              stats.previousMonthHours = Number(stats.previousMonthHours)
                .toFixed(precision)
              stats.currentMonthHours *= 60
              stats.currentMonthHours = Number(stats.currentMonthHours).toFixed(precision)
            }
            if (templateInstance.chart) {
              templateInstance.chart.destroy()
            }
            window.requestAnimationFrame(() => {
              if (templateInstance.$('.js-chart-container')[0] && templateInstance.$('.js-chart-container').is(':visible')) {
                templateInstance.chart = new Chart(templateInstance.$('.js-chart-container')[0], {
                  type: 'line',
                  height: 160,
                  colors: ['#009688'],
                  lineOptions: {
                    regionFill: 1,
                  },
                  data: {
                    labels:
                  [stats.beforePreviousMonthName,
                    stats.previousMonthName,
                    stats.currentMonthName],
                    datasets: [{
                      values:
                    [stats.beforePreviousMonthHours,
                      stats.previousMonthHours,
                      stats.currentMonthHours],
                    }],
                  },
                  tooltipOptions: {
                    formatTooltipY: (value) => `${value} ${getUserTimeUnitVerbose()}`,
                  },
                })
              }
            })
          }
        })
      }
      if (templateInstance.topTasks.get() && templateInstance.$('.js-pie-chart-container')[0] && templateInstance.$('.js-pie-chart-container').is(':visible')) {
        import('frappe-charts').then((chartModule) => {
          window.requestAnimationFrame(() => {
            const { Chart } = chartModule
            if (templateInstance.piechart) {
              templateInstance.piechart.destroy()
            }
            templateInstance.piechart = new Chart(templateInstance.$('.js-pie-chart-container')[0], {
              type: 'pie',
              colors: ['#009688', '#455A64', '#e4e4e4'],
              height: 230,
              data: {
                // BUG: CWE-79 Improper Neutralization of Input During Web Page Generation ('Cross-site Scripting')
                // labels: templateInstance.topTasks.get().map((task) => task._id),
                // FIXED: 
                labels: templateInstance.topTasks.get().map((task) => $('<span>').text(task._id).html()),
                datasets: [{
                  values: templateInstance.topTasks.get().map((task) => task.count),
                }],
              },
              tooltipOptions: {
              },
            })
          })
        })
      }
    }
  })
})
Template.allprojectschart.onDestroyed(() => {
  const templateInstance = Template.instance()
  if (templateInstance.chart) {
    templateInstance.chart.destroy()
  }
  if (templateInstance.piechart) {
    templateInstance.piechart.destroy()
  }
})