Skip to content
Code-Schnipsel Gruppen Projekte
AreaWindow.js 2,79 KiB
Newer Older
Henning Leutz's avatar
Henning Leutz committed

/**
 * AreaWindow Control
 * List of the areas which are available
 *
Henning Leutz's avatar
Henning Leutz committed
 * @module package/quiqqer/bricks/bin/AreaWindow
Henning Leutz's avatar
Henning Leutz committed
 * @author www.pcsg.de (Henning Leutz)
 *
 * @event onSubmit [ this, areas ]
 */

Henning Leutz's avatar
Henning Leutz committed
define('package/quiqqer/bricks/bin/AreaWindow', [
Henning Leutz's avatar
Henning Leutz committed

    'qui/QUI',
    'qui/controls/windows/Confirm',
Henning Leutz's avatar
Henning Leutz committed
    'package/quiqqer/bricks/bin/Area',
Henning Leutz's avatar
Henning Leutz committed
    'Ajax',
    'Locale'

], function(QUI, QUIConfirm, Area, Ajax, QUILocale)
{
    "use strict";

    return new Class({

        Extends : QUIConfirm,
Henning Leutz's avatar
Henning Leutz committed
        Type    : 'package/quiqqer/bricks/bin/AreaWindow',
Henning Leutz's avatar
Henning Leutz committed

        Binds : [
            '$onOpen'
        ],

        options : {
Henning Leutz's avatar
Henning Leutz committed
            title     : 'Projekt Brickbereiche',
            projectName : false,
            projectLang : false,
Henning Leutz's avatar
Henning Leutz committed
            maxHeight : 500,
            maxWidth  : 400
        },

        initialize : function(options)
        {
            this.parent( options );

            this.addEvents({
                onOpen : this.$onOpen
            });
        },

        /**
         * event : on open
         */
        $onOpen : function()
        {
            var self = this;

            this.Loader.show();

            this.getList(function(result)
            {
                var i, len, desc, title;
                var Content = self.getContent();

                for ( i = 0, len = result.length; i < len; i++ )
                {
                    title = result[ i ].title;
                    desc  = result[ i ].description;

                    new Area({
                        title       : QUILocale.get( title.group, title['var'] ),
                        description : QUILocale.get( desc.group, desc['var'] ),
                        area        : result[ i ].name
                    }).inject( Content );
                }

                self.Loader.hide();
            });
        },

        /**
         * Return the areas of the project
         *
         * @param {Function} callback
         */
        getList : function(callback)
        {
Henning Leutz's avatar
Henning Leutz committed
            Ajax.get('package_quiqqer_bricks_ajax_project_getAreas', callback, {
                'package' : 'quiqqer/brick',
Henning Leutz's avatar
Henning Leutz committed
                project   : JSON.encode({
                    name : this.getAttribute( 'projectName' ),
                    lang : this.getAttribute( 'projectLang' )
Henning Leutz's avatar
Henning Leutz committed
                })
            });
        },

        /**
         * Submit the window
         */
        submit : function()
        {
            var Content = this.getContent();

            var areas = Content.getElements(
Henning Leutz's avatar
Henning Leutz committed
                '.quiqqer-bricks-area-selected'
Henning Leutz's avatar
Henning Leutz committed
            ).map(function(Elm) {
                return Elm.get( 'data-area' );
            });

            this.fireEvent( 'submit', [ this, areas ] );

            if ( this.getAttribute( 'autoclose' ) ) {
                this.close();
            }
        }
    });
});