1.2.3 • Published 1 month ago

auto-typer-vue3 v1.2.3

Weekly downloads
-
License
MIT
Repository
github
Last release
1 month ago

Auto Typer - Vue3

A simple auto-typer, written in Vue3.

Screenshot(s)

Contents

Installation

Install Auto Typer Vue3 with npm

npm install auto-typer-vue3

Then import the module and css file into your Vue component (see usage/example below).

Usage/Example

Basic Example

<script setup>
import { AutoTyperVue } from "auto-typer-vue3";

let text = [
  'This is a demo.',
  'And this is another Demo!'
];
</script>

<template>
  <AutoTyperVue 
    componentTag="h1" 
    :text="text"
  />
</template>

<style scoped>
@import "auto-typer-vue3/dist/style.css";
</style>

Type out word, then stop

<script setup>
import { AutoTyperVue } from "auto-typer-vue3";
</script>

<template>
  <AutoTyperVue
    componentTag="h1"
    text="This will remain on the screen after being typed!"
    :repeat="false"
  />
</template>

<style scoped>
@import "auto-typer-vue3/dist/style.css";
</style>

Props

PropTypeDefaultDescriptionValidation
componentTagstring'span'The HTML tag that the element will be.Currently accepts any of the following: span, p, a, h* (where * is any number).
beginningWordstring''A string prepended to every text item.N/A.
writtenBeginningWordstring''A word that will be typed when the auto-typer begins, and then will stay there.N/A.
textstring \|array<string>''Either a string to be auto-typed, or an array of strings to be auto-typed.
startDelaynumber500Time (ms) before the auto-typer begins.Number >= 0.
betweenWordDelaynumber500Time (ms) before the next text string is typed.Number >= 0.
typingDelaynumber150Time (ms) between each character is typed (lower means faster typing).Number >= 0.
deletingDelaynumber100Time (ms) between each character is deleted after the text has been typed.Number >= 0.
waitBeforeDeleteDelaynumber500Time (ms) after the text has been typed before deleting it begins.Number >= 0.
startByDefaultbooltrueWhether to start the auto-typer by default. If set to false, the begin() method must be called manually.Number >= 0.
repeatbooltrueWhether to repeat the text once all of them have been typed.N/A.
removeAfterRepeatboolfalseIf repeat is false, whether to remove the final word.N/A.

Emits

  • finished - Emitted once the auto-typer has finished typing (only applicable if repeat is false).

Styling Customisation: changing the cursor styling

The cursor styling can be completely overridden, or certain parts can be altered by adding additional styles below the import of style.css, targetting the element .auto-typer-vue::after.

Example: Changing the cursor colour/opacity

Note: You may need to use !important to override the default styling if you use this approach.

<style scoped>
@import "auto-typer-vue3/dist/style.css";
.auto-typer-vue::after {
  border-color: rgb(0, 0, 0) !important;
  opacity: 1 !important;
}
</style>

You could also give an ID attribute to auto typer component, and then target the attribute. This helps if there is more than one on the page, and you want each to have different styling:

You will not need to use !important if you use this approach.

<script setup>
import { AutoTyperVue } from "auto-typer-vue3";
</script>

<template>
  <AutoTyperVue 
    componentTag="h1"
    id="main-auto-typer"
    :text="['This is a demo.', 'And this is another Demo!']"
  />
</template>

<style scoped>
@import "auto-typer-vue3/dist/style.css";
#main-auto-typer::after {
  border-color: rgb(0, 0, 0);
  opacity: 0.8;
}
</style>

Contributing

There is a folder playground inside this repository which can be used as a basis for development. Clone the repo and run:

  1. npm run dev:install
  2. npm run dev:run

To launch this folder with Vite.

The App.vue file can be modified to see changes in the browser, and navigating to /src/components/auto-typer-vue/AutoTyperVue.vue will update the changes on the browser for the Auto Typer.

To test the packaged build, run:

  1. npm install
  2. npm build:vite
  3. npm run dev:run-pack

This will run a dev server with the packaged version of auto-typer-vue3, instead of the normal one.

Future Plans

  • Add custom styling options the the cursor.
  • Handle whether to leave the final word on the screen once repeating has stopped.
  • Add a variable to allow a certain number of repeats, instead of just a boolean.
  • ...any other suggestions will be considered, please leave an issue if you have any feature requests!
1.2.3

1 month ago

1.2.2

10 months ago

1.2.0

11 months ago

1.2.1

11 months ago

1.1.3

1 year ago

1.1.2

1 year ago

1.1.1

2 years ago

1.0.2

2 years ago

1.1.0

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago