Skip to content

Commit 6c8a2d4

Browse files
committed
rustdoc: when running a function-signature search, tweak the tab bar
1 parent a7d6768 commit 6c8a2d4

File tree

4 files changed

+49
-36
lines changed

4 files changed

+49
-36
lines changed

src/librustdoc/html/static/css/rustdoc.css

+5
Original file line numberDiff line numberDiff line change
@@ -1333,6 +1333,11 @@ pre.rust {
13331333
border-top: 2px solid;
13341334
}
13351335

1336+
#titles > button:first-child:last-child {
1337+
margin-right: 1px;
1338+
width: calc(100% - 1px);
1339+
}
1340+
13361341
#titles > button:not(:last-child) {
13371342
margin-right: 1px;
13381343
width: calc(33.3% - 1px);

src/librustdoc/html/static/js/search.js

+12-13
Original file line numberDiff line numberDiff line change
@@ -1407,18 +1407,12 @@ window.initSearch = rawSearchIndex => {
14071407
for (i = 0, nSearchWords = searchWords.length; i < nSearchWords; ++i) {
14081408
row = searchIndex[i];
14091409
in_returned = checkReturned(row, elem, parsedQuery.typeFilter);
1410-
addIntoResults(results_returned, row.id, i, -1, in_returned);
1410+
addIntoResults(results_others, row.id, i, -1, in_returned);
14111411
}
14121412
}
14131413
} else if (parsedQuery.foundElems > 0) {
1414-
let container = results_others;
1415-
// In the special case where only a "returned" information is available, we want to
1416-
// put the information into the "results_returned" dict.
1417-
if (parsedQuery.returned.length !== 0 && parsedQuery.elems.length === 0) {
1418-
container = results_returned;
1419-
}
14201414
for (i = 0, nSearchWords = searchWords.length; i < nSearchWords; ++i) {
1421-
handleArgs(searchIndex[i], i, container);
1415+
handleArgs(searchIndex[i], i, results_others);
14221416
}
14231417
}
14241418
}
@@ -1723,12 +1717,17 @@ window.initSearch = rawSearchIndex => {
17231717
`${typeFilter}</h1> in ${crates} </div>`;
17241718
if (results.query.error !== null) {
17251719
output += `<h3>Query parser error: "${results.query.error}".</h3>`;
1720+
} else if (results.query.foundElems <= 1 && results.query.returned.length === 0) {
1721+
output += `<div id="titles">` +
1722+
makeTabHeader(0, "In Names", ret_others[1]) +
1723+
makeTabHeader(1, "In Parameters", ret_in_args[1]) +
1724+
makeTabHeader(2, "In Return Types", ret_returned[1]) +
1725+
"</div>";
1726+
} else {
1727+
output += '<div id="titles">' +
1728+
makeTabHeader(0, "In Function Signature", ret_others[1]) +
1729+
"</div>";
17261730
}
1727-
output += `<div id="titles">` +
1728-
makeTabHeader(0, "In Names", ret_others[1]) +
1729-
makeTabHeader(1, "In Parameters", ret_in_args[1]) +
1730-
makeTabHeader(2, "In Return Types", ret_returned[1]) +
1731-
"</div>";
17321731

17331732
const resultsElem = document.createElement("div");
17341733
resultsElem.id = "results";
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Checks that the search tab results work correctly with function signature syntax
2+
// First, try a search-by-name
3+
goto: file://|DOC_PATH|/test_docs/index.html
4+
write: (".search-input", "Foo")
5+
// Waiting for the search results to appear...
6+
wait-for: "#titles"
7+
assert-attribute: ("#titles > button:nth-of-type(1)", {"class": "selected"})
8+
assert-text: ("#titles > button:nth-of-type(1)", "In Names", CONTAINS)
9+
10+
// Now try search-by-return
11+
goto: file://|DOC_PATH|/test_docs/index.html
12+
write: (".search-input", "-> String")
13+
// Waiting for the search results to appear...
14+
wait-for: "#titles"
15+
assert-attribute: ("#titles > button:nth-of-type(1)", {"class": "selected"})
16+
assert-text: ("#titles > button:nth-of-type(1)", "In Function Signature", CONTAINS)
17+
18+
// Try with a search-by-return with no results
19+
goto: file://|DOC_PATH|/test_docs/index.html
20+
write: (".search-input", "-> Something")
21+
// Waiting for the search results to appear...
22+
wait-for: "#titles"
23+
assert-attribute: ("#titles > button:nth-of-type(1)", {"class": "selected"})
24+
assert-text: ("#titles > button:nth-of-type(1)", "In Function Signature", CONTAINS)
25+
26+
// Try with a search-by-return with no results
27+
goto: file://|DOC_PATH|/test_docs/index.html
28+
write: (".search-input", "usize pattern")
29+
// Waiting for the search results to appear...
30+
wait-for: "#titles"
31+
assert-attribute: ("#titles > button:nth-of-type(1)", {"class": "selected"})
32+
assert-text: ("#titles > button:nth-of-type(1)", "In Function Signature", CONTAINS)

src/test/rustdoc-gui/search-tab-selection-if-current-is-empty.goml

-23
This file was deleted.

0 commit comments

Comments
 (0)