Last active
July 25, 2019 09:00
-
-
Save piotrpog/16927223a0b402ec4a9031be091fabdb to your computer and use it in GitHub Desktop.
Search sutocomplete component for Craft CMS. More info on http://craftsnippets.com/articles/search-autocomplete-component-for-craft-cms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use craft\elements\Entry; | |
return [ | |
'endpoints' => [ | |
'search.json' => function() { | |
// settings | |
$section_handle = 'articles'; | |
$phrase = Craft::$app->request->getParam('query'); | |
$criteria = [ | |
'section' => $section_handle, | |
'search' => 'title:'.$phrase, | |
]; | |
return [ | |
'elementType' => Entry::class, | |
'criteria' => $criteria, | |
'paginate' => false, | |
'transformer' => function(craft\elements\Entry $entry) { | |
return [ | |
'title' => $entry->title, | |
'url' => $entry->url, | |
]; | |
}, | |
]; | |
}, | |
] | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.autocomplete-suggestions { | |
box-sizing: border-box; | |
border: 1px solid #999; | |
background: #FFF; | |
cursor: default; | |
overflow: auto; | |
} | |
.autocomplete-suggestion { | |
padding: 0.1rem 0.3rem; | |
white-space: nowrap; | |
overflow: hidden; | |
} | |
.autocomplete-no-suggestion { | |
padding: 0.1rem 0.3rem; | |
} | |
.autocomplete-selected { | |
background: #F0F0F0; | |
} | |
.autocomplete-suggestions strong { | |
font-weight: bold; | |
color: #000; | |
} | |
.autocomplete-group { | |
padding: 0.1rem 0.3rem; | |
font-weight: bold; | |
font-size: 1rem; | |
color: #000; | |
display: block; | |
border-bottom: 1px solid #000; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{# requires jQuery autocomplete #} | |
{# https://github.com/devbridge/jQuery-Autocomplete #} | |
<form action=""> | |
<div class="js-search-wrapper"> | |
<input type="text" class="js-search-input" name="search"> | |
</div> | |
</form> | |
{% js %} | |
$('.js-search-input').autocomplete({ | |
serviceUrl: '{{url('search.json')}}', | |
appendTo: $('.js-search-wrapper'), | |
onSelect: function (suggestion) { | |
window.location.href = suggestion.url | |
}, | |
transformResult: function(response){ | |
return { | |
suggestions: $.map(JSON.parse(response).data, function(dataItem) { | |
return { value: dataItem.title, url: dataItem.url }; | |
}) | |
}; | |
} | |
}); | |
{% endjs %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment