Ghost/ghost/admin/app
Chris Raible 7dafefbfa7
Added PostHog identify calls in admin using hashed email address of user (#19685)
refs PA-24

- Added PostHog identify() calls using the user's hashed email address
when a user is logged into admin
- Added PostHog reset() calls to reset PostHog's distinct_id when a user
logs out of admin
- These events will only be sent in Admin running on Ghost(Pro), and won't impact self-hosted instances.
2024-02-13 13:23:03 -08:00
..
adapters
authenticators
components Added PostHog identify calls in admin using hashed email address of user (#19685) 2024-02-13 13:23:03 -08:00
controllers Cleared member count cache on manual member add/delete (#19623) 2024-01-30 15:08:27 -06:00
decorators
errors
helpers Fixed member subscription status when multiple subs (#19530) 2024-01-24 12:16:26 +01:00
initializers
instance-initializers
mixins
models
modifiers
routes Reverted "Fixed PostHog toolbar in admin (#19675)" (#19680) 2024-02-08 16:58:46 -08:00
serializers
services Added PostHog identify calls in admin using hashed email address of user (#19685) 2024-02-13 13:23:03 -08:00
session-stores
styles 🐛 Fixed editor feature image caption not expanding to show long content (#19688) 2024-02-13 13:06:09 +00:00
templates Update "Customize" link on Setup screen (#19686) 2024-02-13 11:16:01 +01:00
transforms
transitions
utils Added PostHog identify calls in admin using hashed email address of user (#19685) 2024-02-13 13:23:03 -08:00
validators
app.js
index.html
README.md
router.js 🎨 Admin X - Offers (#19520) 2024-01-25 12:41:54 +00:00
transitions.js

Ghost Admin App

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.

CSS

We use pure CSS, which is pre-processed for backwards compatibility by Myth. 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:

  • 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)

All of these separate files are subsequently imported and compiled in app.css.

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 JavaScript
  • Avoid over-nesting CSS. Never nest more than 3 levels deep.
  • Use comments to explain "why" not "what" (Good: This requires a z-index in order to appear above mobile navigation. Bad: This is a thing which is always on top!)