Skip to content

Commit d8c0951

Browse files
committed
feat: create new snake instance dynamically
1 parent 26bc61e commit d8c0951

File tree

3 files changed

+82
-26
lines changed

3 files changed

+82
-26
lines changed

.storybook/snake.stories.js

+35
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
import {createElement as h} from 'react';
2+
import {storiesOf} from '@storybook/react';
3+
const {action} = require('@storybook/addon-actions');
4+
const {linkTo} = require('@storybook/addon-links');
5+
const {create} = require('../index');
6+
const {addon: addonRule} = require('../addon/rule');
7+
const {addon: addonCache} = require('../addon/cache');
8+
const {addon: addonSnake} = require('../addon/snake');
9+
10+
const nano = create({h});
11+
addonRule(nano);
12+
addonCache(nano);
13+
addonSnake(nano);
14+
15+
const {s} = nano;
16+
17+
const redBorderClass = nano.rule(
18+
s.bd('1px solid red').obj
19+
);
20+
21+
const lazy = s.ta('center');
22+
23+
storiesOf('Addons/snake', module)
24+
.add('Inside rule()', () =>
25+
h('div', {className: redBorderClass}, 'Hello world')
26+
)
27+
.add('Evaluate inline', () =>
28+
h('div', {className: s.col('blue')}, 'Hello world')
29+
)
30+
.add('Lazy evaluate', () =>
31+
h('div', {className: lazy}, 'Hello world')
32+
)
33+
.add('Getters', () =>
34+
h('div', {className: s.bgBlack.col('pink')}, 'Hello world')
35+
)

addon/snake.js

+39-26
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
/* eslint-disable no-invalid-this */
12
'use strict';
23

34
var atoms = require('./atoms').atoms;
@@ -7,27 +8,47 @@ var createSnake = function (renderer, rules) {
78

89
var defaultRules = renderer.assign({}, atoms, {
910
bgWhite: function () {
10-
defaultRules.bg.call(this, '#fff');
11+
this.backgroundColor = '#fff';
1112
},
1213

1314
bgBlack: function () {
14-
defaultRules.bg.call(this, '#000');
15+
this.backgroundColor = '#000';
1516
},
1617
});
1718

1819
rules = renderer.assign({}, defaultRules, rules);
1920

20-
var snake = {
21-
start: function () {
22-
var instance = Object.create(snake);
21+
var snake = {};
2322

24-
instance.obj = {};
25-
instance.toString = function () {
26-
return renderer.cache(instance.obj);
27-
};
23+
var start = function () {
24+
var instance = Object.create(snake);
2825

29-
return instance;
30-
}
26+
instance.obj = {};
27+
instance.toString = function () {
28+
if (process.env.NODE_ENV !== 'production') {
29+
require('./__dev__/warnOnMissingDependencies')('snake', renderer, ['cache']);
30+
}
31+
32+
return renderer.cache(instance.obj);
33+
};
34+
35+
return instance;
36+
};
37+
38+
var checkStart = function (name, fn) {
39+
return function () {
40+
if (!this.obj) {
41+
var instance = start();
42+
43+
if (typeof instance[name] === 'function') {
44+
return instance[name].apply(instance, arguments);
45+
}
46+
47+
return instance[name];
48+
}
49+
50+
return fn.apply(this, arguments);
51+
};
3152
};
3253

3354
var onRule = function (name) {
@@ -36,22 +57,22 @@ var createSnake = function (renderer, rules) {
3657
if (typeof rule === 'function') {
3758
if (!rule.length) {
3859
Object.defineProperty(snake, name, {
39-
get: function () {
60+
get: checkStart(name, function () {
4061
rule.call(this.obj);
4162
return this;
42-
}
63+
})
4364
});
4465
} else {
45-
snake[name] = function () {
66+
snake[name] = checkStart(name, function () {
4667
rule.apply(this.obj, arguments);
4768
return this;
48-
};
69+
});
4970
}
5071
} else {
51-
snake[name] = function (value) {
72+
snake[name] = checkStart(name, function (value) {
5273
this.obj['' + rule] = value;
5374
return this;
54-
};
75+
});
5576
}
5677
};
5778

@@ -61,15 +82,7 @@ var createSnake = function (renderer, rules) {
6182
};
6283

6384
exports.addon = function (renderer) {
64-
if (process.env.NODE_ENV !== 'production') {
65-
require('./__dev__/warnOnMissingDependencies')('sheet', renderer, ['cache']);
66-
}
67-
6885
var snake = createSnake(renderer);
6986

70-
Object.defineProperty(renderer, 's', {
71-
get: function () {
72-
return snake.start();
73-
}
74-
});
87+
renderer.s = snake;
7588
};

docs/googleFont.md

+8
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,14 @@ Below example loads `Roboto Slab` font at `400` and `700` widths, including `cyr
1515
nano.googleFont('Roboto Slab', [400, 700], 'cyrillic');
1616
```
1717

18+
Now you can use this font.
19+
20+
```js
21+
const className = nano.rule({
22+
fontFamily: '"Roboto Slab", sans'
23+
});
24+
```
25+
1826

1927
## Installation
2028

0 commit comments

Comments
 (0)