Coder Social home page Coder Social logo

rx-srv's Introduction

rx-srv

A reactive service provider for Vue2

Install

yarn add rx-srv -D

Usage

First, you should create a service

import RxService from 'rx-srv'

class UserService extends RxService {

  public userName: string = 'Tom'
  public userAge: number = 18

  public userAddress = {
    province: 'AnHui',
    city: 'ChiZhou'
  }

  constructor() {
    super('UserService');
    super.observe()
  }

  public rename(name: string) { this.userName = name }
  public growUp() { this.userAge ++ }
  public updateProvince(province: string) { this.userAddress.province = province }
  public updateCity(city: string) { this.userAddress.city = city }

}

const userService = new UserService()

export default userService

Finally, use it at page

<template>
  <div id="app">
    User Info:
    <div>Name: {{userService.userName}}</div>
    <div>Age:  {{userService.userAge}}</div>
    <div>Addr: {{userAddress}}</div>

    <div>
      <button @click="growUp">Grow Up</button>
    </div>
  </div>
</template>

<script lang="ts">
import { userService } from "@/service/user-service.ts";

export default {
  computed: {
    userAddress() {
      return `${userService.userAddress.province} - ${userService.userAddress.city}`
    }
  },
  methods: {
    growUp() {
      userService.growUp()
    }
  }
}

</script>

That is all, please have fun with rx-srv

Version Change Log

V1.0.3

๐ŸŽ‰ New Feature

  1. Support Watch API

Example:

@Service()
class UserService extends RxService {
  public userAge: number = 18

  constructor() {
    super();
    super.observe()
    
    this.watch(() => this.userAge, (val) => {
      console.warn('user age changed', val)
    })
  }
}

V1.0.5

๐ŸŽ‰ New Feature

  1. Support Event Emitter

Example:

// emit an event
userService.next('logged', payload)

// listen an event
userService.on('logged', () => {
  // do something after logged
})

// cancel an event
userService.off('logged')

// emit an event only once
userService.once('logged', payload)

โš’ Bug Fix

  1. Fix lower vue version error

rx-srv's People

Contributors

simo-an avatar

Watchers

 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.