Steem Developer logo

Steem Developer Portal

JS: Search Tags

By the end of this tutorial you should know how to run a search for trending tags

Full, runnable src of Search Tags can be downloaded as part of the JS tutorials repository.

This tutorial runs on the main Steem blockchain.

Intro

This tutorial will show the method of capturing a queried tag name and matching it to the steem database. We are using the call function provided by the dsteem library to pull tags from the steem blockchain. A simple HTML interface is used to both capture the string query as well as display the completed search.

steps

  1. Configure connection Configuration of dsteem to use the proper connection and network.
  2. Search input Collecting the relevant search criteria
  3. Run Search Running the search on the blockchain
  4. Output Displaying the results of the search query

1. Configure connection

Below we have dsteem pointing to the production network with the proper chainId, addressPrefix, and endpoint. There is a public/app.js file which holds the Javascript segment of this tutorial. In the first few lines we define the configured library and packages:

const dsteem = require('dsteem');
let opts = {};
//connect to production server
opts.addressPrefix = 'STM';
opts.chainId =
    '0000000000000000000000000000000000000000000000000000000000000000';
//connect to server which is connected to the network/production
const client = new dsteem.Client('https://api.steemit.com');

2. Search input

Collecting of the search criteria happens via an HTML input. The form can be found in the index.html file. The values are pulled from that screen with the below:

const max = 10;
window.submitTag = async () => {
    const tagSearch = document.getElementById("tagName").value;

3. Run Search

In order to access the blockchain to run the search a call function is used with the search field and maximum list items as parameters.

const _tags = await client.database.call('get_trending_tags',[tagSearch, max]);

The result of the search is an array of tags along with their respective vital data like comments, payouts, etc.

4. Output

Due to the output from the call function being an array, we can’t use a simple post function to display the tags. The specific fields within the array needs to be selected and then displayed.

console.log('tags: ', _tags);
var posts = [];
_tags.forEach(post => {
    posts.push(
        `<div class="list-group-item"><h5 class="list-group-item-heading">${
            post.name
        }</h5></div>`
    );
});
//disply list of tags with line breaks
document.getElementById('tagList').innerHTML = posts.join('<br>');

To run this tutorial

  1. clone this repo
  2. cd tutorials/16_search_tags
  3. npm i
  4. npm run dev-server or npm run start
  5. After a few moments, the server should be running at http://localhost:3000/