luca 0.6.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/.gitignore +5 -0
- data/Gemfile +17 -0
- data/Gemfile.lock +77 -0
- data/Guardfile +22 -0
- data/README.md +291 -0
- data/Rakefile +28 -0
- data/app.rb +46 -0
- data/assets/images/glyphicons-halflings-white.png +0 -0
- data/assets/images/glyphicons-halflings.png +0 -0
- data/assets/javascripts/dependencies/backbone-min.js +37 -0
- data/assets/javascripts/dependencies/backbone-query.min.js +1 -0
- data/assets/javascripts/dependencies/bootstrap.min.js +1 -0
- data/assets/javascripts/dependencies/jasmine-html.js +190 -0
- data/assets/javascripts/dependencies/jasmine.js +2476 -0
- data/assets/javascripts/dependencies/jquery.js +4 -0
- data/assets/javascripts/dependencies/modal.js +698 -0
- data/assets/javascripts/dependencies/modernizr.min.js +30 -0
- data/assets/javascripts/dependencies/prettify.js +28 -0
- data/assets/javascripts/dependencies/sinon.js +3469 -0
- data/assets/javascripts/dependencies/spin-min.js +2 -0
- data/assets/javascripts/dependencies/underscore-min.js +31 -0
- data/assets/javascripts/dependencies/underscore-string.min.js +14 -0
- data/assets/javascripts/dependencies.coffee +7 -0
- data/assets/javascripts/luca-ui-base.coffee +12 -0
- data/assets/javascripts/luca-ui-spec.coffee +2 -0
- data/assets/javascripts/luca-ui.coffee +3 -0
- data/assets/javascripts/sandbox/collections/sample.coffee +0 -0
- data/assets/javascripts/sandbox/config.coffee +7 -0
- data/assets/javascripts/sandbox/sandbox.coffee +16 -0
- data/assets/javascripts/sandbox/templates/features/collection_helpers.luca +33 -0
- data/assets/javascripts/sandbox/templates/features/form_demo_code.luca +48 -0
- data/assets/javascripts/sandbox/templates/features/grid_demo_code.luca +24 -0
- data/assets/javascripts/sandbox/templates/features/introduction.luca +11 -0
- data/assets/javascripts/sandbox/templates/features/view_helpers.luca +43 -0
- data/assets/javascripts/sandbox/templates/navigation.luca +8 -0
- data/assets/javascripts/sandbox/views/form_demo.coffee +47 -0
- data/assets/javascripts/sandbox/views/grid_demo.coffee +23 -0
- data/assets/javascripts/sandbox/views/pages/collection_events_sample.coffee +1 -0
- data/assets/javascripts/sandbox/views/pages/pages_controller.coffee +28 -0
- data/assets/javascripts/sandbox.coffee +4 -0
- data/assets/javascripts/spec-dependencies.coffee +4 -0
- data/assets/stylesheets/bootstrap-responsive.min.css +3 -0
- data/assets/stylesheets/bootstrap.min.css +610 -0
- data/assets/stylesheets/jasmine.css +166 -0
- data/assets/stylesheets/luca-ui-bootstrap.css +5 -0
- data/assets/stylesheets/luca-ui-spec.css +3 -0
- data/assets/stylesheets/luca-ui.css +3 -0
- data/assets/stylesheets/prettify.css +40 -0
- data/assets/stylesheets/sandbox/sandbox.scss +4 -0
- data/assets/stylesheets/sandbox.css +3 -0
- data/config.ru +11 -0
- data/lib/luca/command_line.rb +69 -0
- data/lib/luca/rails/engine.rb +12 -0
- data/lib/luca/rails/version.rb +6 -0
- data/lib/luca/rails.rb +9 -0
- data/lib/luca/template.rb +51 -0
- data/lib/luca/test_harness.rb +106 -0
- data/lib/luca.rb +1 -0
- data/lib/sprockets/luca_template.rb +49 -0
- data/lib/templates/spec_manifest_javascripts.erb +7 -0
- data/lib/templates/spec_manifest_stylesheets.erb +11 -0
- data/luca.gemspec +26 -0
- data/public/jasmine/index.html +26 -0
- data/public/sandbox/api.js +1 -0
- data/spec/components/application_spec.coffee +0 -0
- data/spec/components/collection_loader_view_spec.coffee +0 -0
- data/spec/components/controller_spec.coffee +0 -0
- data/spec/components/form_view_spec.coffee +13 -0
- data/spec/components/grid_view_spec.coffee +0 -0
- data/spec/components/record_manager_spec.coffee +0 -0
- data/spec/components/template_spec.coffee +0 -0
- data/spec/containers/card_view_spec.coffee +1 -0
- data/spec/containers/column_view_spec.coffee +0 -0
- data/spec/containers/modal_view_spec.coffee +0 -0
- data/spec/containers/panel_view_spec.coffee +0 -0
- data/spec/containers/split_view_spec.coffee +0 -0
- data/spec/containers/tab_view_spec.coffee +0 -0
- data/spec/containers/viewport_spec.coffee +0 -0
- data/spec/core/collection_spec.coffee +215 -0
- data/spec/core/container_spec.coffee +0 -0
- data/spec/core/field_spec.coffee +0 -0
- data/spec/core/observer_spec.coffee +0 -0
- data/spec/core/view_spec.coffee +87 -0
- data/spec/framework_spec.coffee +48 -0
- data/spec/helper.coffee +120 -0
- data/spec/managers/collection_manager_spec.coffee +95 -0
- data/spec/managers/socket_manager_spec.coffee +0 -0
- data/src/components/application.coffee +83 -0
- data/src/components/base_toolbar.coffee +16 -0
- data/src/components/collection_loader_view.coffee +37 -0
- data/src/components/controller.coffee +41 -0
- data/src/components/fields/button_field.coffee +40 -0
- data/src/components/fields/checkbox_field.coffee +41 -0
- data/src/components/fields/file_upload_field.coffee +15 -0
- data/src/components/fields/hidden_field.coffee +18 -0
- data/src/components/fields/select_field.coffee +100 -0
- data/src/components/fields/text_area_field.coffee +43 -0
- data/src/components/fields/text_field.coffee +42 -0
- data/src/components/fields/type_ahead_field.coffee +10 -0
- data/src/components/form_button_toolbar.coffee +26 -0
- data/src/components/form_view.coffee +205 -0
- data/src/components/grid_view.coffee +208 -0
- data/src/components/record_manager.coffee +215 -0
- data/src/components/router.coffee +34 -0
- data/src/components/template.coffee +19 -0
- data/src/containers/card_view.coffee +89 -0
- data/src/containers/column_view.coffee +48 -0
- data/src/containers/modal_view.coffee +85 -0
- data/src/containers/panel_view.coffee +24 -0
- data/src/containers/split_view.coffee +12 -0
- data/src/containers/tab_view.coffee +77 -0
- data/src/containers/viewport.coffee +16 -0
- data/src/core/collection.coffee +319 -0
- data/src/core/container.coffee +256 -0
- data/src/core/field.coffee +68 -0
- data/src/core/observer.coffee +17 -0
- data/src/core/view.coffee +190 -0
- data/src/framework.coffee +110 -0
- data/src/index.coffee +255 -0
- data/src/managers/collection_manager.coffee +168 -0
- data/src/managers/socket_manager.coffee +54 -0
- data/src/modules/deferrable.coffee +18 -0
- data/src/modules/local_storage.coffee +50 -0
- data/src/stylesheets/base.scss +78 -0
- data/src/stylesheets/components/form_view.scss +54 -0
- data/src/stylesheets/components/grid_view.scss +111 -0
- data/src/stylesheets/components/toolbar.scss +15 -0
- data/src/stylesheets/containers/container.scss +7 -0
- data/src/stylesheets/containers/modal_view.scss +0 -0
- data/src/stylesheets/containers/tab_view.scss +33 -0
- data/src/stylesheets/normalize.scss +430 -0
- data/src/templates/components/bootstrap_form_controls.luca +7 -0
- data/src/templates/components/collection_loader_view.luca +5 -0
- data/src/templates/components/form_view.luca +15 -0
- data/src/templates/components/grid_view.luca +9 -0
- data/src/templates/components/grid_view_empty_text.luca +3 -0
- data/src/templates/containers/basic.luca +1 -0
- data/src/templates/containers/tab_selector_container.luca +8 -0
- data/src/templates/containers/tab_view.luca +1 -0
- data/src/templates/containers/toolbar_wrapper.luca +1 -0
- data/src/templates/fields/button_field.luca +2 -0
- data/src/templates/fields/button_field_link.luca +5 -0
- data/src/templates/fields/checkbox_field.luca +9 -0
- data/src/templates/fields/file_upload_field.luca +8 -0
- data/src/templates/fields/hidden_field.luca +1 -0
- data/src/templates/fields/select_field.luca +7 -0
- data/src/templates/fields/text_area_field.luca +8 -0
- data/src/templates/fields/text_field.luca +13 -0
- data/src/templates/sample/contents.luca +1 -0
- data/src/templates/sample/welcome.luca +1 -0
- data/vendor/assets/images/glyphicons-halflings-white.png +0 -0
- data/vendor/assets/images/glyphicons-halflings.png +0 -0
- data/vendor/assets/javascripts/luca-spec-dependencies.js +6135 -0
- data/vendor/assets/javascripts/luca-ui-base.js +1527 -0
- data/vendor/assets/javascripts/luca-ui-spec.js +3654 -0
- data/vendor/assets/javascripts/luca-ui.js +2763 -0
- data/vendor/assets/luca-ui/base.css +85 -0
- data/vendor/assets/luca-ui/components/application.js +91 -0
- data/vendor/assets/luca-ui/components/base_toolbar.js +23 -0
- data/vendor/assets/luca-ui/components/controller.js +38 -0
- data/vendor/assets/luca-ui/components/fields/button_field.js +45 -0
- data/vendor/assets/luca-ui/components/fields/checkbox_field.js +43 -0
- data/vendor/assets/luca-ui/components/fields/file_upload_field.js +20 -0
- data/vendor/assets/luca-ui/components/fields/hidden_field.js +20 -0
- data/vendor/assets/luca-ui/components/fields/select_field.js +97 -0
- data/vendor/assets/luca-ui/components/fields/text_area_field.js +48 -0
- data/vendor/assets/luca-ui/components/fields/text_field.js +46 -0
- data/vendor/assets/luca-ui/components/fields/type_ahead_field.js +13 -0
- data/vendor/assets/luca-ui/components/form_button_toolbar.js +32 -0
- data/vendor/assets/luca-ui/components/form_view.css +32 -0
- data/vendor/assets/luca-ui/components/form_view.js +207 -0
- data/vendor/assets/luca-ui/components/grid_view.css +76 -0
- data/vendor/assets/luca-ui/components/grid_view.js +202 -0
- data/vendor/assets/luca-ui/components/record_manager.js +207 -0
- data/vendor/assets/luca-ui/components/router.js +36 -0
- data/vendor/assets/luca-ui/components/template.js +26 -0
- data/vendor/assets/luca-ui/components/toolbar.css +11 -0
- data/vendor/assets/luca-ui/containers/card_view.js +98 -0
- data/vendor/assets/luca-ui/containers/column_view.js +52 -0
- data/vendor/assets/luca-ui/containers/container.css +3 -0
- data/vendor/assets/luca-ui/containers/modal_view.css +0 -0
- data/vendor/assets/luca-ui/containers/modal_view.js +87 -0
- data/vendor/assets/luca-ui/containers/panel_view.js +34 -0
- data/vendor/assets/luca-ui/containers/split_view.js +13 -0
- data/vendor/assets/luca-ui/containers/tab_view.css +16 -0
- data/vendor/assets/luca-ui/containers/tab_view.js +80 -0
- data/vendor/assets/luca-ui/containers/viewport.js +18 -0
- data/vendor/assets/luca-ui/core/collection.js +221 -0
- data/vendor/assets/luca-ui/core/container.js +205 -0
- data/vendor/assets/luca-ui/core/field.js +59 -0
- data/vendor/assets/luca-ui/core/observer.js +42 -0
- data/vendor/assets/luca-ui/core/view.js +127 -0
- data/vendor/assets/luca-ui/framework.js +110 -0
- data/vendor/assets/luca-ui/index.js +5 -0
- data/vendor/assets/luca-ui/managers/collection_manager.js +98 -0
- data/vendor/assets/luca-ui/managers/socket_manager.js +52 -0
- data/vendor/assets/luca-ui/modules/deferrable.js +21 -0
- data/vendor/assets/luca-ui/modules/local_storage.js +81 -0
- data/vendor/assets/luca-ui/normalize.css +359 -0
- data/vendor/assets/luca-ui/stylesheets/base.css +85 -0
- data/vendor/assets/luca-ui/stylesheets/components/form_view.css +32 -0
- data/vendor/assets/luca-ui/stylesheets/components/grid_view.css +76 -0
- data/vendor/assets/luca-ui/stylesheets/components/toolbar.css +11 -0
- data/vendor/assets/luca-ui/stylesheets/containers/container.css +3 -0
- data/vendor/assets/luca-ui/stylesheets/containers/modal_view.css +0 -0
- data/vendor/assets/luca-ui/stylesheets/containers/tab_view.css +16 -0
- data/vendor/assets/luca-ui/stylesheets/normalize.css +359 -0
- data/vendor/assets/luca-ui/templates/components/bootstrap_form_controls.js +4 -0
- data/vendor/assets/luca-ui/templates/components/form_view.js +4 -0
- data/vendor/assets/luca-ui/templates/components/grid_view.js +4 -0
- data/vendor/assets/luca-ui/templates/components/grid_view_empty_text.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/basic.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/tab_selector_container.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/tab_view.js +4 -0
- data/vendor/assets/luca-ui/templates/containers/toolbar_wrapper.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/button_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/button_field_link.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/checkbox_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/file_upload_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/hidden_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/select_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/text_area_field.js +4 -0
- data/vendor/assets/luca-ui/templates/fields/text_field.js +4 -0
- data/vendor/assets/luca-ui/templates/sample/contents.js +4 -0
- data/vendor/assets/luca-ui/templates/sample/welcome.js +4 -0
- data/vendor/assets/stylesheets/luca-spec-dependencies.css +166 -0
- data/vendor/assets/stylesheets/luca-ui-bootstrap.css +1201 -0
- data/vendor/assets/stylesheets/luca-ui-spec.css +586 -0
- data/vendor/assets/stylesheets/luca-ui.css +586 -0
- data/views/index.erb +20 -0
- data/views/jasmine.erb +22 -0
- data/views/spec_harness.erb +29 -0
- metadata +361 -0
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.Router = Backbone.Router.extend({
|
|
4
|
+
routes: {
|
|
5
|
+
"": "default"
|
|
6
|
+
},
|
|
7
|
+
initialize: function(options) {
|
|
8
|
+
var _this = this;
|
|
9
|
+
this.options = options;
|
|
10
|
+
_.extend(this, this.options);
|
|
11
|
+
this.routeHandlers = _(this.routes).values();
|
|
12
|
+
return _(this.routeHandlers).each(function(route_id) {
|
|
13
|
+
return _this.bind("route:" + route_id, function() {
|
|
14
|
+
return _this.trigger.apply(_this, ["change:navigation", route_id].concat(_(arguments).flatten()));
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
},
|
|
18
|
+
navigate: function(route, triggerRoute) {
|
|
19
|
+
if (triggerRoute == null) triggerRoute = false;
|
|
20
|
+
Backbone.Router.prototype.navigate.apply(this, arguments);
|
|
21
|
+
return this.buildPathFrom(Backbone.history.getFragment());
|
|
22
|
+
},
|
|
23
|
+
buildPathFrom: function(matchedRoute) {
|
|
24
|
+
var _this = this;
|
|
25
|
+
return _(this.routes).each(function(route_id, route) {
|
|
26
|
+
var args, regex;
|
|
27
|
+
regex = _this._routeToRegExp(route);
|
|
28
|
+
if (regex.test(matchedRoute)) {
|
|
29
|
+
args = _this._extractParameters(regex, matchedRoute);
|
|
30
|
+
return _this.trigger.apply(_this, ["change:navigation", route_id].concat(args));
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
}
|
|
34
|
+
});
|
|
35
|
+
|
|
36
|
+
}).call(this);
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.components.Template = Luca.View.extend({
|
|
4
|
+
initialize: function(options) {
|
|
5
|
+
this.options = options != null ? options : {};
|
|
6
|
+
Luca.View.prototype.initialize.apply(this, arguments);
|
|
7
|
+
if (!(this.template || this.markup)) {
|
|
8
|
+
throw "Templates must specify which template / markup to use";
|
|
9
|
+
}
|
|
10
|
+
if (_.isString(this.templateContainer)) {
|
|
11
|
+
return this.templateContainer = eval("(window || global)." + this.templateContainer);
|
|
12
|
+
}
|
|
13
|
+
},
|
|
14
|
+
templateContainer: "Luca.templates",
|
|
15
|
+
beforeRender: function() {
|
|
16
|
+
if (_.isUndefined(this.templateContainer)) this.templateContainer = JST;
|
|
17
|
+
return this.$el.html(this.markup || this.templateContainer[this.template](this.options));
|
|
18
|
+
},
|
|
19
|
+
render: function() {
|
|
20
|
+
return $(this.container).append(this.$el);
|
|
21
|
+
}
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
Luca.register("template", "Luca.components.Template");
|
|
25
|
+
|
|
26
|
+
}).call(this);
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
.luca-ui-toolbar-wrapper {
|
|
2
|
+
clear: both;
|
|
3
|
+
display: block;
|
|
4
|
+
float: left;
|
|
5
|
+
width: 100%; }
|
|
6
|
+
.luca-ui-toolbar-wrapper .luca-ui-form-toolbar, .luca-ui-toolbar-wrapper .luca-ui-toolbar {
|
|
7
|
+
clear: both;
|
|
8
|
+
margin: 5px auto; }
|
|
9
|
+
.luca-ui-toolbar-wrapper .luca-ui-form-toolbar .luca-ui-field, .luca-ui-toolbar-wrapper .luca-ui-toolbar .luca-ui-field {
|
|
10
|
+
float: left;
|
|
11
|
+
margin: 5px; }
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.CardView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'card_view',
|
|
5
|
+
className: 'luca-ui-card-view-wrapper',
|
|
6
|
+
activeCard: 0,
|
|
7
|
+
components: [],
|
|
8
|
+
hooks: ['before:card:switch', 'after:card:switch'],
|
|
9
|
+
initialize: function(options) {
|
|
10
|
+
this.options = options;
|
|
11
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
12
|
+
return this.setupHooks(this.hooks);
|
|
13
|
+
},
|
|
14
|
+
componentClass: 'luca-ui-card',
|
|
15
|
+
beforeLayout: function() {
|
|
16
|
+
var _this = this;
|
|
17
|
+
return this.cards = _(this.components).map(function(card, cardIndex) {
|
|
18
|
+
return {
|
|
19
|
+
classes: _this.componentClass,
|
|
20
|
+
style: "display:" + (cardIndex === _this.activeCard ? 'block' : 'none'),
|
|
21
|
+
id: "" + _this.cid + "-" + cardIndex
|
|
22
|
+
};
|
|
23
|
+
});
|
|
24
|
+
},
|
|
25
|
+
prepareLayout: function() {
|
|
26
|
+
var _this = this;
|
|
27
|
+
return this.card_containers = _(this.cards).map(function(card, index) {
|
|
28
|
+
_this.$el.append(Luca.templates["containers/basic"](card));
|
|
29
|
+
return $("#" + card.id);
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
prepareComponents: function() {
|
|
33
|
+
var _this = this;
|
|
34
|
+
return this.components = _(this.components).map(function(object, index) {
|
|
35
|
+
var card;
|
|
36
|
+
card = _this.cards[index];
|
|
37
|
+
object.container = "#" + card.id;
|
|
38
|
+
return object;
|
|
39
|
+
});
|
|
40
|
+
},
|
|
41
|
+
activeComponent: function() {
|
|
42
|
+
return this.getComponent(this.activeCard);
|
|
43
|
+
},
|
|
44
|
+
cycle: function() {
|
|
45
|
+
var nextIndex;
|
|
46
|
+
nextIndex = this.activeCard < this.components.length - 1 ? this.activeCard + 1 : 0;
|
|
47
|
+
return this.activate(nextIndex);
|
|
48
|
+
},
|
|
49
|
+
find: function(name) {
|
|
50
|
+
return this.findComponentByName(name, true);
|
|
51
|
+
},
|
|
52
|
+
firstActivation: function() {
|
|
53
|
+
return this.activeComponent().trigger("first:activation", this, this.activeComponent());
|
|
54
|
+
},
|
|
55
|
+
activate: function(index, silent, callback) {
|
|
56
|
+
var current, previous, _ref;
|
|
57
|
+
if (silent == null) silent = false;
|
|
58
|
+
if (_.isFunction(silent)) {
|
|
59
|
+
silent = false;
|
|
60
|
+
callback = silent;
|
|
61
|
+
}
|
|
62
|
+
if (index === this.activeCard) return;
|
|
63
|
+
previous = this.activeComponent();
|
|
64
|
+
current = this.getComponent(index);
|
|
65
|
+
if (!current) {
|
|
66
|
+
index = this.indexOf(index);
|
|
67
|
+
current = this.getComponent(index);
|
|
68
|
+
}
|
|
69
|
+
if (!current) return;
|
|
70
|
+
if (!silent) this.trigger("before:card:switch", previous, current);
|
|
71
|
+
_(this.card_containers).each(function(container) {
|
|
72
|
+
var _ref;
|
|
73
|
+
if ((_ref = container.trigger) != null) {
|
|
74
|
+
_ref.apply(container, ["deactivation", this, previous, current]);
|
|
75
|
+
}
|
|
76
|
+
return container.hide();
|
|
77
|
+
});
|
|
78
|
+
if (!current.previously_activated) {
|
|
79
|
+
current.trigger("first:activation");
|
|
80
|
+
current.previously_activated = true;
|
|
81
|
+
}
|
|
82
|
+
$(current.container).show();
|
|
83
|
+
this.activeCard = index;
|
|
84
|
+
if (!silent) {
|
|
85
|
+
this.trigger("after:card:switch", previous, current);
|
|
86
|
+
if ((_ref = current.trigger) != null) {
|
|
87
|
+
_ref.apply(current, ["activation", this, previous, current]);
|
|
88
|
+
}
|
|
89
|
+
}
|
|
90
|
+
if (_.isFunction(callback)) {
|
|
91
|
+
return callback.apply(this, [this, previous, current]);
|
|
92
|
+
}
|
|
93
|
+
}
|
|
94
|
+
});
|
|
95
|
+
|
|
96
|
+
Luca.register('card_view', "Luca.containers.CardView");
|
|
97
|
+
|
|
98
|
+
}).call(this);
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.ColumnView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'column_view',
|
|
5
|
+
className: 'luca-ui-column-view',
|
|
6
|
+
components: [],
|
|
7
|
+
initialize: function(options) {
|
|
8
|
+
this.options = options != null ? options : {};
|
|
9
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
10
|
+
return this.setColumnWidths();
|
|
11
|
+
},
|
|
12
|
+
componentClass: 'luca-ui-column',
|
|
13
|
+
containerTemplate: "containers/basic",
|
|
14
|
+
appendContainers: true,
|
|
15
|
+
autoColumnWidths: function() {
|
|
16
|
+
var widths,
|
|
17
|
+
_this = this;
|
|
18
|
+
widths = [];
|
|
19
|
+
_(this.components.length).times(function() {
|
|
20
|
+
return widths.push(parseInt(100 / _this.components.length));
|
|
21
|
+
});
|
|
22
|
+
return widths;
|
|
23
|
+
},
|
|
24
|
+
setColumnWidths: function() {
|
|
25
|
+
this.columnWidths = this.layout != null ? _(this.layout.split('/')).map(function(v) {
|
|
26
|
+
return parseInt(v);
|
|
27
|
+
}) : this.autoColumnWidths();
|
|
28
|
+
return this.columnWidths = _(this.columnWidths).map(function(val) {
|
|
29
|
+
return "" + val + "%";
|
|
30
|
+
});
|
|
31
|
+
},
|
|
32
|
+
beforeComponents: function() {
|
|
33
|
+
this.debug("column_view before components");
|
|
34
|
+
return _(this.components).each(function(component) {
|
|
35
|
+
return component.ctype || (component.ctype = "panel_view");
|
|
36
|
+
});
|
|
37
|
+
},
|
|
38
|
+
beforeLayout: function() {
|
|
39
|
+
var _ref,
|
|
40
|
+
_this = this;
|
|
41
|
+
this.debug("column_view before layout");
|
|
42
|
+
_(this.columnWidths).each(function(width, index) {
|
|
43
|
+
_this.components[index].float = "left";
|
|
44
|
+
return _this.components[index].width = width;
|
|
45
|
+
});
|
|
46
|
+
return (_ref = Luca.core.Container.prototype.beforeLayout) != null ? _ref.apply(this, arguments) : void 0;
|
|
47
|
+
}
|
|
48
|
+
});
|
|
49
|
+
|
|
50
|
+
Luca.register('column_view', "Luca.containers.ColumnView");
|
|
51
|
+
|
|
52
|
+
}).call(this);
|
|
File without changes
|
|
@@ -0,0 +1,87 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.ModalView = Luca.core.Container.extend({
|
|
4
|
+
componentType: 'modal_view',
|
|
5
|
+
className: 'luca-ui-modal-view',
|
|
6
|
+
components: [],
|
|
7
|
+
renderOnInitialize: true,
|
|
8
|
+
showOnRender: false,
|
|
9
|
+
hooks: ['before:show', 'before:hide'],
|
|
10
|
+
defaultModalOptions: {
|
|
11
|
+
minWidth: 375,
|
|
12
|
+
maxWidth: 375,
|
|
13
|
+
minHeight: 550,
|
|
14
|
+
maxHeight: 550,
|
|
15
|
+
opacity: 80,
|
|
16
|
+
onOpen: function(modal) {
|
|
17
|
+
this.onOpen.apply(this);
|
|
18
|
+
return this.onModalOpen.apply(modal, [modal, this]);
|
|
19
|
+
},
|
|
20
|
+
onClose: function(modal) {
|
|
21
|
+
this.onClose.apply(this);
|
|
22
|
+
return this.onModalClose.apply(modal, [modal, this]);
|
|
23
|
+
}
|
|
24
|
+
},
|
|
25
|
+
modalOptions: {},
|
|
26
|
+
initialize: function(options) {
|
|
27
|
+
var _this = this;
|
|
28
|
+
this.options = options != null ? options : {};
|
|
29
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
30
|
+
this.setupHooks(this.hooks);
|
|
31
|
+
_(this.defaultModalOptions).each(function(value, setting) {
|
|
32
|
+
var _base;
|
|
33
|
+
return (_base = _this.modalOptions)[setting] || (_base[setting] = value);
|
|
34
|
+
});
|
|
35
|
+
this.modalOptions.onOpen = _.bind(this.modalOptions.onOpen, this);
|
|
36
|
+
return this.modalOptions.onClose = _.bind(this.modalOptions.onClose, this);
|
|
37
|
+
},
|
|
38
|
+
onOpen: function() {
|
|
39
|
+
return true;
|
|
40
|
+
},
|
|
41
|
+
onClose: function() {
|
|
42
|
+
return true;
|
|
43
|
+
},
|
|
44
|
+
getModal: function() {
|
|
45
|
+
return this.modal;
|
|
46
|
+
},
|
|
47
|
+
onModalOpen: function(modal, view) {
|
|
48
|
+
view.modal = modal;
|
|
49
|
+
modal.overlay.show();
|
|
50
|
+
modal.container.show();
|
|
51
|
+
return modal.data.show();
|
|
52
|
+
},
|
|
53
|
+
onModalClose: function(modal, view) {
|
|
54
|
+
return $.modal.close();
|
|
55
|
+
},
|
|
56
|
+
prepareLayout: function() {
|
|
57
|
+
return $('body').append(this.$el);
|
|
58
|
+
},
|
|
59
|
+
prepareComponents: function() {
|
|
60
|
+
var _this = this;
|
|
61
|
+
return this.components = _(this.components).map(function(object, index) {
|
|
62
|
+
object.container = _this.el;
|
|
63
|
+
return object;
|
|
64
|
+
});
|
|
65
|
+
},
|
|
66
|
+
afterInitialize: function() {
|
|
67
|
+
this.$el.hide();
|
|
68
|
+
if (this.renderOnInitialize) return this.render();
|
|
69
|
+
},
|
|
70
|
+
afterRender: function() {
|
|
71
|
+
if (this.showOnRender) return this.show();
|
|
72
|
+
},
|
|
73
|
+
wrapper: function() {
|
|
74
|
+
return $(this.$el.parent());
|
|
75
|
+
},
|
|
76
|
+
show: function() {
|
|
77
|
+
this.trigger("before:show", this);
|
|
78
|
+
return this.$el.modal(this.modalOptions);
|
|
79
|
+
},
|
|
80
|
+
hide: function() {
|
|
81
|
+
return this.trigger("before:hide", this);
|
|
82
|
+
}
|
|
83
|
+
});
|
|
84
|
+
|
|
85
|
+
Luca.register("modal_view", "Luca.containers.ModalView");
|
|
86
|
+
|
|
87
|
+
}).call(this);
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.PanelView = Luca.core.Container.extend({
|
|
4
|
+
className: 'luca-ui-panel',
|
|
5
|
+
initialize: function(options) {
|
|
6
|
+
this.options = options != null ? options : {};
|
|
7
|
+
return Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
8
|
+
},
|
|
9
|
+
afterLayout: function() {
|
|
10
|
+
var contents;
|
|
11
|
+
if (this.template) {
|
|
12
|
+
contents = (Luca.templates || JST)[this.template](this);
|
|
13
|
+
return this.$el.html(contents);
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
render: function() {
|
|
17
|
+
return $(this.container).append(this.$el);
|
|
18
|
+
},
|
|
19
|
+
afterRender: function() {
|
|
20
|
+
var _ref,
|
|
21
|
+
_this = this;
|
|
22
|
+
if ((_ref = Luca.core.Container.prototype.afterRender) != null) {
|
|
23
|
+
_ref.apply(this, arguments);
|
|
24
|
+
}
|
|
25
|
+
if (this.css) {
|
|
26
|
+
console.log("Yes Yes Yall", this.css, this.$el);
|
|
27
|
+
return _(this.css).each(function(value, property) {
|
|
28
|
+
return _this.$el.css(property, value);
|
|
29
|
+
});
|
|
30
|
+
}
|
|
31
|
+
}
|
|
32
|
+
});
|
|
33
|
+
|
|
34
|
+
}).call(this);
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.SplitView = Luca.core.Container.extend({
|
|
4
|
+
layout: '100',
|
|
5
|
+
componentType: 'split_view',
|
|
6
|
+
containerTemplate: 'containers/basic',
|
|
7
|
+
className: 'luca-ui-split-view',
|
|
8
|
+
componentClass: 'luca-ui-panel'
|
|
9
|
+
});
|
|
10
|
+
|
|
11
|
+
Luca.register('split_view', "Luca.containers.SplitView");
|
|
12
|
+
|
|
13
|
+
}).call(this);
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
.luca-ui-tab-view .luca-ui-card .luca-ui-grid-view, .luca-ui-tab-view .luca-ui-card .luca-ui-form-view, .luca-ui-tab-view .luca-ui-card .luca-ui-card {
|
|
2
|
+
overflow: hidden; }
|
|
3
|
+
|
|
4
|
+
.luca-ui-tab-view.tabs-below .tab-selector-container, .luca-ui-tab-view.tabs-right .tab-selector-container {
|
|
5
|
+
display: block;
|
|
6
|
+
clear: both; }
|
|
7
|
+
|
|
8
|
+
.luca-ui-tab-view.tabs-left .tab-selector-container {
|
|
9
|
+
float: left; }
|
|
10
|
+
.luca-ui-tab-view.tabs-left .tab-content {
|
|
11
|
+
float: left; }
|
|
12
|
+
|
|
13
|
+
.luca-ui-tab-view.tabs-right .tab-selector-container {
|
|
14
|
+
float: right; }
|
|
15
|
+
.luca-ui-tab-view.tabs-right .tab-content {
|
|
16
|
+
float: left; }
|
|
@@ -0,0 +1,80 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.TabView = Luca.containers.CardView.extend({
|
|
4
|
+
events: {
|
|
5
|
+
"click ul.nav-tabs li": "select"
|
|
6
|
+
},
|
|
7
|
+
hooks: ["before:select", "after:select"],
|
|
8
|
+
componentType: 'tab_view',
|
|
9
|
+
className: 'luca-ui-tab-view tabbable',
|
|
10
|
+
tab_position: 'top',
|
|
11
|
+
tabVerticalOffset: '50px',
|
|
12
|
+
initialize: function(options) {
|
|
13
|
+
this.options = options != null ? options : {};
|
|
14
|
+
Luca.containers.CardView.prototype.initialize.apply(this, arguments);
|
|
15
|
+
_.bindAll(this, "select", "highlightSelectedTab");
|
|
16
|
+
this.setupHooks(this.hooks);
|
|
17
|
+
return this.bind("after:card:switch", this.highlightSelectedTab);
|
|
18
|
+
},
|
|
19
|
+
activeTabSelector: function() {
|
|
20
|
+
return this.tabSelectors().eq(this.activeCard);
|
|
21
|
+
},
|
|
22
|
+
prepareLayout: function() {
|
|
23
|
+
var _this = this;
|
|
24
|
+
return this.card_containers = _(this.cards).map(function(card, index) {
|
|
25
|
+
_this.$('.tab-content').append(Luca.templates["containers/basic"](card));
|
|
26
|
+
return $("#" + card.id);
|
|
27
|
+
});
|
|
28
|
+
},
|
|
29
|
+
beforeLayout: function() {
|
|
30
|
+
this.$el.addClass("tabs-" + this.tab_position);
|
|
31
|
+
if (this.tab_position === "below") {
|
|
32
|
+
this.$el.append(Luca.templates["containers/tab_view"](this));
|
|
33
|
+
this.$el.append(Luca.templates["containers/tab_selector_container"](this));
|
|
34
|
+
} else {
|
|
35
|
+
this.$el.append(Luca.templates["containers/tab_selector_container"](this));
|
|
36
|
+
this.$el.append(Luca.templates["containers/tab_view"](this));
|
|
37
|
+
}
|
|
38
|
+
return Luca.containers.CardView.prototype.beforeLayout.apply(this, arguments);
|
|
39
|
+
},
|
|
40
|
+
beforeRender: function() {
|
|
41
|
+
var _ref;
|
|
42
|
+
if ((_ref = Luca.containers.CardView.prototype.beforeRender) != null) {
|
|
43
|
+
_ref.apply(this, arguments);
|
|
44
|
+
}
|
|
45
|
+
this.activeTabSelector().addClass('active');
|
|
46
|
+
if (Luca.enableBootstrap && this.tab_position === "left" || this.tab_position === "right") {
|
|
47
|
+
this.$el.addClass('grid-12');
|
|
48
|
+
this.tabContainerWrapper().addClass('grid-3');
|
|
49
|
+
this.tabContentWrapper().addClass('grid-9');
|
|
50
|
+
if (this.tabVerticalOffset) {
|
|
51
|
+
return this.tabContainerWrapper().css('padding-top', this.tabVerticalOffset);
|
|
52
|
+
}
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
highlightSelectedTab: function() {
|
|
56
|
+
this.tabSelectors().removeClass('active');
|
|
57
|
+
return this.activeTabSelector().addClass('active');
|
|
58
|
+
},
|
|
59
|
+
select: function(e) {
|
|
60
|
+
var me, my;
|
|
61
|
+
me = my = $(e.currentTarget);
|
|
62
|
+
this.trigger("before:select", this);
|
|
63
|
+
this.activate(my.data('target'));
|
|
64
|
+
return this.trigger("after:select", this);
|
|
65
|
+
},
|
|
66
|
+
tabContentWrapper: function() {
|
|
67
|
+
return $("#" + this.cid + "-tab-view-content");
|
|
68
|
+
},
|
|
69
|
+
tabContainerWrapper: function() {
|
|
70
|
+
return $("#" + this.cid + "-tabs-selector");
|
|
71
|
+
},
|
|
72
|
+
tabContainer: function() {
|
|
73
|
+
return $("ul#" + this.cid + "-tabs-nav");
|
|
74
|
+
},
|
|
75
|
+
tabSelectors: function() {
|
|
76
|
+
return $('li.tab-selector', this.tabContainer());
|
|
77
|
+
}
|
|
78
|
+
});
|
|
79
|
+
|
|
80
|
+
}).call(this);
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
(function() {
|
|
2
|
+
|
|
3
|
+
Luca.containers.Viewport = Luca.containers.CardView.extend({
|
|
4
|
+
activeItem: 0,
|
|
5
|
+
className: 'luca-ui-viewport',
|
|
6
|
+
fullscreen: true,
|
|
7
|
+
initialize: function(options) {
|
|
8
|
+
this.options = options != null ? options : {};
|
|
9
|
+
Luca.core.Container.prototype.initialize.apply(this, arguments);
|
|
10
|
+
if (this.fullscreen) return $('html,body').addClass('luca-ui-fullscreen');
|
|
11
|
+
},
|
|
12
|
+
render: function() {
|
|
13
|
+
console.log("Rendering Viewport");
|
|
14
|
+
return this.$el.addClass('luca-ui-viewport');
|
|
15
|
+
}
|
|
16
|
+
});
|
|
17
|
+
|
|
18
|
+
}).call(this);
|