|
@@ -3,18 +3,21 @@ Domite subclass: #Silk
|
|
instanceVariableNames: ''
|
|
instanceVariableNames: ''
|
|
package: 'Silk'!
|
|
package: 'Silk'!
|
|
!Silk commentStamp!
|
|
!Silk commentStamp!
|
|
-I am adding convenience APIs to my subclass, `Domite`.
|
|
|
|
|
|
+I am subclass of `Domite` with more convenient high-level API.
|
|
|
|
|
|
##Rendering
|
|
##Rendering
|
|
|
|
|
|
- - `aSilk << anObject` uses double-dispatch via `renderOnSilk:`. This allows creating widgets (no formal superclass, anything with `renderOnSilk:` is a widget), as well as incorporating magic on other objects:
|
|
|
|
|
|
+ - `aSilk << anObject` uses double-dispatch via `renderOnSilk:`.
|
|
|
|
+This allows to create widgets
|
|
|
|
+(no formal superclass, anything with `renderOnSilk:` is a widget),
|
|
|
|
+as well as incorporating magic on certain types of objects:
|
|
- blocks: `aSilk << aBlock` runs the block, passing aSilk as a parameter.
|
|
- blocks: `aSilk << aBlock` runs the block, passing aSilk as a parameter.
|
|
- associations: `aSilk << (key -> value)` set attribute key to value.
|
|
- associations: `aSilk << (key -> value)` set attribute key to value.
|
|
|
|
|
|
-It is good to note that rendering collection has magic
|
|
|
|
-of its own built-in in general: if you `stream << aCollection`, its items are `<<`'d in sequence.
|
|
|
|
-So, de facto, array are deeply flattened
|
|
|
|
-when putting on a stream via `<<`.
|
|
|
|
|
|
+Worthful to note is, rendering a collection has its magic
|
|
|
|
+already built-in (via `putOn:`) -- if you `stream << aCollection`,
|
|
|
|
+its items are `<<`'d in sequence.
|
|
|
|
+So, de facto, arrays are deeply flattened when put on a stream via `<<`.
|
|
|
|
|
|
##Convenience
|
|
##Convenience
|
|
|
|
|
|
@@ -28,8 +31,14 @@ elements with any (letters-and-numbers) tag name,
|
|
Next samples show this on an example of `<div>`.
|
|
Next samples show this on an example of `<div>`.
|
|
|
|
|
|
- `Silk DIV` is shortcut for `Silk newElement: 'div'`.
|
|
- `Silk DIV` is shortcut for `Silk newElement: 'div'`.
|
|
- - `aSilk DIV` is shortcut for `[ |tmp| tmp := Silk DIV. aSilk << tmp. tmp] value`. IOW, it not just creates the element and returns it, but also puts in on aSilk.
|
|
|
|
- - `aSilk DIV: anObject` is shortcut for `aSilk DIV << anObject; yourself`. IOW, it not just creates and insert the element, but puts a content into it.
|
|
|
|
|
|
+ - `aSilk DIV` is shortcut for
|
|
|
|
+`[ |tmp| tmp := Silk DIV. aSilk << tmp. tmp] value`.
|
|
|
|
+IOW, it not just creates the element and returns it,
|
|
|
|
+but also puts in on aSilk.
|
|
|
|
+ - `aSilk DIV: anObject` is shortcut for
|
|
|
|
+`aSilk DIV << anObject; yourself`.
|
|
|
|
+IOW, it not just creates and inserts the element,
|
|
|
|
+but puts a content into it.
|
|
|
|
|
|
##Conclusions
|
|
##Conclusions
|
|
|
|
|
|
@@ -39,7 +48,8 @@ Taken all this together, one can do pretty neat constructs:
|
|
aSilk P: { 'id'->'mission'. 'We are the champions.' }
|
|
aSilk P: { 'id'->'mission'. 'We are the champions.' }
|
|
```
|
|
```
|
|
|
|
|
|
-adds `<p id="mission">We are the champions.</p>` into `aSilk`.!
|
|
|
|
|
|
+adds `<p id="mission">We are the champions.</p>` into `aSilk`
|
|
|
|
+and returns the Silk-wrapped `<p>` with insertion cursor at the end.!
|
|
|
|
|
|
!Silk methodsFor: 'writing'!
|
|
!Silk methodsFor: 'writing'!
|
|
|
|
|