app-base-debug.js revision f50179c7ad363c27b2d90fbb8aa37b714bc9a51e
/**
The App Framework provides simple MVC-like building blocks (models, model lists,
views, and URL-based routing) for writing single-page JavaScript applications.
@main app
@module app
@since 3.4.0
**/
/**
Provides a top-level application component which manages navigation and views.
@module app
@submodule app-base
@since 3.5.0
**/
// TODO: Better handling of lifecycle for registered views:
//
// * Seems like any view created via `createView` should listen for the view's
// `destroy` event and use that to remove it from the `_viewsInfoMap`. I
// should look at what ModelList does for Models as a reference.
//
// * Should we have a companion `destroyView()` method? Maybe this wouldn't be
// needed if we have a `getView(name, create)` method, and already doing the
// above? We could do `app.getView('foo').destroy()` and it would be removed
// from the `_viewsInfoMap` as well.
//
// * Should named views support a collection of instances instead of just one?
//
YObject = Y.Object,
App;
/**
Provides a top-level application component which manages navigation and views.
This gives you a foundation and structure on which to build your application; it
combines robust URL navigation with powerful routing and flexible view
management.
@class App.Base
@param {Object} [config] The following are configuration properties that can be
specified _in addition_ to default attribute values and the non-attribute
properties provided by `Y.Base`:
@param {Object} [config.views] Hash of view-name to metadata used to
declaratively describe an application's views and their relationship with
the app and other views. The views specified here will override any defaults
provided by the `views` object on the `prototype`.
@constructor
@extends Base
@uses View
@uses Router
@uses PjaxBase
@since 3.5.0
**/
// -- Public Properties ----------------------------------------------------
/**
Hash of view-name to metadata used to declaratively describe an
application's views and their relationship with the app and its other views.
The view metadata is composed of Objects keyed to a view-name that can have
any or all of the following properties:
* `type`: Function or a string representing the view constructor to use to
create view instances. If a string is used, the constructor function is
assumed to be on the `Y` object; e.g. `"SomeView"` -> `Y.SomeView`.
* `preserve`: Boolean for whether the view instance should be retained. By
default, the view instance will be destroyed when it is no longer the
`activeView`. If `true` the view instance will simply be `removed()`
from the DOM when it is no longer active. This is useful when the view
is frequently used and may be expensive to re-create.
* `parent`: String to another named view in this hash that represents the
parent view within the application's view hierarchy; e.g. a `"photo"`
relationship is a useful cue for things like transitions.
* `instance`: Used internally to manage the current instance of this named
view. This can be used if your view instance is created up-front, or if
you would rather manage the View lifecycle, but you probably should just
let this be handled for you.
If `views` are specified at instantiation time, the metadata in the `views`
Object here will be used as defaults when creating the instance's `views`.
Every `Y.App` instance gets its own copy of a `views` object so this Object
on the prototype will not be polluted.
@example
// Imagine that `Y.UsersView` and `Y.UserView` have been defined.
var app = new Y.App({
views: {
users: {
type : Y.UsersView,
preserve: true
},
user: {
type : Y.UserView,
parent: 'users'
}
}
});
@property views
@type Object
@default {}
@since 3.5.0
**/
views: {},
// -- Protected Properties -------------------------------------------------
/**
Map of view instance id (via `Y.stamp()`) to view-info object in `views`.
This mapping is used to tie a specific view instance back to its metadata by
adding a reference to the the related view info on the `views` object.
@property _viewInfoMap
@type Object
@default {}
@protected
@since 3.5.0
**/
// -- Lifecycle Methods ----------------------------------------------------
initializer: function (config) {
var views = {};
// Merges-in specified view metadata into local `views` object.
}
// First, each view in the `views` prototype object gets its metadata
// merged-in, providing the defaults.
// Then, each view in the specified `config.views` object gets its
// metadata merged-in.
// The resulting hodgepodge of metadata is then stored as the instance's
// `views` object, and no one's objects were harmed in the making.
this._viewInfoMap = {};
// Using `bind()` to aid extensibility.
// PjaxBase will bind click events when `html5` is `true`, so this just
// forces the binding when `serverRouting` and `html5` are both falsy.
if (!this.get('serverRouting')) {
this._pjaxBindUI();
}
},
// TODO: `destructor` to destroy the `activeView`?
// -- Public Methods -------------------------------------------------------
/**
Creates and returns a new view instance using the provided `name` to look up
the view info metadata defined in the `views` object. The passed-in `config`
object is passed to the view constructor function.
This function also maps a view instance back to its view info metadata.
@method createView
@param {String} name The name of a view defined on the `views` object.
@param {Object} [config] The configuration object passed to the view
constructor function when creating the new view instance.
@return {View} The new view instance.
@since 3.5.0
**/
// Looks for a namespaced constructor function on `Y`.
// Create the view instance and map it with its metadata.
return view;
},
/**
Returns the metadata associated with a view instance or view name defined on
the `views` object.
@method getViewInfo
@param {View|String} view View instance, or name of a view defined on the
`views` object.
@return {Object} The metadata for the view, or `undefined` if the view is
not registered.
@since 3.5.0
**/
getViewInfo: function (view) {
}
},
/**
Navigates to the specified URL if there is a route handler that matches. In
browsers capable of using HTML5 history or when `serverRouting` is falsy,
the navigation will be enhanced by firing the `navigate` event and having
the app handle the "request". When `serverRouting` is `true`, non-HTML5
browsers will navigate to the new URL via a full page reload.
When there is a route handler for the specified URL and it is being
navigated to, this method will return `true`, otherwise it will return
`false`.
**Note:** The specified URL _must_ be of the same origin as the current URL,
otherwise an error will be logged and navigation will not occur. This is
intended as both a security constraint and a purposely imposed limitation as
it does not make sense to tell the app to navigate to a URL on a
different scheme, host, or port.
@method navigate
@param {String} url The URL to navigate to. This must be of the same origin
as the current URL.
@param {Object} [options] Additional options to configure the navigation.
These are mixed into the `navigate` event facade.
@param {Boolean} [options.replace] Whether or not the current history
entry will be replaced, or a new entry will be created. Will default
to `true` if the specified `url` is the same as the current URL.
@param {Boolean} [options.force] Whether the enhanced navigation
should occur even in browsers without HTML5 history. Will default to
`true` when `serverRouting` is falsy.
@see PjaxBase.navigate()
**/
// Does not override `navigate()` but does use extra `options`.
/**
Renders this application by appending the `viewContainer` node to the
`container` node if it isn't already a child of the container, and the
`activeView` will be appended the view container, if it isn't already.
You should call this method at least once, usually after the initialization
of your app instance so the proper DOM structure is setup and optionally
append the container to the DOM if it's not there already.
You may override this method to customize the app's rendering, but you
should expect that the `viewContainer`'s contents will be modified by the
app for the purpose of rendering the `activeView` when it changes.
@method render
@chainable
@see View.render()
**/
render: function () {
// Prevents needless shuffling around of nodes and maintains DOM order.
}
// Prevents needless shuffling around of nodes and maintains DOM order.
}
return this;
},
/**
app's `activeView` attribute to the specified `view`.
When a string-name is provided for a view which has been registered on this
app's `views` object, the referenced metadata will be used and the
`activeView` will be set to either a preserved view instance, or a new
instance of the registered view will be created using the specified `config`
object passed-into this method.
A callback function can be specified as either the third or fourth argument,
and this function will be called after the new `view` becomes the
`activeView`, is rendered to the `viewContainer`, and is ready to use.
@example
var app = new Y.App({
views: {
users: {
// Imagine that `Y.UsersView` has been defined.
type: Y.UsersView
}
}
});
app.route('/users/', function () {
this.showView('users');
});
app.render();
app.navigate('/uses/'); // => Creates a new `Y.UsersView` and shows it.
@method showView
@param {String|View} view The name of a view defined in the `views` object,
or a view instance.
@param {Object} [config] Optional configuration to use when creating a new
view instance.
@param {Object} [options] Optional object containing any of the following
properties:
@param {Function} [options.callback] Optional callback function to call
after new `activeView` is ready to use, the function will be passed:
@param {View} options.callback.view A reference to the new
`activeView`.
@param {Boolean} [options.prepend] Whether the new view should be
prepended instead of appended to the `viewContainer`.
@param {Function} [callback] Optional callback Function to call after the
new `activeView` is ready to use. **Note:** this will override
`options.callback`. The function will be passed the following:
@param {View} callback.view A reference to the new `activeView`.
@chainable
@since 3.5.0
**/
var viewInfo;
// Use the preserved view instance, or create a new view.
// TODO: Maybe we can remove the strict check for `preserve` and
// assume we'll use a View instance if it is there, and just check
// `preserve` when detaching?
// Make sure there's a mapping back to the view metadata.
} else {
}
}
// TODO: Add `options.update` to update to view with the `config`, if
// needed. This could also call `setAttrs()` when the specified `view`
// already a View instance. Is this be too much overloading of the API?
// TODO: Add `options.render` to provide a way to control whether a view
// is rendered or not; by default, `render()` will only be called if
// this method created the View.
if (callback) {
}
// TODO: Should the `callback` _always_ be called, even when the
// `activeView` does not change?
},
// -- Protected Methods ----------------------------------------------------
/**
Helper method to attach the view instance to the application by making the
app a bubble target of the view, append the view to the `viewContainer`, and
assign it to the `instance` property of the associated view info metadata.
@method _attachView
@param {View} view View to attach.
@param {Boolean} prepend Whether the view should be prepended instead of
appended to the `viewContainer`.
@protected
@since 3.5.0
**/
if (!view) {
return;
}
// TODO: Attach events here for persevered Views?
// See related TODO in `_detachView`.
// Insert view into the DOM.
},
/**
Overrides View's container destruction to deal with the `viewContainer` and
checks to make sure not to remove and purge the `<body>`.
@method _destroyContainer
@protected
@see View._destroyContainer()
**/
_destroyContainer: function () {
// We do not want to remove or destroy the `<body>`.
// Just clean-up our events listeners.
this.detachEvents();
// Clean-up `yui3-app` CSS class on the `container`.
if (areSame) {
// Clean-up `yui3-app-views` CSS class on the `container`.
} else {
// Destroy and purge the `viewContainer`.
}
return;
}
// Remove and purge events from both containers.
},
/**
Helper method to detach the view instance from the application by removing
the application as a bubble target of the view, and either just removing the
view if it is intended to be preserved, or destroying the instance
completely.
@method _detachView
@param {View} view View to detach.
@protected
@since 3.5.0
**/
_detachView: function (view) {
if (!view) {
return;
}
// TODO: Detach events here for preserved Views? It is possible that
// some event subscriptions are made on elements other than the
// View's `container`.
} else {
// TODO: The following should probably happen automagically from
// `destroy()` being called! Possibly `removeTarget()` as well.
// Remove from view to view-info map.
// Remove from view-info instance property.
}
}
view.removeTarget(this);
},
/**
Getter for the `viewContainer` attribute.
@method _getViewContainer
@param {Node|null} value Current attribute value.
@return {Node} View container node.
@protected
@since 3.5.0
**/
_getViewContainer: function (value) {
// This wackiness is necessary to enable fully lazy creation of the
// container node both when no container is specified and when one is
// specified via a valueFn.
if (!value && !this._viewContainer) {
// Create a default container and set that as the new attribute
// value. The `this._viewContainer` property prevents infinite
// recursion.
}
return value;
},
/**
Gets the current full URL. When `html5` is false, the URL will first be
upgraded before it's returned.
@method _getURL
@return {String} URL.
@protected
@see Router._getURL()
**/
_getURL: function () {
},
/**
Provides the default value for the `html5` attribute.
The value returned is dependent on the value of the `serverRouting`
attribute. When `serverRouting` is explicit set to `false` (not just falsy),
the default value for `html5` will be set to `false` for *all* browsers.
When `serverRouting` is `true` or `undefined` the returned value will be
dependent on the browser's capability of using HTML5 history.
@method _initHtml5
@return {Boolean} Whether or not HTML5 history should be used.
@protected
@since 3.5.0
**/
_initHtml5: function () {
// When `serverRouting` is explicitly set to `false` (not just falsy),
// forcing hash-based URLs in all browsers.
if (this.get('serverRouting') === false) {
return false;
} else {
}
},
/**
Determines if the specified `view` is configured as a child of the specified
`parent` view. This requires both views to be either named-views, or view
instances created using configuration data that exists in the `views`
object, e.g. created by the `createView()` or `showView()` method.
@method _isChildView
@param {View|String} view The name of a view defined in the `views` object,
or a view instance.
@param {View|String} parent The name of a view defined in the `views`
object, or a view instance.
@return {Boolean} Whether the view is configured as a child of the parent.
@protected
@since 3.5.0
**/
if (viewInfo && parentInfo) {
}
return false;
},
/**
Determines if the specified `view` is configured as the parent of the
specified `child` view. This requires both views to be either named-views,
or view instances created using configuration data that exists in the
`views` object, e.g. created by the `createView()` or `showView()` method.
@method _isParentView
@param {View|String} view The name of a view defined in the `views` object,
or a view instance.
@param {View|String} parent The name of a view defined in the `views`
object, or a view instance.
@return {Boolean} Whether the view is configured as the parent of the child.
@protected
@since 3.5.0
**/
}
return false;
},
/**
Underlying implementation for `navigate()`.
@method _navigate
@param {String} url The fully-resolved URL that the app should dispatch to
its route handlers to fulfill the enhanced navigation "request", or use to
update `window.location` in non-HTML5 history capable browsers when
`serverRouting` is `true`.
@param {Object} [options] Additional options to configure the navigation.
These are mixed into the `navigate` event facade.
@param {Boolean} [options.replace] Whether or not the current history
entry will be replaced, or a new entry will be created. Will default
to `true` if the specified `url` is the same as the current URL.
@param {Boolean} [options.force] Whether the enhanced navigation
should occur even in browsers without HTML5 history. Will default to
`true` when `serverRouting` is falsy.
@protected
@see PjaxBase._navigate()
**/
if (!this.get('serverRouting')) {
// Force navigation to be enhanced and handled by the app when
// `serverRouting` is falsy because the server might not be able to
// properly handle the request.
}
},
/**
Will either save a history entry using `pushState()` or the location hash,
or gracefully-degrade to sending a request to the server causing a full-page
reload.
Overrides Router's `_save()` method to preform graceful-degradation when the
app's `serverRouting` is `true` and `html5` is `false` by updating the full
URL via standard assignment to `window.location` or by calling
`window.location.replace()`; both of which will cause a request to the
server resulting in a full-page reload.
Otherwise this will just delegate off to Router's `_save()` method allowing
the client-side enhanced routing to occur.
@method _save
@param {String} [url] URL for the history entry.
@param {Boolean} [replace=false] If `true`, the current history entry will
be replaced instead of a new one being added.
@chainable
@protected
@see Router._save()
**/
// Forces full-path URLs to always be used by modifying
// `window.location` in non-HTML5 history capable browsers.
// Perform same-origin check on the specified URL.
if (!this._hasSameOrigin(url)) {
Y.error('Security error: The new URL must be of the same origin as the current URL.');
return this;
}
// Results in the URL's full path starting with '/'.
// Either replace the current history entry or create a new one
// while navigating to the `url`.
if (replace) {
} else {
}
return this;
}
},
/**
Performs the actual change of this app's `activeView` by attaching the
`newView` to this app, and detaching the `oldView` from this app using any
specified `options`.
The `newView` is attached to the app by rendering it to the `viewContainer`,
and making this app a bubble target of its events.
The `oldView` is detached from the app by removing it from the
`viewContainer`, and removing this app as a bubble target for its events.
The `oldView` will either be preserved or properly destroyed.
**Note:** The `activeView` attribute is read-only and can be changed by
calling the `showView()` method.
@method _uiSetActiveView
@param {View} newView The View which is now this app's `activeView`.
@param {View} [oldView] The View which was this app's `activeView`.
@param {Object} [options] Optional object containing any of the following
properties:
@param {Function} [options.callback] Optional callback function to call
after new `activeView` is ready to use, the function will be passed:
@param {View} options.callback.view A reference to the new
`activeView`.
@param {Boolean} [options.prepend] Whether the new view should be
prepended instead of appended to the `viewContainer`.
@protected
@since 3.5.0
**/
// Prevent detaching (thus removing) the view we want to show. Also hard
// to animate out and in, the same view.
}
this._detachView(oldView);
},
/**
Upgrades a hash-based URL to a full-path URL, if necessary.
The specified `url` will be upgraded if its of the same origin as the
current URL and has a path-like hash. URLs that don't need upgrading will be
returned as-is.
@example
app._upgradeURL('http://example.com/#/foo/'); // => 'http://example.com/foo/';
@method _upgradeURL
@param {String} url The URL to upgrade from hash-based to full-path.
@return {String} The upgraded URL, or the specified URL untouched.
@protected
@since 3.5.0
**/
_upgradeURL: function (url) {
// We should not try to upgrade paths for external URLs.
if (!this._hasSameOrigin(url)) {
return url;
}
// TODO: Should the `root` be removed first, and the hash only
// considered if in the form of '/#/'?
// Strip any hash prefix, like hash-bangs.
}
// If the hash looks like a URL path, assume it is, and upgrade it!
// Re-join with configured `root` before resolving.
}
return url;
},
// -- Protected Event Handlers ---------------------------------------------
/**
Handles the application's `activeViewChange` event (which is fired when the
`activeView` attribute changes) by detaching the old view, attaching the new
view.
The `activeView` attribute is read-only, so the public API to change its
value is through the `showView()` method.
@method _afterActiveViewChange
@param {EventFacade} e
@protected
@since 3.5.0
**/
_afterActiveViewChange: function (e) {
}
}, {
ATTRS: {
/**
This attribute is read-only, to set the `activeView` use the
`showView()` method.
@attribute activeView
@type View
@default null
@readOnly
@see AppBase.showView()
@since 3.5.0
**/
activeView: {
value : null,
readOnly: true
},
/**
Container node which represents the application's bounding-box, into
which this app's content will be rendered.
The container node serves as the host for all DOM events attached by the
app. Delegation is used to handle events on children of the container,
allowing the container's contents to be re-rendered at any time without
losing event subscriptions.
The default container is the `<body>` Node, but you can override this in
a subclass, or by passing in a custom `container` config value at
instantiation time.
When `container` is overridden by a subclass or passed as a config
option at instantiation time, it may be provided as a selector string, a
DOM element, or a `Y.Node` instance. During initialization, this app's
`create()` method will be called to convert the container into a
`Y.Node` instance if it isn't one already and stamp it with the CSS
class: `"yui3-app"`.
The container is not added to the page automatically. This allows you to
have full control over how and when your app is actually rendered to
the page.
@attribute container
@type HTMLElement|Node|String
@default Y.one('body')
@initOnly
**/
container: {
valueFn: function () {
return Y.one('body');
}
},
/**
Whether or not this browser is capable of using HTML5 history.
This value is dependent on the value of `serverRouting` and will default
accordingly.
Setting this to `false` will force the use of hash-based history even on
HTML5 browsers, but please don't do this unless you understand the
consequences.
@attribute html5
@type Boolean
@initOnly
@see serverRouting
**/
html5: {
valueFn: '_initHtml5'
},
/**
CSS selector string used to filter link click events so that only the
links which match it will have the enhanced-navigation behavior of pjax
applied.
When a link is clicked and that link matches this selector, navigating
to the link's `href` URL using the enhanced, pjax, behavior will be
attempted; and the browser's default way to navigate to new pages will
be the fallback.
By default this selector will match _all_ links on the page.
@attribute linkSelector
@type String|Function
@default "a"
**/
linkSelector: {
value: 'a'
},
/**
Whether or not this application's server is capable of properly routing
all requests and rendering the initial state in the HTML responses.
This can have three different values, each having particular
implications on how the app will handle routing and navigation:
* `undefined`: The best form of URLs will be chosen based on the
capabilities of the browser. Given no information about the server
environmentm a balanced approach to routing and navigation is
chosen.
The server should be capable of handling full-path requests, since
full-URLs will be generated by browsers using HTML5 history. If this
is a client-side-only app the server could handle full-URL requests
by sending a redirect back to the root with a hash-based URL, e.g:
Request: http://example.com/users/1
Redirect to: http://example.com/#/users/1
* `true`: The server is *fully* capable of properly handling requests
to all full-path URLs the app can produce.
This is the best option for progressive-enhancement because it will
cause **all URLs to always have full-paths**, which means the server
will be able to accurately handle all URLs this app produces. e.g.
To meet this strict full-URL requirement, browsers which are not
capable of using HTML5 history will make requests to the server
resulting in full-page reloads.
* `false`: The server is *not* capable of properly handling requests
to all full-path URLs the app can produce, therefore all routing
will be handled by this App instance.
Be aware that this will cause **all URLs to always be hash-based**,
even in browsers that are capable of using HTML5 history. e.g.
http://example.com/#/users/1
A single-page or client-side-only app where the server sends a
"shell" page with JavaScript to the client might have this
restriction. If you're setting this to `false`, read the following:
**Note:** When this is set to `false`, the server will *never* receive
the full URL because browsers do not send the fragment-part to the
server, that is everything after and including the "#".
Consider the following example:
URL shown in browser: http://example.com/#/users/1
URL sent to server: http://example.com/
You should feel bad about hurting our precious web if you forcefully set
either `serverRouting` or `html5` to `false`, because you're basically
punching the web in the face here with your lossy URLs! Please make sure
you know what you're doing and that you understand the implications.
Ideally you should always prefer full-path URLs (not /#/foo/), and want
full-page reloads when the client's browser is not capable of enhancing
the experience using the HTML5 history APIs. Setting this to `true` is
the best option for progressive-enhancement (and graceful-degradation).
@attribute serverRouting
@type Boolean
@default undefined
@initOnly
@since 3.5.0
**/
writeOnce: 'initOnly'
},
/**
The node into which this app's `views` will be rendered when they become
the `activeView`.
The view container node serves as the container to hold the app's
`activeView`. Each time the `activeView` is set via `showView()`, the
previous view will be removed from this node, and the new active view's
`container` node will be appended.
The default view container is a `<div>` Node, but you can override this
in a subclass, or by passing in a custom `viewContainer` config value at
instantiation time. The `viewContainer` may be provided as a selector
string, DOM element, or a `Y.Node` instance (having the `viewContainer`
and the `container` be the same node is also supported).
The app's `render()` method will stamp the view container with the CSS
class `"yui3-app-views"` and append it to the app's `container` node if
it isn't already, and any `activeView` will be appended to this node if
it isn't already.
@attribute viewContainer
@type HTMLElement|Node|String
@default Y.Node.create(this.containerTemplate)
@initOnly
@since 3.5.0
**/
getter : '_getViewContainer',
writeOnce: true
}
},
// TODO: Should these go on the `prototype`?
// TODO: These should also just go in a `CLASS_NAMES` object.
/**
CSS class added to an app's `container` node.
@property CSS_CLASS
@type String
@default "yui3-app"
@static
@since 3.5.0
**/
/**
CSS class added to an app's `viewContainer` node.
@property VIEWS_CSS_CLASS
@type String
@default "yui3-app-views"
@static
@since 3.5.0
**/
/**
Properties that shouldn't be turned into ad-hoc attributes when passed to
App's constructor.
@property _NON_ATTRS_CFG
@type Array
@static
@protected
@since 3.5.0
**/
_NON_ATTRS_CFG: ['views']
});
// -- Namespace ----------------------------------------------------------------
/**
Provides a top-level application component which manages navigation and views.
This gives you a foundation and structure on which to build your application; it
combines robust URL navigation with powerful routing and flexible view
management.
`Y.App` is both a namespace and constructor function. The `Y.App` class is
special in that any `Y.App` class extensions that are included in the YUI
instance will be **auto-mixed** on to the `Y.App` class. Consider this example:
YUI().use('app-base', 'app-transitions', function (Y) {
// This will create two YUI Apps, `basicApp` will not have transitions,
// but `fancyApp` will have transitions support included and turn it on.
var basicApp = new Y.App.Base(),
fancyApp = new Y.App({transitions: true});
});
@class App
@param {Object} [config] The following are configuration properties that can be
specified _in addition_ to default attribute values and the non-attribute
properties provided by `Y.Base`:
@param {Object} [config.views] Hash of view-name to metadata used to
declaratively describe an application's views and their relationship with
the app and other views. The views specified here will override any defaults
provided by the `views` object on the `prototype`.
@constructor
@extends App.Base
@uses App.Transitions
@since 3.5.0
**/