UNPKG

foam-framework

Version:
61 lines (54 loc) 2.22 kB
/** * @license * Copyright 2014 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 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ CLASS({ package: 'foam.ui', name: 'SimpleView', extends: 'foam.ui.BaseView', traits: [ 'foam.ui.HTMLViewTrait', 'foam.ui.U2ViewTrait', ], requires: [ 'Property' ], exports: [ 'propertyViewProperty' ], documentation: function() {/* When a default view based on $$DOC{ref:'Property'} values is desired, $$DOC{ref:'foam.ui.DetailView'} is the place to start. Either using $$DOC{ref:'foam.ui.DetailView'} directly, implementing a .toDetailHTML() $$DOC{ref:'Method'} in your model, or extending $$DOC{ref:'foam.ui.DetailView'} to add custom formatting. </p> <p>Set the $$DOC{ref:'.data'} $$DOC{ref:'Property'} to the $$DOC{ref:'Model'} instance you want to display. $$DOC{ref:'foam.ui.DetailView'} will extract the $$DOC{ref:'Model'} definition, create editors for the $$DOC{ref:'Property',usePlural:true}, and display the current values of your instance. Set $$DOC{ref:'.mode',usePlural:true} to indicate read-only if desired. </p> <p>$$DOC{ref:'Model',usePlural:true} may specify a .toDetailHTML() $$DOC{ref:'Method'} or $$DOC{ref:'Template'} to render their contents instead of $$DOC{ref:'foam.ui.DetailView.defaultToHTML'}. </p> <p>For each $$DOC{ref:'Property'} in the $$DOC{ref:'.data'} instance specified, a $$DOC{ref:'PropertyView'} is created that selects the appropriate $$DOC{ref:'foam.ui.View'} to construct. */}, properties: [ { name: 'propertyViewProperty', type: 'Property', defaultValueFn: function() { return this.Property.DETAIL_VIEW; } } ] });