aboutsummaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.repository/src/main/webapp/jsp/admin/types/types.jsp
blob: 25b2e0f3127da9536ef3d636d2b764c45bcdfc63 (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
<%--
/*******************************************************************************
 * Copyright (c) 2012-2013 University of Stuttgart.
 * All rights reserved. This program and the accompanying materials
 * are made available under the terms of the Eclipse Public License v1.0
 * and the Apache License 2.0 which both accompany this distribution,
 * and are available at http://www.eclipse.org/legal/epl-v10.html
 * and http://www.apache.org/licenses/LICENSE-2.0
 *
 * Contributors:
 *    Oliver Kopp - initial API and implementation and/or initial documentation
 *    Yves Schubert - switch to bootstrap 3
 *******************************************************************************/
--%>
<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<div class="listheading">
	<button class="rightbutton btn btn-danger btn-sm" type="button" onclick="deleteOnServerAndInTable(typesTableInfo, 'Type', '${it.URL}', 1);">Remove</button>
	<button class="rightbutton btn btn-primary btn-sm" type="button" onclick="$('#addTypeShortnameDiag').modal('show');">Add</button>
</div>

<table id="typeswithshortnametable">

<thead>
	<tr>
		<th>Short name</th>
		<th>Long Name</th>
	</tr>
</thead>

<tbody>
	<c:forEach var="type" items="${it.types}">
		<tr>
			<td class="shortname editable">${type.shortName}</td>
			<td>${type.type}</td>
		</tr>
	</c:forEach>
</tbody>

</table>


<div class="modal fade" id="addTypeShortnameDiag">
	<div class="modal-dialog">
		<div class="modal-content">
			<div class="modal-header">
				<button type="button" class="close" data-dismiss="modal" aria-hidden="true">&times;</button>
				<h4 class="modal-title">Add short name</h4>
			</div>
			<div class="modal-body">
				<form id="addTypeShortnameForm" enctype="multipart/form-data">
					<fieldset>
						<div class="form-group">
							<label for="shortname">Short name</label>
							<input name="shortname" id="shortname" class="form-control" type="text" />
						</div>
						<div class="form-group">
							<label for="type">Type</label>
							<input name="type" id="type" class="form-control" type="text" />
						</div>
					</fieldset>
				</form>
			</div>

			<div class="modal-footer">
				<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
				<button type="button" class="btn btn-primary" onclick="addShortNameAndType();">Add</button>
			</div>
		</div>
	</div>
</div>


<script>
$(document).on("click", "td.shortname",
		vCreateTdClickFunction(
			"${it.URL}",
			"shortname",
			"type"));

var typesTableInfo = {
		id: '#typeswithshortnametable'
};
require(["winery-support"], function(ws) {
	ws.initTable(typesTableInfo);
});

function addShortNameAndType() {
	$.ajax({
		url: "${it.URL}",
		type: "POST",
		async: false,
		data: $('#addTypeShortnameForm').serialize(),
		error: function(jqXHR, textStatus, errorThrown) {
			vShowAJAXError("Could not add type information", jqXHR, errorThrown);
		},
		success: function(data, textSTatus, jqXHR) {
			typesTableInfo.table.fnAddData([$('#shortname').val(), $('#type').val()]);
			$('#addTypeShortnameDiag').modal('hide');
			vShowSuccess("Successfully added type information.");
		}
	});
}

</script>