In this page you’ll find:
Goal
The purpose of this article is to show you how to extend the existing search box widget.
Overview
All components in the Vue.js framework are quite extendable and can be modified to handle custom layout, styles and behaviour. This is possible due to the built-in capability of the platform to attach templates as script tag and therefore supplying a dynamic structure of the presentation.
Prerequisite
Configured Hawksearch widgets - Kentico: Working with widgets
Extending the templates
In order to override the default view file the Hawksearch search box widget uses you need to create a razor view file in your live application project at Views/Shared/Components/SearchBox/Default.cshtml.
In order to add additional templates, create corresponding view files under Views/Shared/Components/SearchBox/ .
When displayed in the widget settings, they will be split by capital letters and words after the first will be lowercased. So a view file called “SearchBoxTemplateOne“ will be displayed like “Search box template one” in the widget settings.
The way the connector is designed it will automatically find the razor view files in that folder and use them. Below is the Default.cshtml code used.
@model Hawksearch.Kentico.Xperience.UI.Widgets.SearchBoxViewModel @{ var trackedEvents = new List<string>() { Model.ComponentViewModel.Properties.TrackAutocompleteClickEvent ? "AutocompleteClick" : "", Model.ComponentViewModel.Properties.TrackSearchEvent ? "Search" : "" }; var eventsJson = Newtonsoft.Json.JsonConvert.SerializeObject(trackedEvents.Where(a => !string.IsNullOrEmpty(a))); var settingsJson = Newtonsoft.Json.JsonConvert.SerializeObject(Model.ConnectorSettings); var language = Model.ConnectorSettings.MultilingualIndexingEnabled ? CMS.Localization.LocalizationContext.CurrentCulture.CultureCode : ""; } @if (Model.ConnectorSettings.FrontendFramework == Hawksearch.Kentico.Xperience.CMS.Configuration.FrontendFrameworkType.Vue) { <div class="vue-app-wrapper-ae" data-indexname="@Model.ComponentViewModel.Properties.IndexName" data-language="@language" data-trackedevents="@eventsJson" data-hawksearchsettings="@settingsJson"> <div class="hawk"> <div class="hawk__header"> @if (string.IsNullOrWhiteSpace(Model.SearchPageUrl)) { <search-box></search-box> } else { <search-box search-page="@Model.SearchPageUrl"></search-box> } </div> </div> </div> } else { <div id="hawksearch-react-search-box" data-indexname="@Model.ComponentViewModel.Properties.IndexName" data-language="@language" data-trackedevents="@eventsJson" data-hawksearchsettings="@settingsJson" data-searchpageurl="@Model.SearchPageUrl"> </div> }
Feel free to modify the given code to your liking, but there are a few things to be careful of. It is important to note that the overall widget needs to be wrapped in a div element with the class “vue-app-wrapper-ae“ and to have the data attributes present as in the snippet above, otherwise functionality might not work as expected. Currently, the connector locates those divs in a page when initializing the Vue.js components.
Additional resources
If you’d like to use some additional components, please refer to the following pages:
Understanding the used Vue SDK - Creating widgets with Vue SDK