-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
159 lines (149 loc) · 7.43 KB
/
index.html
File metadata and controls
159 lines (149 loc) · 7.43 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>LLM4RE Datasets - Visualizer</title>
<link rel="stylesheet" href="styles.css">
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css" rel="stylesheet">
</head>
<body>
<div id="app">
<!-- Header -->
<header class="header">
<div class="container">
<h1 class="logo">
<i class="fas fa-database"></i>
LLM4RE Datasets
</h1>
<nav class="nav">
<a href="#" class="nav-link active" data-view="listing">
<i class="fas fa-list"></i> Browse Datasets
</a>
<a href="dashboard.html" class="nav-link external-link">
<i class="fas fa-chart-bar"></i> Analytics Dashboard
</a>
</nav>
</div>
</header>
<!-- Main Content -->
<main class="main">
<!-- Dataset Listing View -->
<div id="listing-view" class="view active">
<div class="container">
<!-- Header Section -->
<section class="hero">
<h2>LLM4RE Datasets Collection</h2>
<p>A comprehensive collection of datasets for Large Language Models in Requirements Engineering
research. This application provides dynamic visualization and exploration tools for <span
id="dataset-count">0</span> datasets, with continuous updates and improvements.</p>
</section>
<!-- Filters and Controls -->
<section class="controls">
<div class="filters">
<div class="filter-group">
<label for="license-filter">License</label>
<select id="license-filter" class="filter-select">
<option value="">All Licenses</option>
</select>
</div>
<div class="filter-group">
<label for="artifact-filter">Artifact Type</label>
<select id="artifact-filter" class="filter-select">
<option value="">All Types</option>
</select>
</div>
<div class="filter-group">
<label for="granularity-filter">Granularity</label>
<select id="granularity-filter" class="filter-select">
<option value="">All Granularities</option>
</select>
</div>
<div class="filter-group">
<label for="stage-filter">RE Stage</label>
<select id="stage-filter" class="filter-select">
<option value="">All Stages</option>
</select>
</div>
<div class="filter-group">
<label for="task-filter">Task</label>
<select id="task-filter" class="filter-select">
<option value="">All Tasks</option>
</select>
</div>
<div class="filter-group">
<label for="domain-filter">Domain</label>
<select id="domain-filter" class="filter-select">
<option value="">All Domains</option>
</select>
</div>
<div class="filter-group">
<label for="language-filter">Languages</label>
<select id="language-filter" class="filter-select">
<option value="">All Languages</option>
</select>
</div>
<div class="filter-group">
<label for="year-filter">Year</label>
<select id="year-filter" class="filter-select">
<option value="">All Years</option>
</select>
</div>
</div>
<div class="search-sort">
<div class="search-box">
<i class="fas fa-search"></i>
<input type="text" id="search-input" placeholder="Search datasets...">
</div>
<div class="sort-controls">
<label for="sort-select">Sort by:</label>
<select id="sort-select" class="sort-select">
<option value="name">Name</option>
<option value="size">Size</option>
<option value="year">Year</option>
<option value="domain">Domain</option>
</select>
<button id="sort-direction" class="sort-btn" data-direction="asc">
<i class="fas fa-sort-amount-up"></i>
</button>
</div>
</div>
</section>
<!-- Results Summary -->
<section class="results-summary">
<p>Showing <span id="results-count">0</span> of <span id="total-count">0</span> datasets</p>
<button id="clear-filters" class="btn btn-secondary">
<i class="fas fa-times"></i> Clear Filters
</button>
</section>
<!-- Dataset Grid -->
<section class="dataset-grid" id="dataset-grid">
<!-- Datasets will be loaded here -->
</section>
</div>
</div>
<!-- Dataset Detail View -->
<div id="detail-view" class="view">
<div class="container">
<div class="detail-header">
<button id="back-btn" class="btn btn-secondary">
<i class="fas fa-arrow-left"></i> Back to List
</button>
<h2 id="detail-title">Dataset Details</h2>
</div>
<div id="detail-content">
<!-- Dataset details will be loaded here -->
</div>
</div>
</div>
</main>
<!-- Footer -->
<footer class="footer">
<div class="container">
<p>© Anonymous</p>
</div>
</footer>
</div>
<script src="script.js"></script>
</body>
</html>