load comments from source
This commit is contained in:
parent
d0b4727f72
commit
24af1f65d4
1 changed files with 95 additions and 37 deletions
132
docs/api.js
132
docs/api.js
|
@ -7,6 +7,25 @@ $(function() {
|
||||||
app.$document = $(document);
|
app.$document = $(document);
|
||||||
app.$window = $(window);
|
app.$window = $(window);
|
||||||
|
|
||||||
|
app.docstrings = {};
|
||||||
|
$("<div>").load('../build/js/ox.ui.js', function(data) {
|
||||||
|
app.source = data;
|
||||||
|
var docstrings = app.source.match(/\/\*\*\n([\s\S]+?\*\/\n.*?)\n/gm)
|
||||||
|
docstrings.forEach(function(doc) {
|
||||||
|
doc = Ox.trim(doc);
|
||||||
|
var name = doc.match(/Ox\.(.+) = function/);
|
||||||
|
if(name) {
|
||||||
|
doc = doc.split('\n');
|
||||||
|
doc.splice(0, 1);
|
||||||
|
doc.pop();
|
||||||
|
doc.pop();
|
||||||
|
//remove whitespace
|
||||||
|
var offset = /^\s+/.exec(doc[0]);
|
||||||
|
if(offset)
|
||||||
|
doc = Ox.map(doc, function(line) { return line.substring(offset[0].length)});
|
||||||
|
app.docstrings[name[1]] = Ox.trim(doc.join('\n'));
|
||||||
|
}
|
||||||
|
})
|
||||||
app.$ui = {};
|
app.$ui = {};
|
||||||
app.docs = getDocsJSON();
|
app.docs = getDocsJSON();
|
||||||
app.$ui.actionList = constructList();
|
app.$ui.actionList = constructList();
|
||||||
|
@ -27,6 +46,7 @@ $(function() {
|
||||||
});
|
});
|
||||||
|
|
||||||
$main.appendTo(app.$body);
|
$main.appendTo(app.$body);
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
function constructList() {
|
function constructList() {
|
||||||
|
@ -48,8 +68,14 @@ function constructList() {
|
||||||
request: function(data, callback) {
|
request: function(data, callback) {
|
||||||
var items = [];
|
var items = [];
|
||||||
app.docs.forEach(function(v) {
|
app.docs.forEach(function(v) {
|
||||||
items.push({'name': v.name});
|
items.push(v.name);
|
||||||
});
|
});
|
||||||
|
Ox.keys(app.docstrings).forEach(function(v) {
|
||||||
|
if(!$.inArray(v.name, items)) {
|
||||||
|
items.push(v.name);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
items = Ox.map(items, function(i) { return {name: i}});
|
||||||
items.sort(function(a, b) { if(a.name < b.name) { return -1 } else if( a.name == b.name) { return 0 }else { return 1 } })
|
items.sort(function(a, b) { if(a.name < b.name) { return -1 } else if( a.name == b.name) { return 0 }else { return 1 } })
|
||||||
if(!data.keys) {
|
if(!data.keys) {
|
||||||
var result = {'data': {'items': items.length}};
|
var result = {'data': {'items': items.length}};
|
||||||
|
@ -80,49 +106,81 @@ function constructList() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function getDocHtml(doc) {
|
function getDocHtml(doc) {
|
||||||
var wrapper = $('<div>');
|
function cell(content) {
|
||||||
var title = $('<h2>').html(doc.name).appendTo(wrapper);
|
return $('<td>').css({'padding-right': '4px'}).html(content);
|
||||||
var $options = $('<div>').html("Options: ").css({'marginBottom': '20px'}).appendTo(wrapper);
|
}
|
||||||
Ox.keys(doc.options).forEach(function(k) {
|
|
||||||
var $option = $('<div>');
|
var $div = $('<div>');
|
||||||
var optionKey = $('<b>').html(k + ": ").appendTo($option);
|
var title = $('<h2>').html('Ox.'+doc.name)
|
||||||
var optionVal = $('<span>').html(typeof doc.options[k]).appendTo($option);
|
.appendTo($div);
|
||||||
$('<span>').html(' <b>' + doc.options[k].toString() + '</b>').appendTo($option);
|
|
||||||
$option.appendTo($options);
|
if(app.docstrings[doc.name])
|
||||||
});
|
$('<pre>').html(app.docstrings[doc.name]).appendTo($div);
|
||||||
var methods = Ox.keys(doc.methods);
|
|
||||||
if (methods.length > 0) {
|
var $options = $('<div>').html("Options: ")
|
||||||
var $methods = $('<div>').html("Methods: <br>").appendTo(wrapper);
|
.css({'marginBottom': '20px'})
|
||||||
methods.forEach(function(m) {
|
.appendTo($div);
|
||||||
var $m = $('<div>').appendTo($methods);
|
var $table = $('<table>').attr({'cellpadding': '4'})
|
||||||
var f = $('<pre>').html(doc.methods[m]).hide();
|
.appendTo($options);
|
||||||
var title = m;
|
Ox.keys(doc.options).forEach(function(k) {
|
||||||
var options = /function \((.*?)\)/.exec(doc.methods[m]);
|
var $option = $('<tr>');
|
||||||
if(options) {
|
cell(k).appendTo($option);
|
||||||
title = title + '('+options[1]+')';
|
if(typeof(doc.options[k]) != 'undefined') {
|
||||||
|
cell(typeof doc.options[k]).appendTo($option);
|
||||||
|
if(Ox.isNull(doc.options[k]))
|
||||||
|
cell(' <b>null</b>').appendTo($option);
|
||||||
|
else
|
||||||
|
cell(' <b>' + doc.options[k].toString() + '</b>').appendTo($option);
|
||||||
|
} else {
|
||||||
|
cell(' ').appendTo($option);
|
||||||
|
cell('<b>required, no default value</b>').appendTo($option);
|
||||||
}
|
}
|
||||||
var lable = new Ox.Label({
|
$option.appendTo($options);
|
||||||
title: title,
|
});
|
||||||
width: 190
|
|
||||||
})
|
var methods = Ox.keys(doc.methods);
|
||||||
.css({'float': 'left', 'margin-right': '4px'})
|
if (methods.length > 0) {
|
||||||
.addClass("margin")
|
var $methods = $('<div>').html("Methods:").appendTo($div);
|
||||||
.appendTo($m);
|
methods.forEach(function(m) {
|
||||||
var b = new Ox.Button({
|
var $method = $('<div>').appendTo($methods);
|
||||||
|
var $code = $('<pre>').html(doc.methods[m]).hide();
|
||||||
|
var options = /function \((.*?)\)/.exec(doc.methods[m]);
|
||||||
|
var lable = new Ox.Label({
|
||||||
|
title: m + '('+options[1]+')',
|
||||||
|
width: 190
|
||||||
|
})
|
||||||
|
.css({'float': 'left', 'margin-right': '4px'})
|
||||||
|
.addClass("margin")
|
||||||
|
.appendTo($method);
|
||||||
|
var $button = new Ox.Button({
|
||||||
|
title: [
|
||||||
|
{id: "one", title: "expand"},
|
||||||
|
{id: "two", title: "collapse"},
|
||||||
|
],
|
||||||
|
type: "image"
|
||||||
|
})
|
||||||
|
.addClass("margin")
|
||||||
|
.appendTo($method)
|
||||||
|
.click(function() { $code.toggle()});
|
||||||
|
$code.appendTo($method);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
var $methodcode = $('<pre>').html(doc.functionString.replace(/</g, '<'))
|
||||||
|
.hide();
|
||||||
|
var $button = new Ox.Button({
|
||||||
title: [
|
title: [
|
||||||
{id: "one", title: "expand"},
|
{id: "one", title: "expand"},
|
||||||
{id: "two", title: "collapse"},
|
{id: "two", title: "collapse"},
|
||||||
],
|
],
|
||||||
type: "image"
|
type: "image"
|
||||||
})
|
})
|
||||||
.addClass("margin")
|
.addClass("margin")
|
||||||
.appendTo($m)
|
.click(function() { $methodcode.toggle()})
|
||||||
.click(function() { f.toggle()});
|
.appendTo($div)
|
||||||
f.appendTo($m);
|
$('<span>').html(' View Source').appendTo($div)
|
||||||
});
|
$methodcode.appendTo($div);
|
||||||
}
|
return $div;
|
||||||
var $functionString = $('<pre>').html(doc.functionString).appendTo(wrapper);
|
|
||||||
return wrapper;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function getObjectByName(obj, name) {
|
function getObjectByName(obj, name) {
|
||||||
|
|
Loading…
Reference in a new issue