-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
163 lines (163 loc) · 7.8 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
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>UML CD Editor</title>
<link rel="icon" type="image/svg+xml" href="favicon.svg" />
<link rel="icon" type="image/png" href="favicon.png" />
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link
href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap"
rel="stylesheet"
/>
<link rel="stylesheet" href="css/styles.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/backbone.js/1.4.0/backbone-min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jointjs/3.5.5/joint.min.js"></script>
<link
rel="stylesheet"
href="https://cdnjs.cloudflare.com/ajax/libs/jointjs/3.5.5/joint.min.css"
/>
</head>
<body class="bg-gray-100">
<div class="flex h-screen bg-white">
<div
class="w-80 bg-white shadow-lg py-8 border-r border-gray-200 flex flex-col"
>
<div class="flex items-center gap-3 mb-8 px-6">
<svg
class="w-7 h-7 text-indigo-600 flex-shrink-0"
fill="none"
stroke="currentColor"
viewBox="0 0 24 24"
>
<rect x="4" y="3" width="7" height="8" rx="1" />
<rect x="13" y="13" width="7" height="8" rx="1" />
<line x1="7.5" y1="11" x2="7.5" y2="13" />
<line x1="7.5" y1="13" x2="16.5" y2="13" />
<line x1="4" y1="6" x2="11" y2="6" />
<line x1="13" y1="16" x2="20" y2="16" />
<circle cx="7.5" cy="13" r="1" fill="currentColor" />
</svg>
<a
href="javascript:void(0)"
onclick="window.location.reload()"
class="text-sm font-bold leading-tight hover:opacity-80 transition-opacity cursor-pointer"
>
<span class="text-gray-400">UML</span>
<span class="block text-gray-900">CLASS DIAGRAM</span>
<span class="text-indigo-600">EDITOR</span>
</a>
</div>
<div class="flex-1 overflow-y-auto px-6">
<div class="tool-section elements">
<h3>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<rect
x="3"
y="3"
width="18"
height="18"
rx="2"
ry="2"
></rect>
<line x1="3" y1="9" x2="21" y2="9"></line>
</svg>
Elements
</h3>
<div class="space-y-2">
<button id="addClass" class="tool-btn">
<span>Class</span>
</button>
<button id="addInterface" class="tool-btn">
<span>Interface</span>
</button>
<button id="addAbstractClass" class="tool-btn">
<span>Abstract Class</span>
</button>
</div>
</div>
<div class="tool-section relationships">
<h3>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<path d="M3 6h18"></path>
<path d="M3 12h18"></path>
<path d="M3 18h18"></path>
</svg>
Relationships
</h3>
<div class="space-y-2">
<button id="addAssociation" class="tool-btn">
<span>Association</span>
</button>
<button
id="addNavigableAssociation"
class="tool-btn"
>
<span>Navigable Association</span>
</button>
<button id="addInheritance" class="tool-btn">
<span>Inheritance</span>
</button>
<button id="addImplementation" class="tool-btn">
<span>Implementation</span>
</button>
<button id="addComposition" class="tool-btn">
<span>Composition</span>
</button>
<button id="addAggregation" class="tool-btn">
<span>Aggregation</span>
</button>
</div>
</div>
<div class="tool-section code-generation">
<h3>
<svg
xmlns="http://www.w3.org/2000/svg"
viewBox="0 0 24 24"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
stroke-linejoin="round"
>
<polyline points="16 18 22 12 16 6"></polyline>
<polyline points="8 6 2 12 8 18"></polyline>
</svg>
Code Generation
</h3>
<div class="space-y-2">
<button id="codeGenButton" class="tool-btn">
<span>Generate Code</span>
</button>
</div>
</div>
</div>
</div>
<div id="paper" class="flex-1 bg-white"></div>
</div>
<script src="js/umlShapes.js"></script>
<script src="js/relationships.js"></script>
<script src="js/codeGenerator.js"></script>
<script src="js/main.js"></script>
</body>
</html>