typescript-closure-tools
Version:
Command-line tools to convert closure-style JSDoc annotations to typescript, and to convert typescript sources to closure externs files
554 lines (496 loc) • 18.2 kB
text/typescript
/// <reference path="sammyjs.d.ts" />
function test_general() {
// Example from homepage
var app = Sammy('#main', function () {
var _this: Sammy.Application = this;
_this.use('Mustache');
_this.get('#/', function () {
var _this: Sammy.RenderContext;
_this.load('posts.json')
.renderEach('post.mustache')
.swap();
});
});
app.run('#/');
var _this: Sammy.Application;
_this.get('#/', function (context) {
var _this: Sammy.RenderContext;
_this.load('data/items.json')
.then(function (items) {
$.each(items, function (i, item) {
context.log(item.title, '-', item.artist);
});
});
});
}
function test_app() {
var s = new Sammy.Object({ first_name: 'Sammy', last_name: 'Davis Jr.' });
s.toHTML();
var app = $.sammy(function () {
var current_user = false;
function checkLoggedIn(callback) {
var _this: Sammy.EventContext;
if (!current_user) {
$.getJSON('/session', function (json) {
if (json.login) {
current_user = json;
callback();
} else {
current_user = false;
_this.redirect('#/login');
}
});
} else {
callback();
}
};
var _this: Sammy.Application;
_this.around(checkLoggedIn);
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.before('#/route', function () { });
_this.before({ except: { path: '#/route' } }, function () {
_this.log('not before #/route');
});
_this.get('#/', function () { });
_this.get('#/route', function () { });
});
var app = $.sammy(),
context = { verb: 'get', path: '#/mypath' };
app.contextMatchesOptions(context, '#/mypath');
app.contextMatchesOptions(context, '#/otherpath');
app.contextMatchesOptions(context, { only: { path: '#/mypath' } });
app.contextMatchesOptions(context, { only: { path: '#/otherpath' } });
app.contextMatchesOptions(context, /path/);
app.contextMatchesOptions(context, /^path/);
app.contextMatchesOptions(context, { only: { verb: 'get' } });
app.contextMatchesOptions(context, { only: { verb: 'post' } });
app.contextMatchesOptions(context, { except: { verb: 'post' } });
app.contextMatchesOptions(context, { except: { verb: 'get' } });
app.contextMatchesOptions(context, { except: { path: '#/otherpath' } });
app.contextMatchesOptions(context, { except: { path: '#/mypath' } });
app.contextMatchesOptions(context, { path: ['#/mypath', '#/otherpath'] });
app.contextMatchesOptions(context, { path: ['#/otherpath', '#/thirdpath'] });
app.contextMatchesOptions(context, { only: { path: ['#/mypath', '#/otherpath'] } });
app.contextMatchesOptions(context, { only: { path: ['#/otherpath', '#/thirdpath'] } });
app.contextMatchesOptions(context, { except: { path: ['#/mypath', '#/otherpath'] } });
app.contextMatchesOptions(context, { except: { path: ['#/otherpath', '#/thirdpath'] } });
var app = $.sammy(function (app) {
var _this: Sammy.Application;
$.each([1, 2, 3], function (i, num) {
app.helper('helper' + num, function () {
_this.log("I'm helper number " + num);
});
});
_this.get('#/', function () {
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
var better = _this.helpers({
upcase: function (text) {
return text.toString().toUpperCase();
}
});
better.get('#/', function () {
$('#main').html(better.upcase($('#main').text()));
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.mapRoutes([
['get', '#/', function () { }],
['post', '#/create', 'addUser'],
[/dowhatever/, function () { }]
]);
});
var app = $.sammy(function () { });
$(function () {
app.run();
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.setLocationProxy(new Sammy.DataLocationProxy(_this));
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.swap = function (content, callback) {
var context = _this;
context.$element().fadeOut('slow', function () {
context.$element().html(content);
context.$element().fadeIn('slow', function () {
if (callback) {
callback.apply(this);
}
});
});
};
});
var MyPlugin = function (app, prepend) {
var _this: Sammy.Application;
_this.helpers({
myhelper: function (text) {
alert(prepend + " " + text);
}
});
};
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use(MyPlugin, '_this is my plugin');
_this.get('#/', function () {
});
});
$.sammy(function () {
var _this: Sammy.Application;
_this.use('Mustache');
_this.use('Storage');
});
}
function test_misc() {
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.setLocationProxy(new Sammy.DataLocationProxy(_this, 'location', 'rel'));
_this.get('about', function () {
var _this: Sammy.EventContext;
_this.partial('about.html');
});
});
$.sammy(function () {
var _this: Sammy.Application;
_this.get('#/:name', function () {
var _evt: Sammy.EventContext = this;
if (_evt.params['name'] == 'sammy') {
_evt.partial('name.html.erb', { name: 'Sammy' });
} else {
_evt.redirect('#/somewhere-else')
}
});
});
function evtContextTests() {
var _this: Sammy.EventContext;
_this.redirect('#/other/route');
_this.redirect('#', 'other', 'route');
_this.render('mytemplate.mustache', { name: 'quirkey' })
.appendTo('ul');
_this.renderEach('mytemplate.mustache', [{ name: 'quirkey' }, { name: 'endor' }]);
var item = {
name: 'My Item',
price: '$25.50',
meta: {
id: '123'
}
};
var form = new Sammy.FormBuilder('item', item);
form.text('name');
var options = [
['Small', 's'],
['Medium', 'm'],
['Large', 'l']
];
form.select('size', options);
$.sammy(function () {
var _this: Sammy.Application;
_this.use('GoogleAnalytics')
_this.get('#/dont/track/me', function () {
var evt: Sammy.GoogleAnalytics = this;
evt.noTrack();
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use(Sammy.Haml);
_this.get('#/hello/:name', function () {
var evt: Sammy.Haml = this;
evt.title = 'Hello!';
evt.name = evt.params.name;
evt.partial('mytemplate.haml');
});
});
app.run()
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Handlebars', 'hb');
_this.get('#/hello/:name', function () {
var evt: Sammy.Handlebars = this;
evt.title = 'Hello!'
evt.name = evt.params.name;
evt.partial('mytemplate.hb');
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Handlebars', 'hb');
_this.get('#/hello/:name/to/:friend', function (context: Sammy.Handlebars) {
context.load('mypartial.hb')
.then(function (partial) {
context.partials = { hello_friend: partial };
context.name = context.params.name;
// dynamically add a property to the context
(<any>context).friend = context.params.friend;
context.partial('mytemplate.hb');
});
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Hogan', 'hg');
_this.get('#/hello/:name', function () {
var evt: Sammy.Hogan = this;
evt.title = 'Hello!'
evt.name = evt.params.name;
evt.partial('mytemplate.hg');
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Hogan', 'hg');
_this.get('#/hello/:name/to/:friend', function (context) {
context.load('mypartial.hg')
.then(function (partial) {
context.partials = { hello_friend: partial };
context.name = context.params.name;
context.friend = context.params.friend;
context.partial('mytemplate.hg');
});
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use(Sammy.JSON);
_this.get('#/', function () {
var evt: Sammy.JSON = this;
evt.json({ user_id: 123 });
evt.json("{\"user_id\":\"123\"}");
evt.json("{\"user_id\":\"123\"}").user_id;
});
})
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Mustache', 'ms');
_this.get('#/hello/:name', function () {
var evt: Sammy.Mustache = this;
evt.title = 'Hello!'
evt.name = evt.params.name;
evt.partial('mytemplate.ms');
});
});
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use('Mustache', 'ms');
_this.get('#/hello/:name/to/:friend', function (context: Sammy.Mustache) {
context.load('mypartial.ms')
.then(function (partial) {
context.partials = { hello_friend: partial };
context.name = context.params.name;
(<any>context).friend = context.params.friend;
context.partial('mytemplate.ms');
});
});
});
var app = $.sammy(function (app) {
var _this: Sammy.Application;
_this.use(Sammy.NestedParams);
_this.post('#/parse_me', function (context) {
$.log(context.params);
});
});
};
var _this: Sammy.Application;
_this.use('Storage');
_this.use('OAuth2');
_this.oauthorize = "/oauth/authorize";
_this.requireOAuth();
_this.requireOAuth("/private");
_this.before(function (context) { return context.requireOAuth(); })
_this.get("/private", function (context) {
_this.requireOAuth(function () { });
});
_this.bind("oauth.connected", function () { $("#signin").hide() });
_this.bind("oauth.disconnected", function () { $("#signin").show() });
_this.bind("oauth.denied", function (evt, error) {
evt.partial("admin/views/no_access.tmpl", { error: error.message });
});
_this.get("#/signout", function (context) {
context.loseAccessToken();
context.redirect("#/");
});
_this.get('#/', function () {
this.render('mytemplate.template', { name: 'test' });
});
_this.send($.getJSON, '/app.json')
.then(function (json) {
$('#message').text(json['message']);
}
);
_this.get('#/', function () {
var evt: Sammy.EventContext = this;
evt.load('myfile.txt')
.then(function (content) {
$('#main').html(content);
});
});
_this.get('#/', function () {
var evt: Sammy.EventContext = this;
evt.load('mytext.json')
.then(function (content) {
var context = this,
data = JSON.parse(content);
context.wait();
$.post(data.url, {}, function (response) {
context.next(JSON.parse(response));
});
})
.then(function (data) {
$('#message').text(data.status);
});
});
var store = new Sammy.Store({ name: 'mystore', element: '#element', type: 'local' });
store.set('foo', 'bar');
store.get('foo');
store.set('json', { obj: '_this is an obj' });
store.get('json');
store.keys();
store.clear('foo');
store.keys();
store.clearAll();
store.keys();
store.each(function (key, value) {
Sammy.log('key', key, 'value', value);
});
store = new Sammy.Store();
store.exists('foo');
store.fetch('foo', function () {
return 'bar!';
});
store.get('foo');
store.fetch('foo', function () {
return 'baz!';
});
store = new Sammy.Store();
store.set('one', 'two');
store.set('two', 'three');
store.set('1', 'two');
var returned = store.filter(function (key, value) {
return value === 'two';
});
var store = new Sammy.Store();
store.load('mytemplate', '/mytemplate.tpl', function () {
store.get('mytemplate')
});
store = new Sammy.Store({ name: 'kvo' });
$('body').bind('set-kvo-foo', function (e, data?) {
Sammy.log(data.key + ' changed to ' + data.value);
});
store.set('foo', 'bar');
$.sammy(function () {
_this.use('Template');
_this.get('#/', function () {
var evt: Sammy.EventContext = this;
// Adding a dynamic property
(<any>evt).user = { name: 'Aaron Quint' };
evt.partial('user.template');
})
});
_this.use(Sammy.Template, 'tpl');
_this.get('#/', function () {
this.partial('myfile.tpl');
});
_this.get('#/', function () {
this.template('myform.tpl', { form: "<form></form>" }, { escape_html: false });
});
}
function test_routes() {
var _this: Sammy.Application;
_this.route('get', '#/', function () {
});
_this.put('#/post/form', function () {
return false;
});
_this.get('/test/123', function () {
});
_this.get('#/by_name/:name', function () {
alert(this.params['name']);
});
_this.get(/\#\/by_name\/(.*)/, function () {
alert(this.params['splat']);
});
_this.get('#/by_name/:name', function () {
this.redirect('#', this.params['name']);
});
_this.get('#/by_name/:name', function (context) {
context.redirect('#', this.params['name']);
});
}
function test_events() {
var _this: Sammy.Application;
_this.bind('db-loaded', function (e, data) {
var _this: Sammy.EventContext;
_this.redirect('#/');
});
var app1 = $.sammy(function () {
var _this: Sammy.Application;
_this.bind('test', function () {
var _this: Sammy.EventContext;
_this.trigger('other-event');
});
});
app1.trigger('other-event');
var app2 = $.sammy(function () {
var _this: Sammy.Application;
_this.bind('test', function (e, data) {
alert(data['my_data']);
});
_this.get('#/', function () {
_this.trigger('test', { my_data: 'EVENTED!' });
});
});
}
function test_plugins() {
var MyPlugin = function (app) {
var _this: Sammy.Application;
_this.helpers({
alert: function (message) {
_this.log("ALERT! " + message);
}
});
};
var app1 = $.sammy(function () {
var _this: Sammy.Application;
_this.use(MyPlugin);
_this.get('#/', function () {
var _this: Sammy.EventContext;
alert("I'm home");
});
});
var MyAdvancedPlugin = function (app, prefix, suffix) {
var _this: Sammy.Application;
_this.helpers({
alert: function (message) {
_this.log(prefix, message, suffix);
}
});
};
var app = $.sammy(function () {
var _this: Sammy.Application;
_this.use(MyAdvancedPlugin, 'BEFORE!', 'AFTER!');
_this.get('#/', function () {
alert("I'm home");
});
});
var dbLoadAndDisplay = function (app) {
var _this: Sammy.Application;
_this.get('#/', function () {
this.record = this.app.db[this.app.element_selector];
this.app.swap(this.record.toHTML());
});
_this.bind('run', function () {
});
};
var app1 = Sammy('#div_1', function () {
this.use(dbLoadAndDisplay);
});
var app2 = Sammy('#div_2', function () {
this.use(dbLoadAndDisplay);
});
}