Spamworldpro Mini Shell
Spamworldpro


Server : Apache
System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64
User : corals ( 1002)
PHP Version : 7.4.33
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/corals/job-board.corals.io/public/assets/themes/marketplace-marty/js/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/corals/job-board.corals.io/public/assets/themes/marketplace-marty/js/dashboard.js
(function ($) {

      /* legent font family */
      var ctxFont = "'Quicksand', sans-serif",
          ctxTickColor = '#8896a5',
          months = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];



      /* set chart js flobal style */
      Chart.defaults.global.defaultFontFamily = ctxFont;
      Chart.defaults.global.defaultFontColor = "#8896a5";
      Chart.defaults.global.defaultFontSize = 14;



      /* custom legend function */
      function customLegend(chart) {
          var text = [];
          text.push('<ul class="piechart'+ chart.id + '-legend">');
          var data = chart.data;
          var datasets = data.datasets;
          var labels = data.labels;
          if (datasets.length) {
              /*check if the type of the chart is line and take length accordingly for iteration*/
              var dataLength = chart.config.type === "line" ? datasets.length : datasets[0].backgroundColor.length;

              /*set the data source according to type*/
              function getData(i){
                  return (
                      [chart.config.type === "line" ? datasets[i].borderColor : datasets[0].backgroundColor[i],
                          chart.config.type === "line" ? datasets[i].label : data.labels[i]]);
              }

              /* loop through data to generate html */
              for (var i=0 ; i < dataLength; ++i) {
                  text.push('<li><span style="background-color:' + (getData(i)[0]) + '"></span>');
                  text.push(getData(i)[1]);
                  text.push('</li>');
              }

              text.push('</ul>');
              return text.join('');
          }

      }

      /* Plugin for piechart */
      var piePlugin = {
          beforeDraw: function(chart) {
              var width = chart.chart.width,
                  height = chart.chart.height,
                  ctx = chart.chart.ctx,
                  p=0;
              chart.data.datasets[0].data.map(function (t) {
                  if(typeof t === 'number' && !isNaN(t)){
                      p+=t;
                  }
              });

              ctx.restore();
              var fontSize = (height / 114).toFixed(2);
              ctx.font = fontSize + "em Quicksand";
              ctx.textBaseline = "middle";

              var text = p+' Visit',
                  textX = Math.round((width - ctx.measureText(text).width) / 2),
                  textY = height / 2;

              ctx.fillText(text, textX, textY);
              ctx.save();
          }
      };


      /* sale view statistics line chart */

      if($('#myChart').length){
          var ctx = $('#myChart');
          var chart = new Chart(ctx, {
              // The type of chart we want to create
              type: 'line',

              // The data for our dataset
              data: {
                  labels: [5,10,15,20,25,30],
                  datasets: [
                      {
                          label: "Daily Views",
                          backgroundColor: 'rgba(115, 71, 193,.5)',
                          borderColor: '#7347c1',
                          data: [5,17,13,23,18,16],
                          pointBackgroundColor: '#7347c1',
                          pointBorderColor: '#fff'
                      },
                      {
                          label: "Daily Sale",
                          backgroundColor: 'rgba(5, 116, 236,.5)',
                          borderColor: '#0674ec',
                          data: [10,12,17,19,15,9],
                          pointBackgroundColor: '#0674ec',
                          pointBorderColor: '#fff'
                      }]
              },

              // Configuration options go here
              options: {
                  scales:{
                      yAxes: [{
                          display: true,
                          ticks: {
                              beginAtZero: true,
                              suggestedMax: 40,
                              fontColor: ctxTickColor
                          }
                      }]
                  },
                  legend: {
                      display: false
                  },
                  legendCallback: customLegend
              }
          });
          /* genereate legend for sale view chart */
          var legendSale = chart.generateLegend();
          $('#stat_legend').html(legendSale);
      }





      /* visit statistics pie chart */
      if($('#piechart').length){
          var piechart = $('#piechart');
          var part  = new Chart(piechart, {
              type: 'doughnut',
              plugins: [piePlugin],
              data:{
                  datasets: [{
                      data: [120,90,70],
                      backgroundColor: [
                          '#0674ec',
                          '#ff6a6c',
                          '#61d039'
                      ]
                  }],
                  labels: [
                      "Google",
                      "Website",
                      "Other"
                  ]
              },
              options:{
                  cutoutPercentage: 75,
                  responsive: true,
                  legend: {
                      display: false
                  },
                  legendCallback: customLegend
              }
          });
          /* genereate legend for visitor pie chart */
          var legend = part.generateLegend();
          $('#pie-legend').html(legend);
      }


      /* single item view statistics */
      if($('#single_item_visit').length){
          var item_view = $('#single_item_visit');
          var viewBar = new Chart(item_view, {
              type: 'bar',

              data: {
                  labels: [3,6,9,12,15,18,21,24,27,30],
                  datasets: [
                      {
                          data:[15,14,23,48,55,25,82,33,55,41,2],
                          backgroundColor: '#0674ec'
                      }
                  ]
              },

              options: {
                  scales:{
                      yAxes: [{
                          ticks:{
                              beginAtZero: true,
                              suggestedMax: 60
                          }
                      }],
                      xAxes: [{
                          barThickness: 40
                      }]
                  },
                  legend:{
                      display: false
                  }
              }
          });
      }


      /* revenue chart */
      if($('#revenue').length){
          var revenue = $('#revenue');
          var reveChart = new Chart(revenue, {
              type: 'line',

              data: {
                  labels: months,
                  datasets:[
                      {
                          label: "2015",
                          data: [3,2.9,2.7,3.5,4,3.8,3.7,3.5,4,4.5,4.3,4.2],
                          fill: false,
                          borderColor: '#7347c1',
                          lineTension: 0,
                          pointBorderColor: '#7347c1'
                      },
                      {
                          label: "2016",
                          data: [4,3.9,3.7,4.5,5,5.8,5.1,4.5,5.7,7,6.25,5.9],
                          fill: false,
                          borderColor: '#0674ec',
                          lineTension: 0,
                          pointBorderColor: '#0674ec'
                      },
                      {
                          label: "2019",
                          data: [5,5.5,5.9,5.5,5,4.8,5.8,6.5,6.1,5.8,6.7,7.2],
                          fill: false,
                          borderColor: '#62d03a',
                          lineTension: 0,
                          pointBorderColor: '#62d03a'
                      }
                  ]
              },

              options: {
                  legend: {
                      display: false
                  },
                  legendCallback: customLegend,
                  scales: {
                      yAxes: [{
                          ticks: {
                              suggestedMax: 10,
                              callback: function (value, index, values) {
                                  return value+'k';
                              }
                          }
                      }]
                  },
                  elements:{
                      point:{
                          backgroundColor: '#fff',
                          borderWidth: 3
                      }
                  }
              }
          });
          /* generate revenue chart lagend */
          var visitLegend = reveChart.generateLegend();
          $('#visit_legend').html(visitLegend);
      }


})(jQuery);

Spamworldpro Mini