Coder Social home page Coder Social logo

vue-next-rx's Introduction

Vue-Next-Rx

vue_support rxjs

RxJS v6 intergration for Vue-next, base on Vue-Rx & Rxjs-hook.

Installation

yarn add rxjs vue-next-rx

Usage

useObservable

import { defineComponent } from 'vue';
import { useObservable } from 'vue-next-rx';
import { Subject } from 'rxjs';

const App = defineComponent(() => {
  const subject = new BehaviorSubject<number>(0);
  const { data } = useObservable(() => subject, 0);

  const clicked = (event: MouseEvent) => {
    subject.next(subject.value + 1);
  };

  return () => (
    <div>
      <button onClick={clicked}>click me</button>
      <div>subject count is {`${data.value}`}</div>
    </div>
  );
});

useEventCallback

import { defineComponent } from 'vue';
import { useEventCallback } from 'vue-next-rx';
import { Subject } from 'rxjs';

export const App = defineComponent(() => {
  const {callback, state} = useEventCallback<MouseEvent>((event$) => event$.pipe(
    map((value) => {
      return {
        x: value.clientX,
        y: value.clientY,
      };
    })
  ), {x: 0, y: 0});

  return () => (
    <div>
      <button onClick={callback}>click me</button>
      <div>subject count is {`${JSON.stringify(state.value)}`}</div>
    </div>
  );
});

vue-next-rx's People

Contributors

zcating avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Forkers

plightfield

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.