Use Vue3+Vant component to implement App search history function (sample code)

Use Vue3+Vant component to implement App search history function (sample code)

I am currently developing a new app project. This is also my first time developing an app. After a period of research and investigation by the team, we decided to use the Vue3+Vant front-end component model for development. We have used Vue2 for several projects, so we decided to try using Vue3 for front-end development this time.
I just started to be responsible for the development of the search function, and there was a demand for historical search records. At first, I thought that the storage information of this record would also be placed in a database table, but after some investigation, I found that this was not the case, and it had to be stored locally. However, the methods on the Internet did not completely solve the problem. After some attempts, I finally got it done. Without further ado, here are the results.
Initialize the display of search history

Initialize bu and do not display historical search records

Press Enter to search and enter the details page

Press Enter to search and enter the details page

History Page

Press Enter to search and load the history information.

Clear History

Clear History

First, create a js file. This js file mainly includes the functions of adding historical record information and deleting all historical record information.

export default {

  // Add search home page history query record addSearchHistory(state, payload) {
    // When the list contains the record, delete it const index = state.searchHistoryList.indexOf(payload);
    if (index > -1) {
      state.searchHistoryList.splice(index, 1);
    }
    state.searchHistoryList.unshift(payload);
    // The maximum number of records in the history record is 20 const count = state.searchHistoryList.length;
    state.searchHistoryList.splice(20, count);
  },

  // Clear the search history on the home page clearSearchHistory(state) {
    state.searchHistoryList = [];
  },
};

Vue Code Blocks

<template>
  <!-- Search Box -->
  <search-bar
    @searchClick="searchClick"
    :placeholderValue="state.placeholderValue"
    :searchVal="state.searchVal">
  </search-bar>
  <div class="search">

    <!-- Search History -->
    <div class="history" v-if="state.isShowHistory">
      <span class="proHot">Search History</span>
      <span class="delHotSearch" @click="delHostClick">Clear History</span>

      <!-- Store historical record information-->
      <div class="searchBtn-div">
        <span v-for="(item, index) in state.historyList" :key="index" class="searchValBtn" >
        <van-button
          round
          size="small"
          @click="searchValClick(item)"
          >{{ item }}
        </van-button>
      </span>
      </div>
    </div>
  </div>
</template>

<script>
import {
  onMounted,
  reactive,
  getCurrentInstance,
} from 'vue';
import { Toast, Dialog } from 'vant';
import searchBar from '@/components/SearchBar.vue';
import { useRouter } from 'vue-router';
import { useStore } from 'vuex';

export default {

  components:
    searchBar,
  },

  setup() {
    const router = useRouter();
    const store = useStore();
    const { proxy } = getCurrentInstance();
    const state = reactive({
      isShowHistory: '', // Whether to display history searchVal: '', // Search keyword placeholderValue: 'Search for products/information/standards/ingredients/enterprises',
      historyList: [], // historical search data});


    // Enter to search const searchClick = (val) => {
      store.commit('addSearchHistory', val);
      // router.push({ path: '/search-detail', query: { searchVal: val } });
    };

    // Clear history const delHostClick = async () => {
      Dialog.confirm({
        message: 'Are you sure you want to delete your search history? ',
      }).then(() => {
        store.commit('clearSearchHistory', store);
        state.isShowHistory = false;
        Toast({
          message: 'Deleted successfully',
          position: 'bottom',
        });
      });
    };
	
	// Initialize and obtain historical search record information onMounted(async () => {
      // Get historical search information state.historyList = store.state.searchHistoryList;
      // Determine whether to initialize the display history search if (state.historyList.length > 0) {
        state.isShowHistory = true;
      } else {
        state.isShowHistory = false;
      }
    });

    return {
      state,
      searchClick,
      delHostClick,
    };
  },
};
</script>

<style lang="less" scoped>
</style>

If you copy and paste the Vue code directly, you may not be able to use it directly, because a lot of business codes have been deleted, and the remaining ones are mainly the codes for historical search records. There are three main focuses:

Introducing useStore

import { useStore } from 'vuex';

const store = useStore();

Initialize search history

// Initialize and obtain historical search record information // Each time this page is loaded, this method will be called first to get the latest information onMounted(async () => {
      // Get historical search information state.historyList = store.state.searchHistoryList;
      // Determine whether to initialize the display history search if (state.historyList.length > 0) {
        state.isShowHistory = true;
      } else {
        state.isShowHistory = false;
      }
    })

The search box triggers a search event and stores the search information in the Store

// The child component emits an event, and the parent component calls const searchClick = (val) => {
    	// Put the search value into the history	
      store.commit('addSearchHistory', val);
      // Route redirection can be ignored // router.push({ path: '/search-detail', query: { searchVal: val } });
    };

Clear History

// Clear history const delHostClick = async () => {
      Dialog.confirm({
        message: 'Are you sure you want to delete your search history? ',
      }).then(() => {
      	// Clear history informationstore.commit('clearSearchHistory', store);
        state.isShowHistory = false;
        Toast({
          message: 'Deleted successfully',
          position: 'bottom',
        });
      });
    };

The above is the details of using Vue3+Vant component to implement the App search history function. For more information about vue search history, please pay attention to other related articles on 123WORDPRESS.COM!

You may also be interested in:
  • Detailed explanation of how to use the Vue license plate input component
  • Vue elementui implements the example code of the search bar public component encapsulation
  • Detailed explanation of the encapsulation and application of Vue2.x general condition search components
  • Vue component practice searchable drop-down box function
  • Implementation code of Vue drop-down menu component (including search)
  • Vue.js project el-input component listens to the enter key to implement the search function example
  • Implementing a custom component for searchable drop-down box based on Vue
  • Vue component implements searchable drop-down box extension
  • Detailed explanation of the use of Vue2.0 multi-condition search component
  • Detailed explanation of how to use the Vue license plate search component

<<:  Open the Windows server port (take port 8080 as an example)

>>:  VMware 15.5 version installation Windows_Server_2008_R2 system tutorial diagram

Recommend

Tutorial on using iostat command in Linux

Preface It is said that if the people doing opera...

CentOs7 64-bit MySQL 5.6.40 source code installation process

1. Install the dependency packages first to avoid...

js to implement file upload style details

Table of contents 1. Overview 2. Parameters for c...

Detailed explanation of the loop form item example in Vue

Sometimes we may encounter such a requirement, th...

MySQL 5.7.17 Compressed Version Installation Notes

This article shares the installation steps of MyS...

MySQL Optimization: InnoDB Optimization

Study plans are easily interrupted and difficult ...

Detailed explanation of MySQL database triggers

Table of contents 1 Introduction 2 Trigger Introd...

Details on macrotasks and microtasks in JavaScript

Table of contents 1. What are microtasks? 2. What...

Web design must have purpose, ideas, thoughts and persistence

<br />Introduction: This idea came to me whe...

Design Story: The Security Guard Who Can't Remember License Plates

<br />In order to manage the vehicles enteri...

CentOS 8 custom directory installation nginx (tutorial details)

1. Install tools and libraries # PCRE is a Perl l...

Using HTML web page examples to explain the meaning of the head area code

Use examples to familiarize yourself with the mean...

MySQL series 6 users and authorization

Table of contents Tutorial Series 1. User Managem...

About the configuration problem of MyBatis connecting to MySql8.0 version

When learning mybatis, I encountered an error, th...

Several ways to implement image adaptive container with CSS (summary)

There is often a scenario where the image needs t...