foam-framework
Version:
MVC metaprogramming framework
42 lines (36 loc) • 992 B
JavaScript
/**
* @license
* Copyright 2015 Google Inc. All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*/
CLASS({
package: 'com.google.ow.ui',
name: 'OrderView',
extends: 'foam.u2.View',
requires: [ 'foam.u2.DAOListView' ],
exports: [ 'data' ],
properties: [ [ 'nodeName', 'ORDER' ] ],
methods: [
function initE() {
return this.start('div').cls('md-headline').add('Order').end()
.add(this.DAOListView.create({ data: this.data.items }, this.Y))
.start('div').cls('md-body')
.add('TOTAL: $')
.add(function() { return this.data.total.toFixed(2); }.bind(this))
.end();
},
],
templates: [
function CSS() {/*
order {
display: flex;
flex-direction: column;
}
*/},
],
});