2 Star 0 Fork 0

mirrors_WebReflection/interface

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
贡献代码
同步代码
取消
提示: 由于 Git 不支持空文件夾,创建文件夹后会生成空的 .keep 文件
Loading...
README
ISC

interface Build Status Coverage Status

Simple interfaces for modern JavaScript.

npm -i @webreflection/interface

API

There are two functions usable through Object or any Function.prototype:

  • Object.interface([iFace, ...iFace, ]{object: 'literal'}) to defines left to right interfaces properties on top of the newly created interface
  • Object.implements(iFace[, ...iFace]) to create a new object that implements all interfaces (still left to right)

Both methods can be also used to define classes:

  • Function.interface([iFace, ...iFace, ]class {}) to defines left to right classes implementing the optional list of previous interfaces as parameters
  • class extends AnyClass.implements(iFace[, ...iFace]) to create a new intermediate class that implements all interfaces (still left to right)

Peculiarities

  • all interfaces properties and symbols are forced as non enumerable
  • all interfaces are created through the same internal class with a null object as prototype

Last point means that objects interfaces do not have toString methods or constructors. These are indeed meant to be used as interfaces only, not as generic objects.

Example

// Function.prototype polluted, deal with it!
require('@webreflection/interface');

// an interface is just an object
// carrying some definition that can be implemented
// through other objects or classes
const EventListener = Object.interface({
  handleEvent(e) { this['on' + e.type](e); }
});

// but it can be defined through a class too
// in such case you can even new EventListener
// or directly extends EventListener
const EventListener = Function.interface(class {
  handleEvent(e) { this['on' + e.type](e); }
});

// a simple clicker class (it could directly extends EventListener too)
class Clicker {
  constructor() { super(); this.clicks = 0; }
  onclick(e) {
    e.preventDefault();
    console.log(`You clicked me ${++this.clicks} times`);
  }
}

// a BasicClicker that extends Clicker and implements EventListener
class BasicClicker extends Clicker.implements(EventListener) {
  constructor(node) {
    super();
    node.addEventListener('click', this);
  }
}

new BasicClicker(document.documentElement);
ISC License Copyright (c) 2017, Andrea Giammarchi, @WebReflection Permission to use, copy, modify, and/or distribute this software for any purpose with or without fee is hereby granted, provided that the above copyright notice and this permission notice appear in all copies. THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.

简介

Simple interfaces for modern JavaScript. 展开 收起
README
ISC
取消

发行版

暂无发行版

贡献者

全部

近期动态

不能加载更多了
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/mirrors_WebReflection/interface.git
git@gitee.com:mirrors_WebReflection/interface.git
mirrors_WebReflection
interface
interface
master

搜索帮助