Skip to content

Commit 864aa18

Browse files
committed
fix(search): custom clear button, fixed #271
1 parent 5e161a1 commit 864aa18

File tree

2 files changed

+49
-7
lines changed

2 files changed

+49
-7
lines changed

src/plugins/search/component.js

+49-6
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,11 @@ function style () {
1414
border-bottom: 1px solid #eee;
1515
}
1616
17+
.search .input-wrap {
18+
display: flex;
19+
align-items: center;
20+
}
21+
1722
.search .results-panel {
1823
display: none;
1924
}
@@ -26,13 +31,31 @@ function style () {
2631
outline: none;
2732
border: none;
2833
width: 100%;
29-
padding: 7px;
30-
line-height: 22px;
34+
padding: 0 7px;
35+
line-height: 36px;
3136
font-size: 14px;
37+
}
38+
39+
.search input::-webkit-search-decoration,
40+
.search input::-webkit-search-cancel-button,
41+
.search input {
3242
-webkit-appearance: none;
3343
-moz-appearance: none;
3444
appearance: none;
3545
}
46+
.search .clear-button {
47+
width: 36px;
48+
text-align: right;
49+
display: none;
50+
}
51+
52+
.search .clear-button.show {
53+
display: block;
54+
}
55+
56+
.search .clear-button svg {
57+
transform: scale(.5);
58+
}
3659
3760
.search h2 {
3861
font-size: 17px;
@@ -70,9 +93,18 @@ function style () {
7093

7194
function tpl (opts, defaultValue = '') {
7295
const html =
73-
`<input type="search" value="${defaultValue}" />` +
74-
'<div class="results-panel"></div>' +
75-
'</div>'
96+
`<div class="input-wrap">
97+
<input type="search" value="${defaultValue}" />
98+
<div class="clear-button">
99+
<svg width="26" height="24">
100+
<circle cx="12" cy="12" r="11" fill="#ccc" />
101+
<path stroke="white" stroke-width="2" d="M8.25,8.25,15.75,15.75" />
102+
<path stroke="white" stroke-width="2"d="M8.25,15.75,15.75,8.25" />
103+
</svg>
104+
</div>
105+
</div>
106+
<div class="results-panel"></div>
107+
</div>`
76108
const el = Docsify.dom.create('div', html)
77109
const aside = Docsify.dom.find('aside')
78110

@@ -83,9 +115,11 @@ function tpl (opts, defaultValue = '') {
83115
function doSearch (value) {
84116
const $search = Docsify.dom.find('div.search')
85117
const $panel = Docsify.dom.find($search, '.results-panel')
118+
const $clearBtn = Docsify.dom.find($search, '.clear-button')
86119

87120
if (!value) {
88121
$panel.classList.remove('show')
122+
$clearBtn.classList.remove('show')
89123
$panel.innerHTML = ''
90124
return
91125
}
@@ -94,20 +128,22 @@ function doSearch (value) {
94128
let html = ''
95129
matchs.forEach(post => {
96130
html += `<div class="matching-post">
97-
<a href="${post.url}">
131+
<a href="${post.url}">
98132
<h2>${post.title}</h2>
99133
<p>${post.content}</p>
100134
</a>
101135
</div>`
102136
})
103137

104138
$panel.classList.add('show')
139+
$clearBtn.classList.add('show')
105140
$panel.innerHTML = html || `<p class="empty">${NO_DATA_TEXT}</p>`
106141
}
107142

108143
function bindEvents () {
109144
const $search = Docsify.dom.find('div.search')
110145
const $input = Docsify.dom.find($search, 'input')
146+
const $inputWrap = Docsify.dom.find($search, '.input-wrap')
111147

112148
let timeId
113149
// Prevent to Fold sidebar
@@ -120,6 +156,13 @@ function bindEvents () {
120156
clearTimeout(timeId)
121157
timeId = setTimeout(_ => doSearch(e.target.value.trim()), 100)
122158
})
159+
Docsify.dom.on($inputWrap, 'click', e => {
160+
// click input outside
161+
if (e.target.tagName !== 'INPUT') {
162+
$input.value = ''
163+
doSearch()
164+
}
165+
})
123166
}
124167

125168
function updatePlaceholder (text, path) {

src/themes/basic/_layout.css

-1
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,6 @@ li input[type=checkbox] {
102102

103103
/* navbar */
104104
.app-nav {
105-
left: 0;
106105
margin: 25px 60px 0 0;
107106
position: absolute;
108107
right: 0;

0 commit comments

Comments
 (0)