|
1 | | -<% |
2 | | -# Initial form setup is determined by the advanced parameter. Thereafter it is altered by javascript. |
3 | | -advanced_label = "Search by title, author, etc." |
4 | | -search_required = true |
5 | | -if params[:advanced] == "true" |
6 | | - search_required = false |
7 | | -end |
8 | | - |
9 | | -geobox_label = "Geospatial bounding box search" |
10 | | -if params[:geobox] == "true" |
11 | | - geobox_required = true |
12 | | - search_required = false |
13 | | -end |
14 | | - |
15 | | -geodistance_label = "Geospatial distance search" |
16 | | -if params[:geodistance] == "true" |
17 | | - geodistance_required = true |
18 | | - search_required = false |
19 | | -end |
20 | | - |
21 | | -# Placeholder text for the keyword input changes if any of the search panels are open. |
22 | | -keyword_placeholder = search_required ? "Enter your search" : "Keyword anywhere" |
23 | | -%> |
24 | | - |
25 | | -<form id="basic-search" class="form-horizontal basic-search" action="<%= results_path %>" method="get" role="search"> |
| 1 | +<form id="search-form" class="form-horizontal search-form" action="<%= results_path %>" method="get" role="search"> |
26 | 2 | <div class="form-group"> |
27 | 3 | <input id="basic-search-main" type="search" |
28 | | - class="field field-text basic-search-input <%= "required" if search_required %>" name="q" |
29 | | - title="Keyword anywhere" placeholder="<%= keyword_placeholder %>" |
30 | | - value="<%= params[:q] %>" <%= 'required' if search_required %> |
31 | | - <%= 'aria-describedby=site-desc' if Flipflop.enabled?(:gdt) %>> |
32 | | - |
33 | | - <% if Flipflop.enabled?(:gdt) %> |
34 | | - <details id="geobox-search-panel" class="form-panel" <%= "open" if params[:geobox] == "true" %>> |
35 | | - <summary class="btn button-secondary" id="geobox-summary"> |
36 | | - <span id="geobox-search-label"><%= geobox_label %></span> |
37 | | - </summary> |
38 | | - <input id="geobox-search-field" class="fieldset-toggle" type="hidden" name="geobox" |
39 | | - value="<%= params[:geobox] %>"> |
40 | | - <fieldset> |
41 | | - <legend>Search within a geospatial bounding box</legend> |
42 | | - <p>* All fields in this section are required</p> |
43 | | - <div class="gridband layout-2c"> |
44 | | - <div class="field-wrap grid-item"> |
45 | | - <label class="geo-label" for="geobox-minLongitude">Minimum longitude</label> |
46 | | - <input type="number" step="0.000001" min="-180.0" max="180.0" |
47 | | - class="field field-text <%= "required" if geobox_required %>" |
48 | | - id="geobox-minLongitude" name="geoboxMinLongitude" value="<%= params[:geoboxMinLongitude] %>" |
49 | | - <%= 'required' if geobox_required %> |
50 | | - aria-describedby="minLong-desc"> |
51 | | - <span class="geo-desc" id="minLong-desc"> |
52 | | - A decimal between -180.0 and 180.0 (Ex: -73.507239) |
53 | | - <span class="hint">Western Hemisphere is negative</span> |
54 | | - </span> |
55 | | - </div> |
56 | | - <div class="field-wrap grid-item"> |
57 | | - <label class="geo-label" for="geobox-minLatitude">Minimum latitude</label> |
58 | | - <input type="number" step="0.000001" min="-90.0" max="90.0" |
59 | | - class="field field-text <%= "required" if geobox_required %>" |
60 | | - id="geobox-minLatitude" name="geoboxMinLatitude" value="<%= params[:geoboxMinLatitude] %>" |
61 | | - <%= 'required' if geobox_required %> |
62 | | - aria-describedby="minLat-desc"> |
63 | | - <span class="geo-desc" id="minLat-desc"> |
64 | | - A decimal between -90.0 and 90.0 (Ex: 41.239083) |
65 | | - <span class="hint">Southern Hemisphere is negative</span> |
66 | | - </span> |
67 | | - </div> |
68 | | - <div class="field-wrap grid-item"> |
69 | | - <label class="geo-label" for="geobox-maxLongitude">Maximum longitude</label> |
70 | | - <input type="number" step="0.000001" min="-180.0" max="180.0" |
71 | | - class="field field-text <%= "required" if geobox_required %>" |
72 | | - id="geobox-maxLongitude" name="geoboxMaxLongitude" value="<%= params[:geoboxMaxLongitude] %>" |
73 | | - <%= 'required' if geobox_required %> |
74 | | - aria-describedby="maxLong-desc"> |
75 | | - <span class="geo-desc" id="maxLong-desc"> |
76 | | - A decimal between -180.0 and 180.0 (Ex: -69.928713) |
77 | | - <span class="hint">Western Hemisphere is negative</span> |
78 | | - </span> |
79 | | - </div> |
80 | | - <div class="field-wrap grid-item"> |
81 | | - <label class="geo-label" for="geobox-maxLatitude">Maximum latitude</label> |
82 | | - <input type="number" step="0.000001" min="-90.0" max="90.0" |
83 | | - class="field field-text <%= "required" if geobox_required %>" |
84 | | - id="geobox-maxLatitude" name="geoboxMaxLatitude" value="<%= params[:geoboxMaxLatitude] %>" |
85 | | - <%= 'required' if geobox_required %> |
86 | | - aria-describedby="maxLat-desc"> |
87 | | - <span class="geo-desc" id="maxLat-desc"> |
88 | | - A decimal between -90.0 and 90.0 (Ex: 42.886759) |
89 | | - <span class="hint">Southern Hemisphere is negative</span> |
90 | | - </span> |
91 | | - </div> |
92 | | - </div> |
93 | | - </fieldset> |
94 | | - </details> |
95 | | - <details id="geodistance-search-panel" class="form-panel" <%= "open" if params[:geodistance] == "true" %>> |
96 | | - <summary class="btn button-secondary" id="geodistance-summary"> |
97 | | - <span id="geodistance-search-label"><%= geodistance_label %></span> |
98 | | - </summary> |
99 | | - <input id="geodistance-search-field" class="fieldset-toggle" type="hidden" name="geodistance" |
100 | | - value="<%= params[:geodistance] %>"> |
101 | | - <fieldset> |
102 | | - <legend>Search within a distance of a geographic point</legend> |
103 | | - <p>* All fields in this section are required</p> |
104 | | - <div class="gridband layout-2c"> |
105 | | - <div class="field-wrap grid-item"> |
106 | | - <label class="geo-label" for="geodistance-latitude">Latitude</label> |
107 | | - <input type="number" step="0.000001" min="-90.0" max="90.0" |
108 | | - class="field field-text <%= "required" if geodistance_required %>" |
109 | | - id="geodistance-latitude" name="geodistanceLatitude" |
110 | | - value="<%= params[:geodistanceLatitude] %>" aria-describedby="lat-desc" |
111 | | - <%= 'required' if geodistance_required %> |
112 | | - aria-describedby="lat-desc"> |
113 | | - <span class="geo-desc" id="lat-desc"> |
114 | | - A decimal between -90.0 and 90.0 (Ex: 42.279594) |
115 | | - <span class="hint">Southern Hemisphere is negative</span> |
116 | | - </span> |
117 | | - </div> |
118 | | - <div class="field-wrap grid-item"> |
119 | | - <label class="geo-label" for="geodistance-longitude">Longitude</label> |
120 | | - <input type="number" step="0.000001" min="-180.0" max="180.0" |
121 | | - class="field field-text <%= "required" if geodistance_required %>" |
122 | | - id="geodistance-longitude" name="geodistanceLongitude" |
123 | | - value="<%= params[:geodistanceLongitude] %>" aria-describedby="long-desc" |
124 | | - <%= 'required' if geodistance_required %> |
125 | | - aria-describedby="long-desc"> |
126 | | - <span class="geo-desc" id="long-desc"> |
127 | | - A decimal between -180.0 and 180.0 (Ex: -83.732124) |
128 | | - <span class="hint">Western Hemisphere is negative</span> |
129 | | - </span> |
130 | | - </div> |
131 | | - <div class="field-wrap grid-item"> |
132 | | - <label class="geo-label" for="geodistance-distance">Distance from the location</label> |
133 | | - <input type="text" class="field field-text <%= "required" if geodistance_required %>" |
134 | | - id="geodistance-distance" name="geodistanceDistance" |
135 | | - value="<%= params[:geodistanceDistance] %>" aria-describedby="distance-desc" |
136 | | - <%= 'required' if geodistance_required %> |
137 | | - aria-describedby="distance-desc"> |
138 | | - <span class="geo-desc" id="distance-desc"> |
139 | | - Distance is in meters by default; add other units if preferred (Ex: '100km' or '50mi') |
140 | | - </span> |
141 | | - </div> |
142 | | - </div> |
143 | | - </fieldset> |
144 | | - </details> |
145 | | - |
146 | | - <details id="advanced-search-panel" class="form-panel" <%= "open" if params[:advanced] == "true" %>> |
147 | | - <summary class="btn button-secondary" id="advanced-summary"> |
148 | | - <span id="advanced-search-label"><%= advanced_label %></span> |
149 | | - </summary> |
150 | | - <input id="advanced-search-field" class="fieldset-toggle" type="hidden" name="advanced" |
151 | | - value="<%= params[:advanced] %>"> |
152 | | - <div class="field-container"> |
153 | | - <div class="field-wrap"> |
154 | | - <label for="advanced-title" class="field-label">Title</label> |
155 | | - <input type="text" class="field field-text wide" id="advanced-title" name="title" |
156 | | - value="<%= params[:title] %>"> |
157 | | - </div> |
| 4 | + class="field field-text basic-search-input" name="q" |
| 5 | + title="Keyword anywhere" placeholder="Enter your search" |
| 6 | + value="<%= params[:q] %>" required> |
158 | 7 |
|
159 | | - <div class="field-wrap"> |
160 | | - <label for="advanced-contributors" class="field-label">Authors</label> |
161 | | - <input type="text" class="field field-text wide" id="advanced-contributors" name="contributors" |
162 | | - value="<%= params[:contributors] %>"> |
163 | | - </div> |
164 | | - |
165 | | - <div class="field-wrap"> |
166 | | - <label for="advanced-subjects" class="field-label">Subjects</label> |
167 | | - <input type="text" class="field field-text wide" id="advanced-subjects" name="subjects" |
168 | | - value="<%= params[:subjects] %>"> |
169 | | - </div> |
170 | | - |
171 | | - <div class="field-wrap"> |
172 | | - <label for="advanced-locations" class="field-label">Locations</label> |
173 | | - <input type="text" class="field field-text wide" id="advanced-locations" name="locations" |
174 | | - value="<%= params[:locations] %>"> |
175 | | - </div> |
176 | | - </div> |
177 | | - </details> |
178 | | - <% end %> |
179 | | - </div> |
180 | | - |
181 | | - <div class="basic-search-submit"> |
182 | | - <button type="submit" class="btn button-primary">Search</button> |
| 8 | + <div class="basic-search-submit"> |
| 9 | + <button type="submit" class="btn button-primary">Search</button> |
| 10 | + </div> |
183 | 11 | </div> |
184 | 12 | </form> |
185 | 13 |
|
|
0 commit comments