head.js revision 932d7ebf70bd2db97236675c4c2e3ab59dd4fe55
/**
View class responsible for rendering the `<thead>` section of a table. Used as
the default `headerView` for `Y.DataTable.Base` and `Y.DataTable` classes.
Translates the provided array of column configuration objects into a rendered
`<thead>` based on the data in those objects.
The structure of the column data is expected to be a single array of objects,
where each object corresponds to a `<th>`. Those objects may contain a
`children` property containing a similarly structured array to indicate the
nested cells should be grouped under the parent column's colspan in a separate
row of header cells. E.g.
<pre><code>
new Y.DataTable.HeaderView({
container: tableNode,
columns: [
{ key: 'id' }, // no nesting
{ key: 'name', children: [
{ key: 'firstName', label: 'First' },
{ key: 'lastName', label: 'Last' } ] }
]
}).render();
</code></pre>
This would translate to the following visualization:
<pre>
---------------------
| | name |
| |---------------
| id | First | Last |
---------------------
</pre>
Supported properties of the column objects include:
* `label` - The HTML content of the header cell.
* `key` - If `label` is not specified, the `key` is used for content.
* `children` - Array of columns to appear below this column in the next
row.
* `abbr` - The content of the 'abbr' attribute of the `<th>`
Through the life of instantiation and rendering, the column objects will have
the following properties added to them:
* `colspan` - To supply the `<th>` attribute
* `rowspan` - To supply the `<th>` attribute
* `parent` - If the column is a child of another column, this points to
its parent column
* `_yuid` - A unique YUI generated id used as the `<th>`'s 'id' for
reference in the data `<td>`'s 'headers' attribute.
The column object is also used to provide values for {placeholder} tokens in the
instance's `CELL_TEMPLATE`, so you can modify the template and include other
column object properties to populate them.
@module datatable-head
@class HeaderView
@namespace DataTable
@extends View
**/
toArray = Y.Array,
// -- Instance properties -------------------------------------------------
/**
Template used to create the table's header cell markup. Override this to
customize how these cells' markup is created.
@property CELL_TEMPLATE
@type {HTML}
@default '<th id="{_yuid}" abbr="{abbr} colspan="{colspan}" rowspan="{rowspan}" class="{className}">{content}</th>'
**/
'<th id="{_yuid}" abbr="{abbr}" colspan="{colspan}" rowspan="{rowspan}" class="{className}" scope="col" role="columnheader">{content}</th>',
/**
The data representation of the header rows to render. This is assigned by
parsing the `columns` configuration array, and is used by the render()
method.
@property columns
@type {Array[]}
@default (initially unset)
**/
//TODO: should this be protected?
//columns: null,
/**
The object that serves as the source of truth for column and row data.
This property is assigned at instantiation from the `source` property of
the configuration object passed to the constructor.
@property source
@type {Object}
@default (initially unset)
**/
//TODO: should this be protected?
//source: null,
/**
Template used to create the table's header row markup. Override this to
customize the row markup.
@property ROW_TEMPLATE
@type {HTML}
@default '<tr>{content}</tr>'
**/
'<tr role="row">{content}</tr>',
// -- Public methods ------------------------------------------------------
/**
Builds a CSS class name from the provided tokens. If the instance is
created with `cssPrefix` or `source` in the configuration, it will use this
prefix (the `_cssPrefix` of the `source` object) as the base token. This
allows class instances to generate markup with class names that correspond
to the parent class that is consuming them.
@method getClassName
@param {String} token* Any number of tokens to include in the class name
@return {String} The generated class name
**/
getClassName: function () {
},
/**
Creates the `<thead>` Node content by assembling markup generated by
populating the `ROW_TEMPLATE` and `CELL_TEMPLATE` templates with content
from the `columns` property.
@method render
@return {HeaderView} The instance
@chainable
**/
render: function () {
defaults = {
abbr: '',
colspan: 1,
rowspan: 1
},
html = '';
content = '';
}
Y.merge(
col, {
("Column " + (j + 1))
}
));
}
});
}
}
}
this.bindUI();
return this;
},
// -- Protected and private properties and methods ------------------------
/**
The base token for classes created with the `getClassName` method.
@property _cssPrefix
@type {String}
@default 'yui3-table'
@protected
**/
/**
Handles changes in the source's columns attribute. Redraws the headers.
@method _afterColumnsChange
@param {EventFacade} e The `columnsChange` event object
@protected
**/
_afterColumnsChange: function (e) {
this.render();
},
/**
Binds event subscriptions from the UI and the source (if assigned).
@method bindUI
@protected
**/
bindUI: function () {
// TODO: How best to decouple this?
this._eventHandles.columnsChange =
Y.bind('_afterColumnsChange', this));
}
},
/**
Destroys the instance.
@method destructor
@protected
**/
destructor: function () {
},
/**
Holds the event subscriptions needing to be detached when the instance is
`destroy()`ed.
@property _eventHandles
@type {Object}
@default undefined (initially unset)
@protected
**/
//_eventHandles: null,
/**
Initializes the instance. Reads the following configuration properties:
* `columns` - (REQUIRED) The initial column information
* `cssPrefix` - The base string for classes generated by `getClassName`
* `source` - The object to serve as source of truth for column info
@method initializer
@param {Object} config Configuration data
@protected
**/
initializer: function (config) {
this._eventHandles = [];
if (cssPrefix) {
this._cssPrefix = cssPrefix;
}
},
/**
Translate the input column format into a structure useful for rendering a
`<thead>`, rows, and cells. The structure of the input is expected to be a
single array of objects, where each object corresponds to a `<th>`. Those
objects may contain a `children` property containing a similarly structured
array to indicate the nested cells should be grouped under the parent
column's colspan in a separate row of header cells. E.g.
<pre><code>
[
{ key: 'id' }, // no nesting
{ key: 'name', children: [
{ key: 'firstName', label: 'First' },
{ key: 'lastName', label: 'Last' } ] }
]
</code></pre>
would indicate two header rows with the first column 'id' being assigned a
`rowspan` of `2`, the 'name' column appearing in the first row with a
`colspan` of `2`, and the 'firstName' and 'lastName' columns appearing in
the second row, below the 'name' column.
<pre>
---------------------
| | name |
| |---------------
| id | First | Last |
---------------------
</pre>
Supported properties of the column objects include:
* `label` - The HTML content of the header cell.
* `key` - If `label` is not specified, the `key` is used for content.
* `children` - Array of columns to appear below this column in the next
row.
* `abbr` - The content of the 'abbr' attribute of the `<th>`
The output structure is basically a simulation of the `<thead>` structure
with arrays for rows and objects for cells. Column objects have the
following properties added to them:
* `colspan` - Per the `<th>` attribute
* `rowspan` - Per the `<th>` attribute
* `parent` - If the column is a child of another column, this points to
its parent column
* `_yuid` - A unique YUI generated id used as the `<th>`'s 'id' for
reference in the data `<td>`'s 'headers' attribute.
The column object is also used to provide values for {placeholder}
replacement in the `CELL_TEMPLATE`, so you can modify the template and
include other column object properties to populate them.
@method _parseColumns
@param {Object[]} data Array of column object data
@return {Array[]} An array of arrays corresponding to the header row
structure to render
@protected
**/
_parseColumns: function (data) {
var columns = [],
stack = [],
rowSpan = 1,
// First pass, assign colspans and calculate row count for
// non-nested headers' rowspan
entry[1] = i;
// break to let the while loop process the children
break;
} else {
}
}
if (i >= len) {
// All columns in this row are processed
// Can't use .length because in 3+ rows, colspan
// needs to aggregate the colspans of children
// Assign the parent column for ease of navigation
}
}
}
}
// Second pass, build row arrays and assign rowspan
for (i = 0; i < rowSpan; ++i) {
}
entry[1] = i;
// parent cells must assume rowspan 1 (long story)
// break to let the while loop process the children
break;
} else {
// collect the IDs of parent cols
}
}
}
if (i >= len) {
// All columns in this row are processed
}
}
}
return columns;
}
});