Skip to content

Instantly share code, notes, and snippets.

DS = SC.Namespace.create();
DS.property = function(transforms) {
transforms = transforms || {};
return SC.computed(function(key, value) {
var data = SC.get(this, 'data'), value, val,
name = transforms.keyName || key;
var from = transforms && transforms.from;
var to = transforms && transforms.to;
@wycats
wycats / sc-notes.mkd
Created August 21, 2011 21:33 — forked from paul/sc-notes.mkd

Sproutcore 2.0 questions

I'm trying to write a complicated app in SC2. There's no editing component yet, just a display of (lots of data). Starting from the Todos & Handlebars guides, here's some of the stuff I've had to google for, or wasn't readily obvious.

Note: I like coffeescript and haml

  • Why is there sometimes references to SC.ArrayController?

    • Colin C: it was gone but its back now. we need to generate the docs again.
  • Why is App.fooController an SC.Object, and App.foosController an SC.ArrayProxy? Shouldn't there just be a generic SC.Controller, or SC.CollectionController, if the behavior is different?

{{#view SC.FormView target="Todos.userSessionController" action="signIn"}}
<!-- name="name" will be used to bind text fied to proper target,
insertNewLine will automatically call action -->
{{view Todos.TextField placeholder="Email" name="email"}}
{{view Todos.TextField placeholder="Password" type="password" name="password"}}
{{#view SC.Submit text="Sign in"}}
{{/view}}
def process_call(line, receiver, name, arguments)
# if a form is recognized, the transform calls eg process_special_send() which
# creates and returns a node, and process_transforms returns true to abort normal
# processing. Normal processing creates a Send or SendWithArguments node.
return if process_transforms(line, receiver, name, arguments)
if arguments
AST::SendWithArguments.new line, receiver, name, arguments
else
AST::Send.new line, receiver, name
/*
Define a library called foo that has a parse and render
functionality, and a utility function called escape.
*/
/** foo.js **/
//If wanting a global, declare it here
var foo;
//Assemble foo from parts
MyApp.ButtonBehavior = SC.Behavior.extend({
target: 'MyApp',
action: 'doSomething',
initialHandler: 'mouseUpNotOver',
mouseUpNotOver: SC.State.extend({
mouseEntered: 'mouseUpOver'
// no class name applied (in active)
#!/usr/bin/env ruby
require "socket"
puts "Connecting to IRC..."
irc = TCPSocket.open('irc.freenode.net', 6667)
irc.send("USER blah blah blah :blah blah\n", 0)
irc.send("NICK ChanScanBot\n", 0)
puts "Joining #sproutcore"
@wycats
wycats / huh?
Created December 21, 2010 20:07 — forked from jonathan/huh?
<select id="item-kind" name="item[kind]" class="kind">
{{itemOptions this}}
</select>
helpers =
formItemOptions: (item) ->
_.reduce(
item.itemKinds
(out, itemKind) ->
@wycats
wycats / gist:715107
Created November 25, 2010 08:59 — forked from anonymous/gist:715104
/* Jison generated parser */
var handlebars = (function(){
var parser = {trace: function trace() { },
yy: {},
symbols_: {"error":2,"root":3,"program":4,"statements":5,"simpleInverse":6,"statement":7,"openBlock":8,"closeBlock":9,"mustache":10,"partial":11,"CONTENT":12,"COMMENT":13,"OPEN_BLOCK":14,"inMustache":15,"CLOSE":16,"OPEN_ENDBLOCK":17,"id":18,"OPEN":19,"OPEN_PARTIAL":20,"OPEN_INVERSE":21,"params":22,"param":23,"STRING":24,"ID":25,"$accept":0,"$end":1},
terminals_: {"2":"error","12":"CONTENT","13":"COMMENT","14":"OPEN_BLOCK","16":"CLOSE","17":"OPEN_ENDBLOCK","19":"OPEN","20":"OPEN_PARTIAL","21":"OPEN_INVERSE","24":"STRING","25":"ID"},
productions_: [0,[3,1],[4,3],[4,1],[5,1],[5,2],[7,3],[7,1],[7,1],[7,1],[7,1],[8,3],[9,3],[10,3],[11,3],[6,2],[15,2],[15,1],[22,2],[22,1],[23,1],[23,1],[18,1]],
performAction: function anonymous(yytext,yyleng,yylineno,yy) {
var $$ = arguments[5],$0=arguments[5].length;
@wycats
wycats / bind_helper?
Created November 17, 2010 01:18 — forked from nalanj/bind_helper?
<html>
<body>
<form>
{{#bind name}}<input type="text" value="{{.}}" />{{/bind}}
</form>
</body>
</html>