First revision complete

master
Roy Truelove 12 years ago
parent b076ad6ba0
commit 9ce14d888a

@ -1,11 +1,19 @@
# angular-seed-coffeescript — the seed for AngularJS apps, in coffeescript
# angular-seed-coffeescript
## The seed for AngularJS apps, in coffeescript
This project is a straight coffeescript port of the [angular-seed](https://github.com/angular/angular-seed) project.
This project is a straight [coffeescript](http://coffeescript.org/) port of the [angular-seed](https://github.com/angular/angular-seed) project.
## Current Status
## Status
Not yet alpha.
Ready for use.
## Noted differences from angular-seed
* The use of coffeescript requires that Angular be [bootstrapped manually](http://docs.angularjs.org/guide/bootstrap).
* `ng-app` has been removed from `html` element of `index.html`
* `angular.bootstrap` called in `app.coffee`
* In `angular-seed` controllers are defined as global functions. Since coffeescript runs in an anonymous function, the controllers need to be attached directly to the `window` object
## TODOs
Everything
* Bring back index-async.html
* Port tests to coffeescript (currently still js)

@ -0,0 +1,10 @@
angular
.module( 'myApp', ['myApp.filters', 'myApp.services', 'myApp.directives'])
.config( ['$routeProvider', ($routeProvider)->
$routeProvider.when('/view1', {templateUrl: 'partials/partial1.html', controller: MyCtrl1})
$routeProvider.when('/view2', {templateUrl: 'partials/partial2.html', controller: MyCtrl2})
$routeProvider.otherwise({redirectTo: '/view1'})
])
angular.bootstrap(document,['myApp'])

@ -0,0 +1,7 @@
#Controllers
window.MyCtrl1 = ()->
MyCtrl1.$inject = []
window.MyCtrl2 = ()->
MyCtrl2.$inject = []

@ -0,0 +1,9 @@
# Directives
angular
.module('myApp.directives', [])
.directive('appVersion', ['version', (version)->
(scope, elm, attrs)->
elm.text(version)
])

@ -0,0 +1,10 @@
# Filters
angular
.module('myApp.filters', [])
.filter('interpolate',
['version', (version)->
(text)->
return String(text).replace(/\%VERSION\%/mg, version)
])

@ -0,0 +1,6 @@
# Services
# Demonstrate how to register services
#In this case it is a simple value service.
angular.module('myApp.services', [])
.value('version', '0.1');

@ -1,57 +0,0 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<style>
[ng-cloak] {
display: none;
}
</style>
<script>
// include angular loader, which allows the files to load in any order
/*
AngularJS v1.0.0rc1
(c) 2010-2012 AngularJS http://angularjs.org
License: MIT
*/
'use strict';(function(i){function d(c,a,e){return c[a]||(c[a]=e())}return d(d(i,"angular",Object),"module",function(){var c={};return function(a,e,f){e&&c.hasOwnProperty(a)&&(c[a]=null);return d(c,a,function(){function b(a,b,d){return function(){c[d||"push"]([a,b,arguments]);return g}}if(!e)throw Error("No module: "+a);var c=[],d=[],h=b("$injector","invoke"),g={_invokeQueue:c,_runBlocks:d,requires:e,name:a,provider:b("$provide","provider"),factory:b("$provide","factory"),service:b("$provide","service"),
value:b("$provide","value"),constant:b("$provide","constant","unshift"),filter:b("$filterProvider","register"),directive:b("$compileProvider","directive"),config:h,run:function(a){d.push(a);return this}};f&&h(f);return g})}})})(window);
// include a third-party async loader library
/*!
* $script.js v1.3
* https://github.com/ded/script.js
* Copyright: @ded & @fat - Dustin Diaz, Jacob Thornton 2011
* Follow our software http://twitter.com/dedfat
* License: MIT
*/
!function(a,b,c){function t(a,c){var e=b.createElement("script"),f=j;e.onload=e.onerror=e[o]=function(){e[m]&&!/^c|loade/.test(e[m])||f||(e.onload=e[o]=null,f=1,c())},e.async=1,e.src=a,d.insertBefore(e,d.firstChild)}function q(a,b){p(a,function(a){return!b(a)})}var d=b.getElementsByTagName("head")[0],e={},f={},g={},h={},i="string",j=!1,k="push",l="DOMContentLoaded",m="readyState",n="addEventListener",o="onreadystatechange",p=function(a,b){for(var c=0,d=a.length;c<d;++c)if(!b(a[c]))return j;return 1};!b[m]&&b[n]&&(b[n](l,function r(){b.removeEventListener(l,r,j),b[m]="complete"},j),b[m]="loading");var s=function(a,b,d){function o(){if(!--m){e[l]=1,j&&j();for(var a in g)p(a.split("|"),n)&&!q(g[a],n)&&(g[a]=[])}}function n(a){return a.call?a():e[a]}a=a[k]?a:[a];var i=b&&b.call,j=i?b:d,l=i?a.join(""):b,m=a.length;c(function(){q(a,function(a){h[a]?(l&&(f[l]=1),o()):(h[a]=1,l&&(f[l]=1),t(s.path?s.path+a+".js":a,o))})},0);return s};s.get=t,s.ready=function(a,b,c){a=a[k]?a:[a];var d=[];!q(a,function(a){e[a]||d[k](a)})&&p(a,function(a){return e[a]})?b():!function(a){g[a]=g[a]||[],g[a][k](b),c&&c(d)}(a.join("|"));return s};var u=a.$script;s.noConflict=function(){a.$script=u;return this},typeof module!="undefined"&&module.exports?module.exports=s:a.$script=s}(this,document,setTimeout)
// load all of the dependencies asynchronously.
$script([
'lib/angular/angular.js',
'js/app.js',
'js/services.js',
'js/controllers.js',
'js/filters.js',
'js/directives.js'
], function() {
// when all is done, execute bootstrap angular application
angular.bootstrap(document, ['myApp']);
});
</script>
<title>My AngularJS App</title>
<link rel="stylesheet" href="css/app.css">
</head>
<body>
<ul class="menu">
<li><a href="#/view1">view1</a></li>
<li><a href="#/view2">view2</a></li>
</ul>
<div ng-view></div>
<div>Angular seed app: v<span app-version></span></div>
</body>
</html>

@ -1,5 +1,5 @@
<!doctype html>
<html lang="en" ng-app="myApp">
<html lang="en">
<head>
<meta charset="utf-8">
<title>My AngularJS App</title>
@ -16,10 +16,16 @@
<div>Angular seed app: v<span app-version></span></div>
<script src="lib/angular/angular.js"></script>
<script src="js/app.js"></script>
<script src="js/services.js"></script>
<script src="js/controllers.js"></script>
<script src="js/filters.js"></script>
<script src="js/directives.js"></script>
<!-- Allows for coffeescript compiling on the fly. -->
<!-- Not recommended for production use. See http://coffeescript.org/#scripts. -->
<script src="lib/coffeescript/coffee-script.js"></script>
<script src="coffee/services.coffee" type="text/coffeescript"></script>
<script src="coffee/controllers.coffee" type="text/coffeescript"></script>
<script src="coffee/filters.coffee" type="text/coffeescript"></script>
<script src="coffee/directives.coffee" type="text/coffeescript"></script>
<script src="coffee/app.coffee" type="text/coffeescript"></script>
</body>
</html>
</html>

@ -1,10 +0,0 @@
'use strict';
// Declare app level module which depends on filters, and services
angular.module('myApp', ['myApp.filters', 'myApp.services', 'myApp.directives']).
config(['$routeProvider', function($routeProvider) {
$routeProvider.when('/view1', {templateUrl: 'partials/partial1.html', controller: MyCtrl1});
$routeProvider.when('/view2', {templateUrl: 'partials/partial2.html', controller: MyCtrl2});
$routeProvider.otherwise({redirectTo: '/view1'});
}]);

@ -1,12 +0,0 @@
'use strict';
/* Controllers */
function MyCtrl1() {}
MyCtrl1.$inject = [];
function MyCtrl2() {
}
MyCtrl2.$inject = [];

@ -1,11 +0,0 @@
'use strict';
/* Directives */
angular.module('myApp.directives', []).
directive('appVersion', ['version', function(version) {
return function(scope, elm, attrs) {
elm.text(version);
};
}]);

@ -1,10 +0,0 @@
'use strict';
/* Filters */
angular.module('myApp.filters', []).
filter('interpolate', ['version', function(version) {
return function(text) {
return String(text).replace(/\%VERSION\%/mg, version);
}
}]);

@ -1,9 +0,0 @@
'use strict';
/* Services */
// Demonstrate how to register services
// In this case it is a simple value service.
angular.module('myApp.services', []).
value('version', '0.1');

File diff suppressed because one or more lines are too long