aboutsummaryrefslogtreecommitdiffstats
path: root/winery/org.eclipse.winery.topologymodeler/src/main/webapp/WEB-INF/tags/namespaceChooser.tag
blob: 25a19e3a6c15eacf037ef836dbee04c3b1e72ad6 (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
<%--
/*******************************************************************************
 * 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
 *******************************************************************************/
--%>
<%@tag description="places a bootstrap form control to chooose a namespace. A new namespace can be created" pageEncoding="UTF-8"%>

<!--
  This tag is shared at repository and topologytemplate.
  Both versions differ from each other.
  In the repository, ns.decoded is used.
  In the topology modeler only "ns" is used:
  In other words: The topology modeler passes a Collection<String>, whereas repository passes Collection<Namespace>
 -->

<%@taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>

<%@attribute name="allNamespaces" required="true" type="java.util.Collection" description="All known namespaces as strings (because the topology modeler currently doesn't provide that as list of winery namespace objects)"%>
<%@attribute name="idOfInput" required="true" description="The id if the input field storing the namespace. Also used as name"%>
<%@attribute name="nameOfInput" required="false" description="The name if the input field storing the namespace. If not provided, ifOfInput is used"%>
<%@attribute name="selected" description="The currently selected namespace (optional)"%>

<c:if test="${empty nameOfInput}"><c:set var="nameOfInput" value="${idOfInput}"></c:set></c:if>

<!-- createArtifactTemplate class is required for artifactcreationdialog -->
<div class="form-group createArtifactTemplate">
	<label for="${idOfInput}" class="control-label">Namespace</label>
	<input type="hidden" class="form-control" name="${nameOfInput}" id="${idOfInput}"></input>
</div>

<script>
// we have to use data as select2 does not allow "createSearchChoice" when using <select> as underlying html element
$("#${idOfInput}").select2({
	createSearchChoice: function(term) {
		// enables creation of new namespaces
		return {id:term, text:term};
	},
	data:[
		<c:forEach var="ns" items="${allNamespaces}" varStatus="loop">
			{id:"${ns}",text:"${ns}"}<c:if test="${!loop.last}">,</c:if>
		</c:forEach>
	]
}).select2("val", "${selected}");
</script>