How to use view - 10 common examples

To help you get started, we’ve selected a few view examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github DemocracyOS / bill-tracker / lib / dashboard / view.js View on Github external
function Dashboard() {
  if (!(this instanceof Dashboard)) {
    return new Dashboard();
  }

  // Define template
  View.call(this, template);


/**
 * Model of each item on the list.
 * @type {Array}
 */
  this.items = [];

  this.loadItems();
}
github mozilla-b2g / gaia / apps / camera / js / views / focus.js View on Github external
define(function(require, exports, module) {
'use strict';

/**
 * Dependencies
 */

var debug = require('debug')('view:focus');
var View = require('view');

/**
 * Exports
 */

module.exports = View.extend({
  name: 'focus',
  fadeTime: 500,

  initialize: function() {
    this.render();
    this.setFocusState('none');
  },

  render: function() {
    this.el.innerHTML = this.template();
    delete this.template; // Clean up
    debug('rendered');
    return this;
  },

  setFocusState: function(state) {
github makepad / makepad.github.io / root / app.js View on Github external
//var painter = require('painter')
//var fingers = require('fingers')
var painter = require('painter')
var fingers = require('fingers')
var keyboard = require('keyboard')

var mat4 = require('math/mat4')
var vec4 = require('math/vec4')
module.exports = require('view').extend(function App(proto, base){
	proto.name = 'App'
	// lets define some props
	proto.props = {
	}

	proto._onConstruct = function(){
		base._onConstruct.call(this)
		
		var viewTodoMap = this.$viewTodoMap = []
		var app = this

		// our layout object used for running turtles on the view tree
		var layout = this.$turtleLayout = {
			$writeList: [],
			Turtle:this.Turtle,
			beginTurtle:function(){
github makepad / makepad.github.io / views / drawview.js View on Github external
// simple drawing app
module.exports = require('view').extend(function DrawView(proto){

	proto.tools = {
		Background:require('shaders/backgroundshader'),
		Rect:require('shaders/rectshader'),
		Line:require('shaders/lineshader'),
		Text:require('shaders/fontshader').extend({
			font:require('fonts/ubuntu_medium_256.font')
		})
	}
})
github mozilla-b2g / gaia / apps / camera / js / views / faces.js View on Github external
define(function(require, exports, module) {
'use strict';

/**
 * Dependencies
 */

var FaceView = require('views/face');
var View = require('view');

/**
 * Exports
 */

module.exports = View.extend({
  name: 'faces',
  faces: [],

  initialize: function(options) {
    options = options || {};
    this.el.innerHTML = this.template();
    this.FaceView = options.FaceView || FaceView;
  },

  // It creates the DOM elements that will display circles
  // around the detected faces.
  createFaces: function(maxNumberFaces) {
    var faceView;
    var i;
    for(i = 0; i < maxNumberFaces; ++i) {
      faceView = new this.FaceView();
github etsy / 411 / htdocs / assets / js / views / alerts / alertgroup.js View on Github external
// This view might've been destroyed by the time the callback returns. We currently don't
            // associate callbacks with views, so just explicitly check that we're still loaded here.
            if(!this.loaded()) {
                return;
            }
            if(!preview) {
                this.renderedValue = val;
                var tip = this.$el.data('bs.popover').$tip;
                tip.find('.popover-content').html(val);
            } else {
                this.$('.view').html(val);
            }
        }
    });

    var AlertEntryView = View.extend({
        tagName: 'tr',
        template: Templates['alerts/alertentry'],
        keys: null,
        full: false,
        initialize: function(options) {
            this.full = options.full;
            this.keys = options.keys;
            this.preview = options.preview;
        },
        _render: function() {
            var search = this.App.Data.Searches.get(this.model.get('search_id'));
            var vars = this.model.toJSON();
            _.extend(vars, {
                preview: this.preview,
                full: this.full,
                search_id: search ? search.get('id'):0,
github etsy / 411 / htdocs / assets / js / views / admin.js View on Github external
View = require('view'),
        NavbarView = require('views/navbar'),
        Templates = require('templates'),
        Config = require('config'),
        Util = require('util'),
        Moment = require('moment');


    var AdminNavbarView = NavbarView.extend({
        title: 'Admin',
    });

    /**
     * The admin View
     */
    var AdminView = View.extend({
        template: Templates['admin'],
        events: {
            'click #save-button': 'saveSettings'
        },
        _load: function() {
            // Retrieve config.
            this.App.ajax({
                url: Config.api_root + 'admin',
                success: this.cbLoaded(function(resp) {
                    this.data = resp;
                    this.data['timezones'] = Moment.tz.names();

                    this.render();
                }),
                complete: $.proxy(this.App.hideLoader, this.App)
            });
github etsy / 411 / htdocs / assets / js / views / index.js View on Github external
define(function(require) {
    var _ = require('underscore'),
        View = require('view'),
        ChartView = require('views/chart'),
        Templates = require('templates'),
        Config = require('config'),
        Data = require('data');


    /**
     * The index View
     */
    var IndexView = View.extend({
        template: Templates['index'],
        data: null,
        _load: function() {
            // If logged in, load up dashboard data.
            if(this.App.Data.User) {
                this.App.ajax({
                    url: Config.api_root + 'dashboard',
                    success: this.cbLoaded(function(resp) {
                        this.data = resp;
                        this.render();
                    }),
                    complete: $.proxy(this.App.hideLoader, this.App)
                });
            } else {
                this.render();
            }
github etsy / 411 / htdocs / assets / js / views / chart.js View on Github external
pointBackgroundColor: "rgba(148,159,177,1)",
            pointBorderColor: "#fff",
            pointHoverBackgroundColor: "#fff",
            pointHoverBorderColor: "rgba(148,159,177,0.8)"
        },
        { // dark grey
            backgroundColor: "rgba(77,83,96,0.2)",
            borderColor: "rgba(77,83,96,1)",
            pointBackgroundColor: "rgba(77,83,96,1)",
            pointBorderColor: "#fff",
            pointHoverBackgroundColor: "#fff",
            pointHoverBorderColor: "rgba(77,83,96,1)"
        }
    ];

    var ChartView = View.extend({
        title: '',
        tagName: 'div',
        template: Templates['chart'],
        data: null,
        chart: null,
        initialize: function(options) {
            this.title = options.title;
            this.data = options.data;
        },
        _render: function() {
            this.$el.html(this.template({title: this.title}));
            var ctx = this.$('.chart')[0].getContext('2d');

            // FIXME: View could get destroyed before this triggers.
            _.defer($.proxy(function() {
                this.chart = new Chart(ctx, {
github mozilla-b2g / gaia / apps / camera / js / views / preview-gallery.js View on Github external
/**
 * Constants
 */

var SWIPE_DISTANCE_THRESHOLD = window.innerWidth / 3; // pixels
var SWIPE_VELOCITY_THRESHOLD = 1.0;                   // pixels/ms

var SWIPE_DURATION = 250;   // How long to animate the swipe
var FADE_IN_DURATION = 500; // How long to animate the fade in after swipe

/**
 * Locals
 */

return View.extend({
  name: 'preview-gallery',
  className: 'offscreen',

  initialize: function() {
    debug('initialized');
  },

  render: function() {
    this.el.innerHTML = this.template();
    this.els.frameContainer = this.find('.js-frame-container');
    this.els.previewMenu = this.find('.js-preview-menu');
    this.els.mediaFrame = this.find('.js-media-frame');
    this.els.countText = this.find('.js-count-text');
    this.els.options = this.find('.js-options');
    this.els.header = this.find('.js-header');
    this.els.share = this.find('.js-share');

view

A View engine

MIT
Latest version published 7 years ago

Package Health Score

36 / 100
Full package analysis

Popular view functions