@@ -14,6 +14,11 @@ function style () {
14
14
border-bottom: 1px solid #eee;
15
15
}
16
16
17
+ .search .input-wrap {
18
+ display: flex;
19
+ align-items: center;
20
+ }
21
+
17
22
.search .results-panel {
18
23
display: none;
19
24
}
@@ -26,13 +31,31 @@ function style () {
26
31
outline: none;
27
32
border: none;
28
33
width: 100%;
29
- padding: 7px;
30
- line-height: 22px ;
34
+ padding: 0 7px;
35
+ line-height: 36px ;
31
36
font-size: 14px;
37
+ }
38
+
39
+ .search input::-webkit-search-decoration,
40
+ .search input::-webkit-search-cancel-button,
41
+ .search input {
32
42
-webkit-appearance: none;
33
43
-moz-appearance: none;
34
44
appearance: none;
35
45
}
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
+ }
36
59
37
60
.search h2 {
38
61
font-size: 17px;
@@ -70,9 +93,18 @@ function style () {
70
93
71
94
function tpl ( opts , defaultValue = '' ) {
72
95
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>`
76
108
const el = Docsify . dom . create ( 'div' , html )
77
109
const aside = Docsify . dom . find ( 'aside' )
78
110
@@ -83,9 +115,11 @@ function tpl (opts, defaultValue = '') {
83
115
function doSearch ( value ) {
84
116
const $search = Docsify . dom . find ( 'div.search' )
85
117
const $panel = Docsify . dom . find ( $search , '.results-panel' )
118
+ const $clearBtn = Docsify . dom . find ( $search , '.clear-button' )
86
119
87
120
if ( ! value ) {
88
121
$panel . classList . remove ( 'show' )
122
+ $clearBtn . classList . remove ( 'show' )
89
123
$panel . innerHTML = ''
90
124
return
91
125
}
@@ -94,20 +128,22 @@ function doSearch (value) {
94
128
let html = ''
95
129
matchs . forEach ( post => {
96
130
html += `<div class="matching-post">
97
- <a href="${ post . url } ">
131
+ <a href="${ post . url } ">
98
132
<h2>${ post . title } </h2>
99
133
<p>${ post . content } </p>
100
134
</a>
101
135
</div>`
102
136
} )
103
137
104
138
$panel . classList . add ( 'show' )
139
+ $clearBtn . classList . add ( 'show' )
105
140
$panel . innerHTML = html || `<p class="empty">${ NO_DATA_TEXT } </p>`
106
141
}
107
142
108
143
function bindEvents ( ) {
109
144
const $search = Docsify . dom . find ( 'div.search' )
110
145
const $input = Docsify . dom . find ( $search , 'input' )
146
+ const $inputWrap = Docsify . dom . find ( $search , '.input-wrap' )
111
147
112
148
let timeId
113
149
// Prevent to Fold sidebar
@@ -120,6 +156,13 @@ function bindEvents () {
120
156
clearTimeout ( timeId )
121
157
timeId = setTimeout ( _ => doSearch ( e . target . value . trim ( ) ) , 100 )
122
158
} )
159
+ Docsify . dom . on ( $inputWrap , 'click' , e => {
160
+ // click input outside
161
+ if ( e . target . tagName !== 'INPUT' ) {
162
+ $input . value = ''
163
+ doSearch ( )
164
+ }
165
+ } )
123
166
}
124
167
125
168
function updatePlaceholder ( text , path ) {
0 commit comments