npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-focus-engine

v0.0.1

Published

a simple TV focus engine plugin for vue. Based on alibaba's FocusEngine.js

Downloads

9

Readme

vue-focus-engine

一个基于阿里FocusEngine.js的vue插件,用于实现电视端/OTT端单页面应用中的焦点管理。

关于FocusEngine

在使用插件之前,需要先了解原生FocusEngine.js的接口和规范。文档见Focus Engine(焦点引擎)介绍

如何使用

1.根节点/引擎实例 Vue.$focusengine

在Vue实例中可以通过 this.$focusengine 访问焦点引擎的实例,即根节点。

2.模块节点 this.$fenode

阅读过原生文档后应了解到,并不是所有的节点都是焦点组件。 在需要定义为容器组件的节点标签中,加上 v-femod 属性,即可被视为模块节点,每个模块节点可以单独重新渲染, 便于在dom发生改变时,如页面切换、异步请求数据后新增元素等,可以有针对性地重新渲染。

  <templet>
    <div v-femod fe-role="Switch">
    </div>
  </templet>

需要注意的是,v-femod 属性只能添加在vue组件的根元素上,插件只会通过判断vue实例是否存在该属性选择是否生成模块节点。 因此,如何合理地定义项目内的模块节点,有待在实际项目场景中做具体的安排。

每个模块节点会保存自身的widget组件节点信息,通过调用 this.$fenode 可以操作该widget的接口和事件。关于widget详情,请参见上文的引擎文档链接。

3.模块参数 this.$isFeNode

每个模块节点都拥有该属性,并且值为true,表明其为模块节点。