1 define(function(require) {
5 var $ = require('libs/jquery'),
6 _ = require('libs/underscore'),
7 Backbone = require('libs/backbone'),
8 gutterBoxTemplate = require('libs/text!./gutterBox.html');
11 var GutterView = function(gutter) {
12 gutter.on('show', function(group) {
14 this.groupView.remove();
16 this.groupView = new GutterGroupView(this, group);
17 this.dom.append(this.groupView.dom);
18 this.groupView.dom.css({top: group.getOffsetHint()});
19 this.groupView.show();
21 this.dom = $('<div class="gutter"></div>');
25 var GutterGroupView = function(gutterView, group) {
26 this.gutterView = gutterView;
30 this.dom = $(gutterBoxTemplate);
32 this.dom.on('click', function() {
33 if(!this.dom.hasClass('focused')) {
34 var canvas = this.group.meta.canvas;
35 canvas.setCurrentElement(this.group.meta);
39 this.group.views.forEach(function(view) {
40 this.onViewAdded(view);
43 this.group.on('viewAdded', this.onViewAdded, this);
44 this.group.on('focusToggled', this.onFocusToggled, this);
46 $.extend(GutterGroupView.prototype, {
48 this.group.off('viewAdded', this.onViewAdded);
49 this.group.off('focusToggled', this.onFocusToggled);
52 onViewAdded: function(view) {
53 this.views.push(view);
54 this.dom.append(view.dom);
57 this.dom.addClass('focused');
58 this.views.forEach(function(view) {
59 if(view.onActivated) {
70 var ViewGroup = function(params, gutter, meta) {
74 this.view = $(gutterBoxTemplate);
77 $.extend(ViewGroup.prototype, Backbone.Events, {
78 getOffsetHint: function() {
79 return _.isFunction(this.params.offsetHint) ? this.params.offsetHint() : this.params.offsetHint;
81 addView: function(view) {
82 this.views.push(view);
83 this.trigger('viewAdded', view);
86 this.gutter.show(this);
91 var Gutter = function() {
94 _.extend(Gutter.prototype, Backbone.Events, {
95 createViewGroup: function(params, meta) {
96 return new ViewGroup(params, this, meta);
98 show: function(group) {
99 this.trigger('show', group);
108 GutterView: GutterView,
109 GutterGroupView: GutterGroupView