Laverna/laverna

View on GitHub
app/scripts/apps/notebooks/form/tag/app.js

Summary

Maintainability
B
6 hrs
Test Coverage
/**
 * Copyright (C) 2015 Laverna project Authors.
 * 
 * This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
 */
/* global define */
define([
    'underscore',
    'marionette',
    'backbone.radio',
    'app',
    'apps/notebooks/form/tag/controller'
], function(_, Marionette, Radio, App, Controller) {
    'use strict';

    /**
     * Tag form module.
     *
     * Replies to requests on channel `appNotebooks`
     * 1. request: `form:stop` - stops itself.
     */
    var Form = App.module('AppNotebooks.Form.Tag', {startWithParent: false});

    Form.on('before:start', function(options) {
        Form.controller = new Controller(options);

        Radio.reply('appNotebooks', 'form:stop', Form.stop, Form);
    });

    Form.on('before:stop', function() {
        Radio.stopReplying('appNotebooks', 'form:stop');

        Form.controller.destroy();
        Form.controller = null;
    });

    return Form;

});