0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-01-06 22:40:14 -05:00
ghost/core/client/app
Robert Jackson 27e52c8979 Only attempt to scrollTop if element is available.
In later versions of Ember, the views and components can be stable
and are not guaranteed to be torn down before a new controller is
set on them.

In this case, the controller is initially set before the element has been
rendered to the DOM causing errors when invoking `closest` on undefined.
2015-05-05 19:05:36 -04:00
..
adapters Ember init, bower deps, es6 modules 2015-03-11 12:37:41 -06:00
assets/lib Upgrade grunt-jscs to fix whitespace linting. 2015-04-30 16:14:19 -05:00
components Replace gh-blog-url helper with a component. 2015-05-05 14:40:18 -04:00
controllers added password protection 2015-04-30 23:44:43 -05:00
helpers Replace gh-blog-url helper with a component. 2015-05-05 14:40:18 -04:00
html
initializers Use absolute url for post preview link 2015-04-08 18:58:52 -06:00
mixins Avoid infinite transition loop 2015-04-16 20:05:30 +01:00
models added password protection 2015-04-30 23:44:43 -05:00
routes added password protection 2015-04-30 23:44:43 -05:00
serializers Normalize settings payloads in client serializer 2015-04-08 13:03:56 -06:00
styles Merge pull request #5196 from PaulAdamDavis/minor-code-injection-fixes 2015-05-01 15:50:14 +02:00
templates Replace gh-blog-url helper with a component. 2015-05-05 14:40:18 -04:00
transforms Ember init, bower deps, es6 modules 2015-03-11 12:37:41 -06:00
utils Added support for all letters in word-count (not only ASCII) and added xregexp bower module to a project 2015-05-02 22:56:33 +03:00
validators Ember init, bower deps, es6 modules 2015-03-11 12:37:41 -06:00
views Only attempt to scrollTop if element is available. 2015-05-05 19:05:36 -04:00
_config.yml
app.js Build assets with ember, and serve with ghost 2015-03-11 12:37:41 -06:00
index.html Serve files to core/built/assets/ 2015-03-12 15:59:02 -06:00
README.md
router.js added password protection 2015-04-30 23:44:43 -05:00

Ghost Admin Client

Ember.js application used as a client-side admin for the Ghost blogging platform. This readme is a work in progress guide aimed at explaining the specific nuances of the Ghost Ember app to contributors whose main focus is on this side of things.

Architecture

ToDo: Explain the basic Ember app structure.

client/
├── assets/
│   ├── ghost.css
│   └── ghost.min.css
├── things/
│   ├── things.js
│   └── things.min.js
└── things/
    ├── things.js
    └── things.js

SASS

All CSS is written in SASS and compiled using grunt. We do not follow any strict CSS framework, however our general style is pretty similar to BEM.

Styles are primarily broken up into 4 main categories:

  • Helpers - are pure-sass files. Variables/mixins/things which are generally never compiled to actual CSS, and are simply used to aid development.
  • Patterns - are base level visual styles for HTML elements (eg. Buttons)
  • Components - are groups of patterns used to create a UI component (eg. Modals)
  • Layouts - are groups of components used to create application screens (eg. Settings)
  • Lib - is where we store styles for 3rd party components.

All of these separate files are subsequently imported and compiled in screen.scss.

Front End Standards

  • 4 spaces for HTML & CSS indentation. Never tabs.
  • Double quotes only, never single quotes.
  • Use tags and elements appropriate for an HTML5 doctype (including self-closing tags)
  • Adhere to the Recess CSS property order.
  • Always a space after a property's colon (.e.g, display: block; and not display:block;).
  • End all lines with a semi-colon.
  • For multiple, comma-separated selectors, place each selector on its own line.
  • Use js- prefixed classes for JavaScript hooks into the DOM, and never use these in CSS as per Slightly Obtrusive JavaSript
  • Avoid SASS over-nesting. Never nest more than 3 levels deep.
  • Use comments to explain "why" not "what" (Eg. This requires a z-index in order to appear above mobile navigation. Not: This is a thing which is always on top!)