forked from Amith-Abey-Stephen/json-generator
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
209 lines (163 loc) · 7.97 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
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="X-UA-Compatible" content="ie=edge" />
<title>JSON Generator | Design Compass</title>
<script src="https://cdn.tailwindcss.com"></script>
<script src="https://unpkg.com/vue@3/dist/vue.global.js"></script>
<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=Afacad+Flux:wght@100..1000&display=swap" rel="stylesheet">
<link href="https://unpkg.com/filepond/dist/filepond.css" rel="stylesheet" />
<link href="https://unpkg.com/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.css" rel="stylesheet"/>
<link rel="stylesheet" href="style.css">
</head>
<body class="bg-gray-100">
<div id="app">
<div class="lg:min-h-screen h-full flex items-center justify-center py-10 px-4 lg:p-6" @click="closeDropdowns">
<div class="max-w-6xl w-full bg-white shadow-lg rounded-lg py-10 px-4 lg:p-6">
<h1 class="text-3xl font-bold text-center">Design Compass | JSON Generator</h1>
<div class="text-lg text-center text-gray-500 mt-6 border border-gray-200 p-4 rounded lg:flex lg:flex-col lg:-space-y-1 bg-gray-50">
<span class="hidden lg:visible">Contribute to the open-source with ease!</span>
<span>This tool helps you easily contribute data to the <a target="_blank" href="https://github.com/inovus-labs/design-compass">Design Compass</a> project on GitHub. </span>
<span>Simply fill in the details below, and a JSON file will be generated for you. No coding required!</span>
</div>
<div class="w-full flex lg:flex-row flex-col items-start justify-center">
<div class="flex lg:w-3/5 w-full flex-wrap mt-8 lg:mb-6">
<!-- Input field -->
<div class="lg:w-full lg:px-3 py-3 w-full">
<label for="app_name" class="block text-xl font-semibold mb-2">Screen Name:</label>
<input
type="text"
id="screen_name"
name="screen_name"
placeholder="Enter Screen Name"
v-model="screenName"
class="w-full text-lg p-3 border border-gray-200 rounded focus:ring-indigo-500 focus:border-indigo-500"
/>
</div>
<!-- Dropdown options with checkboxes -->
<div
v-for="(field, index) in formFields"
:key="index"
@click.stop
class="lg:w-1/2 lg:px-3 py-3 w-full relative"
>
<label :for="field.name" class="block text-xl font-semibold mb-2">{{ field.label }}:</label>
<input
type="text"
:id="field.name"
:placeholder="'Search ' + field.label"
v-model="field.search"
@focus="handleFocus(field)"
class="w-full text-lg p-3 border border-gray-200 rounded focus:ring-indigo-500 focus:border-indigo-500"
/>
<!-- Dropdown options -->
<template v-if="field.isOpen">
<div class="absolute text-lg z-10 mt-2 bg-white border border-gray-200 rounded shadow-lg w-full max-h-48 overflow-y-auto">
<template v-if="field.options">
<div v-for="option in filterOptions(field)" :key="option.value" class="flex items-center px-4 border-b border-gray-200 cursor-pointer hover:bg-gray-50 p-2">
<input
:type="field.multiple ? 'checkbox' : 'radio'"
:id="option.value"
:value="option.value"
v-model="field.selectedOptions"
class="w-4 h-4 text-indigo-600 border-gray-300 rounded focus:ring-indigo-500 cursor-pointer"
/>
<label :for="option.value" class="ml-3 text-gray-700 w-full cursor-pointer">{{ option.label }}</label>
</div>
</template>
<template v-else>
<div v-for="option in filterOptions(field)">
<label :for="option.title" class="px-4 py-3 block text-gray-700 font-semibold border-b border-gray-200">{{ option.title }}</label>
<div v-for="subOption in option.options" :key="subOption.value" class="flex items-center px-4 border-b border-gray-200 cursor-pointer hover:bg-gray-50 p-2">
<input
type="checkbox"
:id="subOption.value"
:value="subOption.value"
v-model="field.selectedOptions"
class="w-4 h-4 text-indigo-600 border-gray-300 rounded focus:ring-indigo-500 cursor-pointer"
/>
<label :for="subOption.value" class="ml-3 text-gray-700 w-full cursor-pointer">{{ subOption.label }}</label>
</div>
</div>
</template>
</div>
</template>
<!-- Error message -->
<div class="block text-md">
<template v-if="field?.multiple && field.selectedOptions?.length >= 1">
<span class="text-green-500">{{ field.selectedOptions.join(', ') }}</span>
</template>
<template v-else-if="!field?.multiple && field?.selectedOptions">
<span class="text-green-500">{{ field.selectedOptions }}</span>
</template>
<template v-else>
<span :class="showErrors ? 'text-red-500' : 'text-gray-400'">No {{ field.label }} selected</span>
</template>
</div>
</div>
</div>
<div class="lg:w-2/5 w-full lg:px-3 py-3 lg:mt-8">
<label for="image-upload" class="block text-xl font-semibold mb-2">Upload Image:</label>
<input
type="file"
class="filepond"
name="file"
@processfile="handleFileUpload"
/>
</div>
</div>
<div class="text-center text-lg">
<button
@click.stop="!formFields.every(field => field?.selectedOptions?.length) || !imageName || !screenName ? showErrors = true : generateJSON()"
class="font-semibold py-1.5 px-6 rounded"
:class="!formFields.every(field => field?.selectedOptions?.length) || !imageName || !screenName ? 'bg-gray-300 text-gray-500 cursor-not-allowed' : 'bg-indigo-600 text-white hover:bg-indigo-500 transition'"
>
Generate JSON
</button>
</div>
<template v-if="showModal">
<div class="fixed inset-0 bg-gray-800 bg-opacity-75 flex items-center justify-center z-50">
<div class="bg-white rounded-lg p-6 m-4 lg:my-4 max-w-lg w-full">
<h3 class="text-xl font-semibold">Generated JSON</h3>
<div class="mb-2">
<p class="text-gray-500 text-sm">To contribute to the Design Compass project, follow these steps:</p>
<ol class="list-decimal list-inside text-gray-500 text-sm pl-4">
<li>Fork the <a target="_blank" href="">Design Compass</a> project on GitHub</li>
<li>Create a folder with your GitHub username inside the <code class="bg-gray-100 text-xs p-1 rounded">data</code> folder</li>
<li>Create a folder inside it with the name of the app</li>
<li>Create a files with the screen name and extension <code class="bg-gray-100 text-xs p-1 rounded">.json</code></li>
<li>Paste the JSON in the file</li>
<li>Commit the changes and create a pull request</li>
</ol>
</div>
<pre class="bg-gray-100 p-4 rounded text-sm text-gray-800 whitespace-pre-wrap">{{ generatedJSON }}</pre>
<!-- Modal actions -->
<div class="mt-4 flex justify-end space-x-2">
<button
@click.stop="copyToClipboard"
class="bg-green-500 text-white font-bold py-2 px-4 rounded hover:bg-green-400 transition"
>
Copy to Clipboard
</button>
<button
@click.stop="closeModal"
class="bg-red-500 text-white font-bold py-2 px-4 rounded hover:bg-red-400 transition"
>
Close
</button>
</div>
</div>
</div>
</template>
</div>
</div>
</div>
<script src="https://unpkg.com/filepond-plugin-image-preview/dist/filepond-plugin-image-preview.js"></script>
<script src="https://unpkg.com/filepond/dist/filepond.js"></script>
<script type="module" src="script.js"></script>
</body>
</html>