Moostrap 1.1.2.1

Moostrap offers the initialization function of large-scale application from middle-scale.
Every one initialization processing is performed and it secures that initialization of application is ensured.

Moostrap package



Details

Author
Noritaka Horio
Current version
1.1.2.1
GitHub
holyshared/Moostrap
Downloads
9188
Category
Utilities
Tags
Report
GitHub Issues

Releases


Dependencies

  • _self_/_current_:
    • Core/Core
    • Core/Object
    • Core/Type
    • Core/Options
    • Core/Events
    • Moostrap.Executer.Executer
    • Moostrap.Module
    • Moostrap.Executer

How to use

1. Creation of an initialization module

In order to use Moostrap, an initialization module is created first.
Using Moostrap.Module, initialization processing is registered and it goes.

Two or more registration is possible for initialization processing.

The option at the time of execution and the processing to perform are specified.
When it succeeds in processing, success is performed, and failure is performed when it fails.

moostrap.js

(function(){

    var Bootstrapper = this.Bootstrapper = new Moostrap.Module();

    //Initialization processing is registered by the name of **bootstrapA**. 
    //A basic setup of application is performed.
    Bootstrapper.register('bootstrapA', {

        title: 'bootstrapA',

        configuration: {
            name: 'bootstrap',
            description: 'bootstrap description'
        },

        handler: function(app, opts){

            try {
                app.setName(opts.name)
                    .setDescription(opts.description);
            } catch(exception) {
                this.failure();
            }
            this.success();

        }

    });

    //Initialization processing is registered by the name of **bootstrapB**. 
    //The URL list of pictures is acquired using Ajax. 
    Bootstrapper.register('bootstrapB', {

        title: 'bootstrapB',

        configuration: {
            url: 'http://example.com/images/'
        },

        handler: function(app, opts){

            var loader = new Request.JSON({
                url: opts.url,
                onSuccess: function(response){

                    app.setImages(response.images);

                    this.success();
                },
                onFailture: function(xhr){
                    this.failure();
                }
            });
            loader.send();

        }

    });

}());

2. An initialization module is used.

Application is initialized using the created module. An onSuccess event will be generated if all initialization is performed.
If processing goes wrong in the middle of initialization processing, processing is interrupted and execution of application is stopped.

applicaton.js

(function(module){

    var application = {

        start: function(){

            //do something

        },

        abort: function(){

            //do something

        },

        run: function(){

            var app = this;
            var bootstrapper = new Moostrap('sync', module, {
                //A setup of an initialization module is specified.
                //A setup here carries out the override of the default setup.
                configurations: {

                    //The override of the setup of bootstrapA is carried out.
                    bootstrapA: {
                        name: 'Hello world',
                        description: 'My first application'
                    },

                    //The override of the setup of bootstrapB is carried out.
                    bootstrapB: {
                        url: 'http://helloworld.com/images/'
                    }
                },
                onSuccess: app.start,
                onFailture: app.abort
            });

            //Application is started.
            bootstrapper.execute(app);

        }

    };

    application.run();

}(Bootstrapper));

Initialization Pattern

Synchronization

The initialization processing using Moostrap.Executer.Sync performs processings in order one by one.
Initialization processing is performed whenever one processing is completed.

Moostrap.Executer.Sync

The method of building

packager build Moostrap/Moostrap.Executer.Sync +use-only Moostrap > moostrap-sync.js

Asynchronous

The initialization processing using Moostrap.Executer.Async performs processings in order one by one.
A synchronization is not taken at this time.

Moostrap.Executer.Async

The method of building

packager build Moostrap/Moostrap.Executer.Async +use-only Moostrap > moostrap-async.js


Screenshots


Discuss

A note on comments here: These comments are moderated. No comments will show up until they are approved. Comments that are not productive (i.e. inflammatory, rude, etc) will not be approved.

Found a bug in this plugin? Please report it this repository's Github Issues.

blog comments powered by Disqus