aboutsummaryrefslogtreecommitdiffstats
path: root/lib/toaster/toastergui/templates/importlayer.html
blob: dd81f2f3791afeee376cf7ecbdfee85c14341bfe (plain)
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
{% extends "base.html" %}
{% load projecttags %}
{% load humanize %}
{% load static %}
{% block title %} Import layer - {{project.name}} - Toaster {% endblock %}
{% block pagecontent %}

<div class="row">
  {% include "projecttopbar.html" %}
  {% if project and project.release %}
  <script src="{% static 'js/layerDepsModal.js' %}"></script>
  <script src="{% static 'js/importlayer.js' %}"></script>
  <script>
  $(document).ready(function (){
    var ctx = {
      xhrImportLayerUrl : "{% url 'xhr_importlayer' %}",
    };

    try {
      importLayerPageInit(ctx);
    } catch (e) {
      document.write("Sorry, An error has occurred loading this page");
      console.warn(e);
    }
  });
  </script>

  <form class="col-md-11">
    <fieldset>
      <h2>Layer repository information</h2>
      <span class="help-block">The layer you are importing must be compatible with <strong>{{project.release.description}}</strong>, which is the release you are using in this project.</span>
      <div class="alert alert-error" id="import-error" style="display:none">
        <button type="button" class="close" data-dismiss="alert">&times;</button>
        <h3>&nbsp;</h3>
        <p></p>
        <ul></ul>
      </div>

      <div class="form-group" id="layer-name-ctrl">
        <label class="control-label" for="import-layer-name">
          Layer name
          <span class="glyphicon glyphicon-question-sign get-help" title="Something like 'meta-mylayer'. Your layer name must be unique and can only include letters, numbers and dashes"></span>
        </label>
        <input class="form-control" id="import-layer-name" type="text" required autofocus data-autocomplete="off" data-provide="typeahead">
        <span class="help-block" style="display: none;" id="invalid-layer-name-hint">A valid layer name can only include letters, numbers and dashes</span>
        <span class="help-inline" style="display: none;" id="duplicated-layer-name-hint"></span>
      </div>

      <div id="duplicate-layer-info" style="display:none">
        <div class="alert alert-warning">
          <h3>A layer called <a href="" class="dup-layer-link"><span class="dup-layer-name"></span></a> already exists</h3>
          <p>Layer names must be unqiue. Please use a different layer name.</p>
          <dl>
            <dt>
            The <span class="dup-layer-name"></span> repository url is
            </dt>
            <dd>
            <span id="dup-layer-vcs-url"></span>
            </dd>
            <dt>
            The <span class="dup-layer-name"></span> revision is
            </dt>
            <dd>
            <span id="dup-layer-revision"></span>
            </dd>
          </dl>
          <p><a href="" class="dup-layer-link">View the <span class="dup-layer-name"></span> layer information</a></p>
        </div>
      </div>

      <div class="fields-apart-from-layer-name">
        <div class="form-group">
          <label for="layer-git-repo-url">
            Git repository URL
            <span class="glyphicon glyphicon-question-sign get-help" title="Fetch/clone URL of the repository. Currently, Toaster only supports Git repositories." ></span>
          </label>

          <input type="text" id="layer-git-repo-url" class="form-control" required>
        </div>
        <div class="form-group">
          <label for="layer-subdir">
            Repository subdirectory
            <span class="text-muted">(optional)</span>
            <span class="glyphicon glyphicon-question-sign get-help" title="Subdirectory within the repository where the layer is located, if not in the root (usually only used if the repository contains more than one layer)"></span>
          </label>
          <input type="text" class="form-control" id="layer-subdir">
        </div>
        <div class="form-group" id="layer-revision-ctrl">
          <label for="layer-git-ref">Git revision
            <span class="glyphicon glyphicon-question-sign get-help" title="You can provide a Git branch, a tag or a commit SHA as the revision"></span>
          </label>
          <input type="text" class="form-control" id="layer-git-ref" required>
          <span class="help-inline" style="diaply:none;" id="invalid-layer-revision-hint"></span>
        </div>
      </div>

    </fieldset>

    <div class="fields-apart-from-layer-name">
      <fieldset>
        <h2>
          Layer dependencies
          <small class="text-muted">(optional)</small>
          <span class="glyphicon glyphicon-question-sign get-help heading-help" title="Other layers this layer depends upon"></span>
        </h2>
        <ul class="list-unstyled lead" id="layer-deps-list">
        </ul>
        <div class="form-inline">
          <div class="form-group">
            <input type="text" autocomplete="off" data-minLength="1" data-autocomplete="off" data-provide="typeahead" placeholder="Type a layer name" id="layer-dependency" class="form-control">
          </div>
          <button class="btn btn-default" id="add-layer-dependency-btn">
            Add layer
          </button>
          <span class="help-inline">You can only add layers Toaster knows about</span>
        </div>
      </fieldset>
      <div class="top-air" id="form-actions">
        <button class="btn btn-primary btn-lg" data-toggle="modal" id="import-and-add-btn" data-target="#dependencies-message" disabled>Import and add to project</button>
        <span class="help-inline" id="import-and-add-hint" style="vertical-align: middle;">To import a layer you need to enter a layer name, a Git repository URL and a Git revision (branch, tag or commit)</span>
      </div>
    </div>
  </form>

  {% else %} {#project and project release#}
  <div class="page-header">
    <h1>Import layer</h1>
  </div>
  <div class="alert alert-info" id="import-error" >
    <h3>Unsupported project type</h3>
    <p>This project does not support importing layers.</p>
    <ul></ul>
  </div>

  {% endif %}
</div>
{% endblock %}