-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
133 lines (113 loc) · 5.56 KB
/
index.html
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
<html>
<body>
<head>
<title>REST API Generator</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<link rel="stylesheet" href="./css/custom.css">
</head>
<div class="container">
<h2>Number of tables: <span data-bind="text: architecture().length"></span></h2>
<label>User Passwords?</label>
<input type="checkbox" data-bind="checked: createUserPasswords">
<label>Custom values?</label>
<input type="checkbox" data-bind="checked: allowCustom">
<div class="architecture-container" data-bind="foreach: architecture">
<div class="row">
<div class="col-md-2">
<input data-bind="value: name" class="form-control"/>
</div>
<div class="col-md-1 col-md-offset-9">
<a href="#" title="Delete this table">
<button class="glyphicon glyphicon-remove btn" data-bind="click: $root.removeTable"></button>
</a>
</div>
</div>
<br>
<div class="value-container" data-bind="foreach: values">
<br>
<div class="row">
<div class="col-md-1">
<label>Ref?</label>
<input type="checkbox" data-bind="checked: foreignReference"/>
</div>
<div class="col-md-2">
<!-- ko if: !foreignReference() -->
<input data-bind="value: name"/>
<!-- /ko -->
<!-- ko if: foreignReference() -->
<select data-bind="options: architecture($root.architecture, $parent), value:table, optionsText: 'name'" class="form-control">
</select>
<!-- /ko -->
</div>
<div class="col-md-3">
<!-- ko if:!foreignReference() -->
<select data-bind="options: dataTypes, value: type, optionsText: 'name'" class="form-control">
</select>
<!-- /ko -->
<!-- ko if:foreignReference() -->
<select data-bind="options: referenceValueOptions, value:foreignType, optionsText: 'name'" class="form-control">
</select>
<!-- /ko -->
</div>
<div class="col-md-2">
<input type="number" data-bind="visible: type().length, value:lengthVal" />
</div>
<div class="col-md-1">
<a href="#" title="Make primary key">
<span data-bind= "click: $parent.togglePrimary, css: {'glyphicon-star' :isPrimary(), 'glyphicon-star-empty' :!isPrimary()}" class="glyphicon"></span>
</a>
</div>
<div class="col-md-1">
<a href="#" title="Delete this value">
<button data-bind="click: $parent.removeValue" class="glyphicon glyphicon-remove btn"></button>
</a>
</div>
<!-- <div class="col-md-1">
<input type="checkbox" data-bind="checked:references">
</div> -->
<br>
<br>
</div>
</div>
<div class="row">
<div class="col-md-1 col-md-offset-11">
<button class="glyphicon glyphicon-plus btn" data-bind="click: addValue"></span>
</div>
</div>
<br>
</div>
<!-- ko if: allowCustom -->
<div class="custom-value-container">
<div class="row">
<div class="col-md-4">
<label>Name of Custom Value:</label><br>
<input type="text" data-bind="value:$root.currentCustom().name"/>
</div>
<div class="col-md-4">
<br>
<textarea row="1" cols="30" data-bind="value:$root.currentCustom().valueText">
</textarea>
</div>
<div class="col-md-4">
<br>
<button class="btn" data-bind="click: $root.generateCustom">Generate Custom</button>
</div>
</div>
<br>
<br><br>
</div>
<!-- /ko -->
<button class="btn" data-bind="click: addTable">Create another table</button>
<button class="btn" data-bind="click: generateExport">Generate and Export</button>
<br>
<br>
<br>
</div>
</body>
<head>
<script src="./lib/jquery-3.1.1.min.js"></script>
<script src="./lib/console-save/console-save.js"></script>
<script src="./lib/knockoutjs/knockout-3.4.0.js"></script>
<script src="./js/object_handler.js"></script>
</head>
</html>