0.0.6 • Published 9 months ago

@leyton-techlab/vue-input-highlighter v0.0.6

Weekly downloads
-
License
-
Repository
github
Last release
9 months ago

Vue Input Highlighter

Component that allows content highlighting within an input field based on specified regular expressions (regexes).

It enhances user experience by providing visual feedback about specified patterns recognized and improves the interaction the user have with the input.

Table of contents

Installation

Using npm :

$ npm i @leyton-techlab/vue-input-highlighter

Using yarn :

$ yarn add @leyton-techlab/vue-input-highlighter

Imports

Register the component globally :

inside main.(js/ts)

    import InputHighlighter from '@leyton-techlab/vue-input-highlighter';
    import '@leyton-techlab/vue-input-highlighter/style.css';

    const app = createApp(App)

    app.component("InputHighlighter", InputHighlighter);

    app.mount('#app')

Import within the scope of a component

Script Setup

  <script setup>

    import InputHighlighter from '@leyton-techlab/vue-input-highlighter';
    import '@leyton-techlab/vue-input-highlighter/style.css';

    import { ref } from 'vue';

    const inputValue = ref('');
  
  </script>

  <template>

      <input-highlighter
          v-model="inputValue"
      />
  
  </template>

Option Api

  <script>
      import InputHighlighter from 'vue-input-highlighter';
      import 'vue-input-highlighter/style.css';

      export default {
          data() {
              return {
                  inputValue: ''
          },
          components: {
              InputHighlighter
          }
      }
  </script>

  <template>

      <input-highlighter
          v-model="inputValue"
      />

  </template>

Usage example

Please refer to the following link content as usage example : codesandbox

How it works

The component is based on a 'content editable' div that replicates the behavior of an input tag.

As the user inputs content, the component evaluates the div's text and analyzes it using regular expressions (regex).

Any fragment that matches the regex is encapsulated within an HTML tag, with the default being \<strong> (or as specified) for which the relevant styles are then applied.

Use Cases

Use cases example :

  • Highlight search operators (example : and, or, not, ") inside a search bar

  • Highlight id like entries (ex: company number, salesforce id, random code)

  • Highlight business specific keyword

    • Protocols : http/https

    • Language syntax : select, from, where

    • Auth methods : Basic, Bearer

Props

List of component props :

PropsDescription
modelValueallow v-model behavior for the component
rulesarray of rules as composed object defined in more details in the next table
placeholderstring value displayed when input is empty as a placeholder for explanation

List of component "rules" props sub-elements :

Sub-elementDescription
regexpattern to be matched
stylestring value to be mapped inside the style attribute of the matched element tag
classstring value to be mapped inside the class attribute of the matched element tag
tagtag used when wrapping the matched element

Events

List of component custom events

EventsDescription
highlightfires whenever one or multiple highlights are matched. return list of newly matched text.
highlightsfires at each input. return list of all matched text by the input.

Contribution

Every improvement of the package is welcome, just fork the project make the necessary changes and create a pull request.

If you want to contact me (@GAliNor) here is a link to my linkedin profile

Acknowledgments

Many thanks to :

for the reviews and advice

0.0.6

9 months ago

0.0.5

9 months ago

0.0.4

9 months ago

0.0.3

9 months ago

0.0.2

9 months ago

0.0.1

9 months ago