Ghost/ghost/admin/app
Kevin Ansfield a7c4991af5 Wired up lexical editor saving
no issue

- fixed API returning "Invalid mobiledoc structure" errors when `mobiledoc:null` is sent in the payload alongside `lexical: '{...}'`
- updated Admin's `posts` and `pages` adapters to always add `?formats=mobiledoc,lexical` because the API doesn't return `lexical` by default
- added `lexical` attribute to Admin's Post model
- updated `lexical-editor` controller and related components to work with `lexical` always being a JSON string rather than a parsed object
- updated `<KoenigLexicalEditor>` to pass through the lexical state string as initial state and wired up the `onChange` prop
2022-09-13 21:01:53 +01:00
..
adapters Wired up lexical editor saving 2022-09-13 21:01:53 +01:00
authenticators
components Wired up lexical editor saving 2022-09-13 21:01:53 +01:00
controllers Wired up lexical editor saving 2022-09-13 21:01:53 +01:00
errors
helpers Improved display of recipient filter posts list sends column tooltip 2022-09-08 11:03:20 +01:00
initializers
mixins
models Wired up lexical editor saving 2022-09-13 21:01:53 +01:00
modifiers
routes Added redirect between mobiledoc/lexical editors 2022-09-13 18:55:39 +01:00
serializers
services Updated mock data format for source attribution 2022-09-13 20:14:17 +05:30
session-stores
styles Updated post list design to accommodate new post stats page 2022-09-13 15:01:03 +01:00
templates Wired up lexical editor saving 2022-09-13 21:01:53 +01:00
transforms
transitions
utils
validators 🐛 Fixed Hidden error in "Add tier" modal (#15361) 2022-09-13 09:23:54 +01:00
app.js
index.html
README.md
router.js Added basic analytics page for posts 2022-09-13 11:00:45 +02: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 JavaSript
  • 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!)