Skip to main content

7 posts tagged with "best-practices"

View All Tags

ยท 7 min read
Dina Berry

Welcome to Week 4, Day 2 of #30DaysOfSWA!!

Yesterday, we kicked off "Best Practices" week by talking about the end-to-end developer experience. Key to this is the ability to seamlessly integrate relevant tools and services that enhance the user experience - without adding complexity to the developer workflow. Today, we'll look at this in practice, by walking through a tutorial that integrates your Azure Static Web Apps deployed website with Azure Cognitive Search - allowing you to add custom search capability to your deployed web app in just a few steps.

What We'll Coverโ€‹

  • What is Azure Cognitive Search?
  • What is a Search Index?
  • Add Cognitive Search to a Website
  • Deploy to Azure Static Web Apps
  • Exercise: Create your own search index. Deploy your app to SWA.

Make Your App Searchable!โ€‹

Today we explore adding search to a website with Azure Cognitive Search - a cloud search service that provides infrastructure, APIs, and tools, for building rich integrated search capabilities for your mobile and web applications. It even allows for custom search functionality to enhance the default experience.

We'll walk through the following example today. Want to follow along? You can grab the source code and explore it as we walk through the tutorial.

We will be using a Book Catalog example - one of the most common uses of search for a website - to demonstrate how fast it is to get this service up and running with your deployed Azure Static Web App.

Sample with Cognitive Search functionality

This sample website provides access to a catalog of 10,000 books. The user experience goes something like this:

  • The user searches the catalog by entering text in the search bar.
  • As they enter text, we can use the Search Index's suggest feature to complete the text proactively.
  • Once the query finishes, we display the results with a subset of details.
  • Users select a book to see the details stored in the book's Search Index.

Simple, right? Let's look under the hood at how this works, and then dive into the implementation details.

Azure Cognitive Search is a cloud search service that gives you, as the developer, the ability to provide rich search experiences. Architecturally, a search service sits between the external data stores that contain your unindexed data, and your client app that sends query requests to a search index and handles the response.

the roundtrip road of boring development

Cognitive Search can integrate with other Azure services that automate data ingestion/retrieval from Azure data sources, and skillsets that incorporate consumable AI from Cognitive Services, such as image and natural language processing, or custom AI that you create in Azure Machine Learning or wrap inside Azure Functions.

Once you create your Azure resource for Cognitive Search, you can access it with the following key information:

  • Resource name: what you named your Cognitive Search instance.
  • Index name: your resource can hold many indexes, each with its own identifiable name.
  • Admin key: used to upload data into the search index
  • Query key: used by the API to find data in the search index

So, we've used the term search index many times - what does that mean?

What is a search index?โ€‹

Search functionality needs data to query. In Azure Cognitive Search, this data is held in a search index. Because this particular sample is already written for you, it includes the upload of the JSON data into the search index. If you're starting from scratch, look at the Quickstart to learn how you can create an Azure Cognitive Search index with your data.

The trickiest part is mapping your data into Cognitive Search types. In order to do this, you provide a schema file that describes each data field.

Searchable titleโ€‹

An example of a field in the schema file for this book catalog is the book title:

{
"name": "title",
"type": "Edm.String",
"facetable": false,
"filterable": false,
"key": false,
"retrievable": true,
"searchable": true,
"sortable": false,
"analyzer": "standard.lucene",
"indexAnalyzer": null,
"searchAnalyzer": null,
"synonymMaps": [],
"fields": []
},

The type is a Edm.String and it uses the standard.lucene analyzer. It is searchable and retrievable (comes back in the query results).

Filter by languageโ€‹

The book catalog search also allows a filter by language. This filter, known as a facet, is provided by the facetable property.

{
"name": "language_code",
"type": "Edm.String",
"facetable": true,
"filterable": true,
"key": false,
"retrievable": true,
"searchable": false,
"sortable": false,
"analyzer": null,
"indexAnalyzer": null,
"searchAnalyzer": null,
"synonymMaps": [],
"fields": []
},

Suggest search terms as a user typesโ€‹

The schema also tells the search index what fields to watch when providing search suggesters, as the user types an entry in the search box. For this sample, suggestions are based on author names and book titles.

"suggesters": [
{
"name": "sg",
"searchMode": "analyzingInfixMatching",
"sourceFields": [
"authors",
"original_title"
]
}

Once the search index is created with data, you can view the data in the Visual Studio Code extension for Cognitive Search.

Search index viewed with VS Code extension

Add search to websiteโ€‹

After the search index is created with the data, you can add search functionality through the UI. Your UI passes the user's search request to your API. The API queries the search index and returns the results.

The client code provides interactive functionality:

The serverless code provides the following API to respond to client requests:

Deploy to SWAโ€‹

The sample is deployed to SWA from a GitHub action, created for you by the Visual Studio Code extension for SWA.

Once you create and deploy the sample, you need to set environment variables to connect from the serverless API to your Cognitive Search resource. Then the book catalog website is available and searchable.

Exercise: Upload data to search indexโ€‹

  1. Fork the GitHub sample repo, and clone it to your local computer. This is a necessary step because the GitHub action needs to be written to a repo your user account has access to.

  2. Create a resource group to hold both your SWA and Cognitive Search resources.

  3. Create a search index in Visual Studio Code with the Cognitive Search extension.

  4. Get the admin key.

  5. Set admin key and resource name in sample's bulk_insert_books.js script.

  6. Don't check in these changes with git. You don't want these secrets in your public fork.

  7. Install dependencies and bulk insert data in the ./bulk-insert folder:

    npm install && npm start
  8. Your search index is ready to answer search queries.

Exercise: Deploy SWA to Azureโ€‹

  1. In Visual Studio Code, create the SWA resource. This process adds a GitHub action YAML file to your fork and deploys that version to your SWA resource.

    At this point, the website should be available, but search isn't connected yet.

  2. Get the query key for your search index. Your API needs these secrets (query key and Cognitive Search resource name), to answer queries from your serverless API.

  3. Set the secrets for your serverless API in the Azure portal.

    Search is now connected from your API to your Cognitive Search index.

  4. Use your search-enabled website to find a book.

  5. Type slowly to see the suggestions based on what you enter.

  6. Filter the results to a different language.

  7. Select a book to see all its details.

Troubleshootingโ€‹

  • Make sure you used the admin key in the upload file.
  • Make sure you used the query key in the SWA config.

Next stepsโ€‹

This website provides basic search functionality for books. Go beyond the basics with:

This is just one of many samples provided in the Azure for JavaScript Developers page. Explore the Static Web Apps section and explore other Azure services you can integrated into your modern web app!