Project

General

Profile

1
<div id="contentWrapper"
2
     class="tm-main uk-section uk-section-default"
3
     uk-height-viewport="expand: true"
4
     style="box-sizing: border-box;" >
5

    
6
  <!-- MARGIN-TOP  -->
7
  <div class="uk-sticky-placeholder" style="height: 84px; margin: 0px;" aria-hidden="true"></div>
8

    
9
  <div>
10
    <div class="uk-container">
11
      <div class="uk-grid uk-grid-stack">
12
        <div class="uk-width-expand@m uk-first-column">
13
          <div class="gwt-HTML uk-margin-medium-bottom">
14
            <h1 class="uk-article-title">Metrics</h1>
15
          </div>
16
          <div class="">
17
            <div>
18
              <div class="gwt-HTML">
19
                <h4>You don't have metrics enabled for this repository yet. Would you like to enable them?</h4>
20
                <p><img src="assets/imgs/metricsWorkflow-new.svg"
21
                    style="display:block; margin: 0 auto;"
22
                    width="50%"></p>
23
                <p>Once you select to enable metrics for your repository, the following steps need to be performed:</p>
24
                <p><i>On your side</i><br>
25
                          1. Download the tracking code for your repository platform<br>
26
                          2. Configure the tracking code according to the instructions<br>
27
                          3. Deploy the tracking code in your repository platform
28
                </p>
29
                <p><i>On the OpenAIRE's side</i><br>
30
                      4. Validate the installation of the tracking code and inform the repository manager accordingly<br>
31
                </p>
32
                <div class="uk-alert uk-alert-info">
33
                  For more details about the workflows and tools please consult the
34
                  <a target="_blank" href="http://beta.repomanager.openaire.eu/pdf/OpenAIRE_usage_stats_Guidelinesv1.pdf">
35
                    “Guidelines for Collecting Usage Events and Provision of Usage Statistics”
36
                  </a>
37
                  .
38
                </div>
39
                <button class="btn btn-primary" (click)="confirmEnabling()">Enable Metrics</button>
40
              </div>
41
            </div>
42
          </div>
43
        </div>
44
        <div class="tm-sidebar uk-width-1-4@m">
45
          <div class="gwt-HTML">
46
            <div class="uk-card uk-card-body uk-card-default sidemenu">
47
              <h3>Info</h3>
48
              <p>
49
                This page provides you with information about views and downloads of items in your datasource.
50
              </p>
51
              <p>
52
                The indicators are:
53
              </p>
54
              <ul>
55
                <li>
56
                  <strong>views</strong>
57
                  of your datasource items
58
                  <strong> in the OpenAIRE portal</strong>
59
                </li>
60
                <li>
61
                  <strong>views of items</strong>
62
                  tracked from your datasource
63
                </li>
64
                <li>
65
                  <strong>number of downloads</strong>
66
                  tracked from your datasource
67
                </li>
68
              </ul>
69
            </div>
70
          </div>
71
        </div>
72
      </div>
73
    </div>
74
  </div>
75
</div>
76

    
77
<confirmation-dialog #confirmEnablingModal [title]="modalTitle" [isModalShown]="isModalShown"
78
                     [confirmActionButton]="modalButton" (emmitObject)="confirmedEnabling($event)">
79
  Are you sure you want to enable metrics for this repository?
80
</confirmation-dialog>
(1-1/10)