• Stars
    star
    338
  • Rank 124,931 (Top 3 %)
  • Language
    JavaScript
  • License
    MIT License
  • Created almost 10 years ago
  • Updated over 8 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Meteor.js - Webix UI integration

Meteor.js - Webix UI integration

This is work in progress on integrating Meteor.js, the best full-stack JavaScript framework (see why) and Webix, arguably the best UI widgets library (see an extensive comparison on StackOverflow).

Stay tuned by clicking Watch/Star on GitHub.

Webix standalone admin app demo

Webix admin app demo screenshot

Meteor-Webix Demo

Usage

Get started by adding the webix:webix package and a skin. For example, to add the default skin:

meteor add webix:webix
meteor add webix:skin-flat

If you use Font Awesome icons, or have sortable tables or other UI components that need Font Awesome icons, install Font Awesome as well:

meteor add fortawesome:fontawesome

Use Meteor collections as usual and simply specify webix.proxy('meteor', Collection|Cursor) for the url and save properties of the component:

Movies = new Mongo.Collection('movies');

webix.ui({
  view: 'datatable',
  autoconfig: true,
  editable: true,
  url:  webix.proxy('meteor', Movies.find()),
  save: webix.proxy('meteor', Movies)
});

Learn more

What works

  • package tests (font loading via skins, visual check)
  • load and save data to/from reactive DataTable, List, and other widgets backed by linear data structures

Needs testing

  • paging
  • dynamic data loading
  • hierarchical widgets (Tree, TreeTable)

TODO

  • clean up and merge the disparate Webix repos
  • map nested objects onto Webix forms (#10)
  • client-side error messages on failed server operations via Collection.deny
  • review
    • Webix wrapper for Meteor/Blaze reactive templates
    • routing
  • persist order of List/DataTable elements reordered via drag-and-drop (similar to rubaxa:sortable)
  • reactive Multiview, similar to templates:tabs

Licensing

Meteor package author: Dan Dascalescu (@dandv)

Acknowledgments: the Webix team, and especially Maksim Kozhukh (@mkozhukh) - the developers of the webix-meteor-data adapter.

Webix is (C) 2013-2015 XB Software and is available under commercial and GPLv3 licenses. A license exemption for non-GPL software is being worked on.

This Webix package for Meteor is published under the MIT license.

The MIT License (MIT)

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

More Repositories

1

instagram-clone

Web/Android/iOS app to share photos on Google Maps in < 300 lines of code. Features REST API, shake to undo, OAuth login etc.
JavaScript
107
star
2

convert-chrome-cookies-to-netscape-format

Convert the cookies from Chrome's Application -> Storage -> Cookies, into the Netscape format accepted by youtube-dl
JavaScript
98
star
3

typescript-modern-project

TypeScript+ESLint+Jest project template to import modules without extension, and modules with default exports that use node built-ins
TypeScript
41
star
4

meteor-jquery-rateit

DEPRECATED: RateIt jQuery (star) rating plugin. Meteor can use it directly from npm now.
JavaScript
35
star
5

meteor-http-more

Make HTTP calls to remote servers, passing any extra options to the underlying backend
JavaScript
22
star
6

rate-limit

Meteor package to rate-limit a function by queuing up calls (instead of dropping them like throttle or debounce)
JavaScript
15
star
7

meteor-shake

Shake detection
JavaScript
9
star
8

discourse-post-process

Update/alter/modify/process Discourse posts, e.g. do search and replace, such as after a migration
JavaScript
6
star
9

behind-bars

One liner to ensure your script is sandboxed
TypeScript
4
star
10

meteor-photo-notes

Sample Meteor app showing cross-platform photo taking
JavaScript
4
star
11

local-iso-dt

Convert the most common types of dates into ISO8601-formatted YYYY-MM-DDTHH:MM:SS strings in the local timezone
TypeScript
3
star
12

gh-pages-symlink-fail

Trying to symlink index.html to dist/index.html
HTML
3
star
13

meteor-jquery-rateit-demo

A simple demo for the meteor jquery-rating package
2
star
14

shower-thoughts-weaviate

Weaviate Demo App - Shower thoughts
TypeScript
2
star
15

dandv

GitHub profile README repo
1
star
16

jest-parent-dir-transform

Jest bug - transform doesn't work on files in the parent dir
JavaScript
1
star
17

Report-Spammer-MyBB-plugin

MyBB plugin to detect and report spammers using stopforumspam.com
PHP
1
star
18

imagecapture

MOVED
JavaScript
1
star
19

firebase-db-web-offline

Firebase Realtime Database for web - offline capabilities demo
HTML
1
star
20

preact-react-md

Trying to use react-md to Preact
JavaScript
1
star
21

lib-does-not-provide-export-foo

Misleading Node error
JavaScript
1
star
22

graphql-modules-context-test

https://github.com/Urigo/graphql-modules/issues/1078
TypeScript
1
star
23

skybreak

Skybreak, an ultra-simple, database-everywhere, data-on-the-wire, pure-Javascript web framework
JavaScript
1
star
24

es-module-example-mjs

ES module (.mjs) that can be used natively from node 8.5.0+, without transpilers
1
star
25

meteor-caret-position

Caret position in pixels for <input type="text"> and textarea elements
JavaScript
1
star