Code Monkey home page Code Monkey logo

segel's Introduction

Segel

Vue component for creating Gantt-like timeline charts for bookings.

Downloads Version License

Installation

Install using NPM:

npm install segel

Install using Yarn:

yarn add segel

Also available for use in browser through unpkg:

Usage

Basic usage:

<body>
  <div id="app">
    <Segel
      v-bind:resources="resources"
      v-bind:bookings="bookings"
      v-on:bookings-create="handleCreate"
      v-on:bookings-update="handleUpdate"
      v-on:bookings-delete="handleDelete"
    ></Segel>
  </div>

  <script src="https://unpkg.com/vue"></script>
  <script src="https://unpkg.com/interactjs"></script>
  <script src="https://unpkg.com/segel"></script>
  <script>
    let today = new Date();

    let app = new Vue({
      el: "#app",
      data: {
        resources: [{ id: 1, name: "Conference Room A" }],
        bookings: [
          {
            id: 1,
            resource: 1,
            start: today.setHours(8, 0, 0, 0) / 1000,
            end: today.setHours(10, 0, 0, 0) / 1000
          },
          {
            id: 2,
            resource: 1,
            start: today.setHours(11, 0, 0, 0) / 1000,
            end: today.setHours(12, 0, 0, 0) / 1000
          },
          {
            id: 3,
            resource: 1,
            start: today.setHours(13, 0, 0, 0) / 1000,
            end: today.setHours(17, 0, 0, 0) / 1000
          }
        ],
        bookingID: 10
      },
      methods: {
        handleCreate: function(booking) {
          // Give booking a unique ID and append to array.
          booking.id = ++this.bookingID;
          this.bookings.push(booking);
        },
        handleUpdate: function(booking) {
          // Find index of updated booking.
          let index = this.bookings.findIndex(function(stored) {
            return stored.id == booking.id;
          });

          this.bookings.splice(index, 1, booking);
        },
        handleDelete: function(booking) {
          // Find index of deleted booking.
          let index = this.bookings.findIndex(function(stored) {
            return stored.id == booking.id;
          });

          // Remove booking from array.
          this.bookings.splice(index, 1);
        }
      }
    });
  </script>
</body>

License

Segel is released under the MIT license.

segel's People

Contributors

dependabot[bot] avatar mikaeljorhult avatar muser83 avatar

Stargazers

 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.