Merge pull request #1076 from ethereum/yann300-patch-4

Update best-practices.md
pull/1/head
yann300 7 years ago committed by GitHub
commit 5eb1393f18
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 10
      best-practices.md

@ -2,6 +2,16 @@
- `ES6 class` rather than ES5 to create class.
- CSS declaration using `csjs-inject`.
- CSS files:
 **if** the CSS section of an UI component is too important, CSS declarations should be put in a different file and in a different folder.
The folder should be named `styles` and the file should be named with the extension `-styles.css`.
 e.g: `file-explorer.js` being an UI component `file-explorer-styles.css` is created in the `styles` folder right under `file-explorer.js`
**if** the CSS section of an UI component is rather limited it is preferable to put it in the corresponding JS file.
- HTML declaration using `yo-yo`.
- `opt` is an input parameter, it contains the `api` and `event` object.
- `self._api = opts.api` `opts.api` is an object which contains functions/features that the module needs.

Loading…
Cancel
Save