universe:accounts-ui

v0.4.1Published 6 years ago

This package has not had recent updates. Please investigate it's current state before committing to using it in your project.

Universe Accounts UI

A replacement for accounts-ui designed to work in Universe ecosystem: Modules, React and Semantic UI.

Installation

meteor add universe:accounts-ui
  • This package assumes that you're using React

  • This package uses Semantic UI styling classes, but you have to add styles on your own, e.g.

    • meteor add semantic:ui
  • Login options will show based on installed packages and you need to add them manually, e.g.

    • meteor add accounts-password accounts-facebook ...

Usage

  • You need to set up own routes
  • Place accounts-ui components where you wish to render forms

Basic usage could look like:

import {ComboBox} from 'meteor/universe:accounts-ui';

Router.route('/login', {
    name: 'login',
    action () {
        mount(Layout, {
            content: <ComboBox />
        });
    }
});

Available components

  • LoginBox - simple login form
  • RegisterBox - simple register form
  • ComboBox - both above forms combined into one
  • ResetPasswordBox - password reset form
  • EnrollmentBox - password init form

Configuration

No config yet, but will have similar configuration to accounts-ui.

Know issues

  • Has UI for password reset, but don't provide server-side functionality yet.
  • You need to set ServiceConfiguration options for external services on your own, no forms yet

Examples

EnrollmentBox

1import {EnrollmentBox} from 'meteor/universe:accounts-ui';
2
3Accounts.onEnrollmentLink((token, done) => {
4    Meteor.setTimeout(() => { // to mount after FlowRouter (you can also use Accounts.urls.enrollAccount)
5        const onComplete = () => {
6            done();
7            FlowRouter.go('/');
8        };
9        mount(MainLayout, {
10            content: <EnrollmentBox token={token} onComplete={onComplete} />
11        });
12    }, 100);
13});```