GithubHelp home page GithubHelp logo

hhy5277 / vue-focus Goto Github PK

View Code? Open in Web Editor NEW

This project forked from simplesmiler/vue-focus

0.0 2.0 0.0 23 KB

A reusable focus directive for reusable Vue.js components

License: MIT License

JavaScript 100.00%

vue-focus's Introduction

vue-focus

A reusable focus directive for reusable Vue.js components

npm version

Overview

It can be tricky to manage input focus. You always have to fall back to accessing DOM elements and calling .focus or .blur on them.

Well not anymore. vue-focus lets you manage focus from the safety of your view model.

Check out the examples, read the docs or file an issue.

Use cases

  • Focus the field when the modal windows appears
  • Track the focus to show a hint for the focused field
  • Move between fields with cursor keys
  • Implement custom focus-related controls (e.g labels)

Requirements

  • vue: ^2.0.0

If you need a version for Vue 1, try [email protected].

Install

From npm:

$ npm install vue-focus --save

From CDN:

<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.1.0/vue-focus.js"></script>
<!-- OR -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue-focus/2.1.0/vue-focus.min.js"></script>

API

focus

A directive that binds focus to the expression in a one-way manner, so that the element receives focus when the expression is truthy and loses focus when the expression is falsy.

import { focus } from 'vue-focus';

export default {
  directives: { focus: focus },
  template: '<input type="text" v-focus="focused" @focus="focused = true" @blur="focused = false">',
  data: function() {
    return {
      focused: false,
    };
  },
};

NOTE: As opposed to 1.x, in Vue 2.0, directives are updated every time the host component rerenders, not just when the directive expression chages. Somethimes this may be undesirable, especially for the "autofocus" use case. If you want to mimic the 1.x behavior, then add the .lazy modifier to the directive, e.g. v-focus.lazy="true".

mixin

A mixin that makes the v-focus directive available to the component under the default name.

import { mixin as focusMixin }  from 'vue-focus';

export default {
  mixins: [ focusMixin ],
  template: '<input type="text" v-focus="focused" @focus="focused = true" @blur="focused = false">',
  data: function() {
    return {
      focused: false,
    };
  },
};

Caveats

  1. Although you can write an input that gains focus immediately after loosing it, this is not recommended, as two such inputs will fall into infinite recursion and freeze the browser.

Notes

Form elements are not the only elements that are able to receive focus. The list also includes links, elements with tabindex attribute set and elements with contentEditable set to true.

License

MIT

vue-focus's People

Contributors

simplesmiler avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.