index.vue 7.0 KB
Newer Older
D
DCloud_LXH 已提交
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 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
<template>
	<div class="search-box">
		<input
			ref="input"
			aria-label="Search"
			:value="query"
			:class="{ focused: focused }"
			:placeholder="placeholder"
			class="custom-search"
			autocomplete="off"
			spellcheck="false"
			@input="query = $event.target.value"
			@focus="focused = true"
			@blur="focused = true"
			@keyup.enter="go(focusIndex)"
			@keyup.up="onUp"
			@keyup.down="onDown"
		/>
		<ul
			v-if="showSuggestions"
			class="suggestions"
			:class="{ 'align-right': alignRight }"
			style="z-index: 1"
			@mouseleave="unfocus"
		>
			<li
				v-for="(s, i) in suggestions"
				:key="i"
				class="suggestion"
				:class="{ focused: i === focusIndex }"
				@mousedown="go(i)"
				@mouseenter="focus(i)"
			>
				<a :href="s.path" @click.prevent>
					<div class="suggestion-item">
						<span class="page-title">{{ s.title || 'Document' }}</span>
						<span v-if="s.header" class="header">{{ s.header.title }}</span>
					</div>
				</a>
			</li>
		</ul>
	</div>
</template>

<script>
	import matchQuery from './match-query';
	/* global SEARCH_MAX_SUGGESTIONS, SEARCH_PATHS, SEARCH_HOTKEYS */
	export default {
		name: 'SearchBox',

		data() {
			return {
				query: '',
				focused: false,
				focusIndex: 0,
				placeholder: undefined,
				SEARCH_PATHS: null,
				SEARCH_HOTKEYS: ['s', '/'],
				SEARCH_MAX_SUGGESTIONS: 5,
			};
		},

		computed: {
			showSuggestions() {
				return this.focused && this.suggestions && this.suggestions.length;
			},

			suggestions() {
				const query = this.query.trim().toLowerCase();
				if (!query) {
					return;
				}

				const { pages } = this.$site;
				const max = this.$site.themeConfig.searchMaxSuggestions || this.SEARCH_MAX_SUGGESTIONS;
				const localePath = this.$localePath;
				const res = [];
				for (let i = 0; i < pages.length; i++) {
					if (res.length >= max) break;
					const p = pages[i];
					// filter out results that do not match current locale
					if (this.getPageLocalePath(p) !== localePath) {
						continue;
					}

					// filter out results that do not match searchable paths
					if (!this.isSearchable(p)) {
						continue;
					}

					if (matchQuery(query, p)) {
						res.push(p);
					} else if (p.headers) {
						for (let j = 0; j < p.headers.length; j++) {
							if (res.length >= max) break;
							const h = p.headers[j];
							if (h.title && matchQuery(query, p, h.title)) {
								res.push(
									Object.assign({}, p, {
										path: p.path + '#' + h.slug,
										header: h,
									})
								);
							}
						}
					}
				}
				return res;
			},

			// make suggestions align right when there are not enough items
			alignRight() {
				const navCount = (this.$site.themeConfig.nav || []).length;
				const repo = this.$site.repo ? 1 : 0;
				return navCount + repo <= 2;
			},
		},

		mounted() {
			this.placeholder = this.$site.themeConfig.searchPlaceholder || '';
			document.addEventListener('keydown', this.onHotkey);
		},

		beforeDestroy() {
			document.removeEventListener('keydown', this.onHotkey);
		},

		methods: {
			getPageLocalePath(page) {
				for (const localePath in this.$site.locales || {}) {
					if (localePath !== '/' && page.path.indexOf(localePath) === 0) {
						return localePath;
					}
				}
				return '/';
			},

			isSearchable(page) {
				let searchPaths = this.SEARCH_PATHS;

				// all paths searchables
				if (searchPaths === null) {
					return true;
				}

				searchPaths = Array.isArray(searchPaths) ? searchPaths : new Array(searchPaths);

				return (
					searchPaths.filter(path => {
						return page.path.match(path);
					}).length > 0
				);
			},

			onHotkey(event) {
				if (event.srcElement === document.body && this.SEARCH_HOTKEYS.includes(event.key)) {
					this.$refs.input.focus();
					event.preventDefault();
				}
			},

			onUp() {
				if (this.showSuggestions) {
					if (this.focusIndex > 0) {
						this.focusIndex--;
					} else {
						this.focusIndex = this.suggestions.length - 1;
					}
				}
			},

			onDown() {
				if (this.showSuggestions) {
					if (this.focusIndex < this.suggestions.length - 1) {
						this.focusIndex++;
					} else {
						this.focusIndex = 0;
					}
				}
			},

			go(i) {
				if (!this.showSuggestions) {
					return;
				}
				this.$router.push(this.suggestions[i].path);
				this.query = '';
				this.focusIndex = 0;
			},

			focus(i) {
				this.focusIndex = i;
			},

			unfocus() {
				this.focusIndex = -1;
			},
		},
	};
</script>

<style lang="stylus">
	.search-box
	  display inline-block
	  position relative
	  margin-right 1rem
	  input
	    cursor text
	    width 10rem
	    height: 2rem
	    color lighten($textColor, 25%)
	    display inline-block
	    border 1px solid darken($borderColor, 10%)
	    border-radius 2rem
	    font-size 0.9rem
	    line-height 2rem
	    padding 0 0.5rem 0 2rem
	    outline none
	    transition all .2s ease
	    background #fff url(search.svg) 0.6rem 0.5rem no-repeat
	    background-size 1rem
	    &:focus
	      cursor auto
	      border-color $accentColor
	  .suggestions
	    background #fff
	    width 20rem
	    position absolute
	    top 2 rem
	    border 1px solid darken($borderColor, 10%)
	    border-radius 6px
	    padding 0.4rem
	    list-style-type none
	    &.align-right
	      right 0
	  .suggestion
	    line-height 1.4
	    padding 0.4rem 0.6rem
	    border-radius 4px
	    cursor pointer
	    a
	      white-space normal
	      color lighten($textColor, 35%)
	      .page-title
	        font-weight 600
	      .header
	        font-size 0.9em
	        margin-left 0.25em
	    &.focused
	      background-color #f3f4f5
	      a
	        color $accentColor

	@media (max-width: $MQNarrow)
	  .search-box
	    input
	      cursor pointer
	      width 0
	      border-color transparent
	      position relative
	      &:focus
	        cursor text
	        left 0
	        width 10rem

	// Match IE11
	@media all and (-ms-high-contrast: none)
	  .search-box input
	    height 2rem

	@media (max-width: $MQNarrow) and (min-width: $MQMobile)
	  .search-box
	    .suggestions
	      left 0

	@media (max-width: $MQMobile)
	  .search-box
	    margin-right 0
	    input
	      left 1rem
	    .suggestions
	      right 0

	@media (max-width: $MQMobileNarrow)
	  .search-box
	    .suggestions
	      width calc(100vw - 4rem)
	    input:focus
	      width 8rem
	// by Lxh
	.search-box
		.suggestions
			width 30rem
		.suggestion
			$li-border-color = #f0f0f0
			border 1px solid $li-border-color
			border-radius 0
			padding 0
			&:not(:last-child)
				border-bottom none
			&:first-child
				border-top-left-radius 6px
				border-top-right-radius 6px
			&:last-child
				border-bottom 1px solid $li-border-color
				border-bottom-left-radius 6px
				border-bottom-right-radius 6px
			a
				width 100%
			.suggestion-item
				width 100%
				display flex
				.page-title
					flex 1
					width 9rem
					background-color #f7f7f7
					padding 10px
					display flex
					flex-direction column
					justify-content center
					text-align center
					word-break break-all
				.header
					flex 2
					padding-left 20px
					display flex
					flex-direction column
					justify-content center
					text-align left
</style>