diff --git a/ghost/admin/.lint-todo b/ghost/admin/.lint-todo index 80770942a6..1a2ecb0ddb 100644 --- a/ghost/admin/.lint-todo +++ b/ghost/admin/.lint-todo @@ -488,10 +488,6 @@ add|ember-template-lint|require-valid-alt-text|19|24|19|24|c1a223c4a0c265ed64685 add|ember-template-lint|no-autofocus-attribute|14|4|14|4|bc0a12a01d16038dd3224726d5c4fe81b2d458b6|1658102400000|1668474000000|1673658000000|app/components/gh-input-with-select/trigger.hbs add|ember-template-lint|no-down-event-binding|8|9|8|9|e82f6aa36fd44bb3dccff09770613eee19380f9b|1658102400000|1668474000000|1673658000000|app/components/gh-input-with-select/trigger.hbs add|ember-template-lint|require-input-label|4|0|4|0|ce9c488b3c6a110afe45e2242fb068fd4ed61f22|1658102400000|1668474000000|1673658000000|app/components/gh-input-with-select/trigger.hbs -add|ember-template-lint|no-action|63|39|63|39|dcc09bb23a476d5b83b273b693cd8cb2aba68365|1658102400000|1668474000000|1673658000000|app/components/gh-launch-wizard/set-pricing.hbs -add|ember-template-lint|no-action|78|39|78|39|a80dd18e18dda6fb6f1f97d87bef2b8c2ce3d847|1658102400000|1668474000000|1673658000000|app/components/gh-launch-wizard/set-pricing.hbs -add|ember-template-lint|no-passed-in-event-handlers|63|32|63|32|dcb4785647a50814bcfce82f8d68ac8dd8f54ec2|1658102400000|1668474000000|1673658000000|app/components/gh-launch-wizard/set-pricing.hbs -add|ember-template-lint|no-passed-in-event-handlers|78|32|78|32|70487c008d7dda453fef82f0140699ee93c0055c|1658102400000|1668474000000|1673658000000|app/components/gh-launch-wizard/set-pricing.hbs add|ember-template-lint|no-invalid-interactive|6|32|6|32|508e64575a985432d0588f3291a126c4b62e68d8|1658102400000|1668474000000|1673658000000|app/components/gh-nav-menu/design.hbs add|ember-template-lint|no-action|97|83|97|83|40a33b8afd29e93eebeaccdb49d729c06f755e1f|1658102400000|1668474000000|1673658000000|app/components/gh-nav-menu/footer.hbs add|ember-template-lint|no-invalid-interactive|97|83|97|83|91111b837d1217ec9988076f5263b0e32df72604|1658102400000|1668474000000|1673658000000|app/components/gh-nav-menu/footer.hbs diff --git a/ghost/admin/app/components/gh-benefit-item.hbs b/ghost/admin/app/components/gh-benefit-item.hbs index cf1d14dc99..d6fdcdfbbe 100644 --- a/ghost/admin/app/components/gh-benefit-item.hbs +++ b/ghost/admin/app/components/gh-benefit-item.hbs @@ -33,7 +33,7 @@ {{#if this.benefitItem.isNew}} {{else}} - - {{else}} - - {{/if}} -
- -
- - - - -
- -
-
Publication logo
-
The primary logo for your brand displayed across your theme, should be transparent and at least 600px x 72px
- -
- {{#each uploader.errors as |error|}} -
{{or error.context error.message}}
- {{/each}} - {{#if uploader.isUploading}} - {{uploader.progressBar}} - {{else if this.settings.logo}} -
- - -
- {{else}} - - {{/if}} -
- -
-
-
-
-
- -
- -
-
Publication cover
-
An optional large background image for your site
- {{#each uploader.errors as |error|}} -
{{or error.context error.message}}
- {{/each}} - -
- {{#if uploader.isUploading}} - {{uploader.progressBar}} - {{else if this.settings.coverImage}} -
- cover photo - -
- {{else}} - - {{/if}} -
- -
-
-
-
-
- \ No newline at end of file diff --git a/ghost/admin/app/components/gh-brand-settings-form.js b/ghost/admin/app/components/gh-brand-settings-form.js deleted file mode 100644 index bbab00ce2e..0000000000 --- a/ghost/admin/app/components/gh-brand-settings-form.js +++ /dev/null @@ -1,170 +0,0 @@ -import Component from '@glimmer/component'; -import config from 'ghost-admin/config/environment'; -import { - ICON_EXTENSIONS, - ICON_MIME_TYPES, - IMAGE_EXTENSIONS, - IMAGE_MIME_TYPES -} from 'ghost-admin/components/gh-image-uploader'; -import {action} from '@ember/object'; -import {htmlSafe} from '@ember/template'; -import {inject as service} from '@ember/service'; -import {task, timeout} from 'ember-concurrency'; - -export default class GhBrandSettingsFormComponent extends Component { - @service ajax; - @service config; - @service ghostPaths; - @service settings; - @service frontend; - - iconExtensions = ICON_EXTENSIONS; - iconMimeTypes = ICON_MIME_TYPES; - imageExtensions = IMAGE_EXTENSIONS; - imageMimeTypes = IMAGE_MIME_TYPES; - - get accentColor() { - const color = this.settings.get('accentColor'); - if (color && color[0] === '#') { - return color.slice(1); - } - return color; - } - - get accentColorPickerValue() { - return this.settings.get('accentColor') || '#ffffff'; - } - - get accentColorBgStyle() { - return htmlSafe(`background-color: ${this.accentColorPickerValue}`); - } - - get previewData() { - const params = new URLSearchParams(); - - params.append('c', this.accentColorPickerValue); - params.append('icon', this.settings.get('icon')); - params.append('logo', this.settings.get('logo')); - params.append('cover', this.settings.get('coverImage')); - - return params.toString(); - } - - constructor() { - super(...arguments); - this.updatePreviewTask.perform(); - } - - willDestroy() { - super.willDestroy?.(...arguments); - this.settings.errors.remove('accentColor'); - this.settings.rollbackAttributes(); - } - - @action - triggerFileDialog({target}) { - target.closest('.gh-setting-action')?.querySelector('input[type="file"]')?.click(); - } - - @action - async imageUploaded(property, results) { - if (results[0]) { - this.settings.set(property, results[0].url); - this.updatePreviewTask.perform(); - } - } - - @action - async removeImage(imageName) { - this.settings.set(imageName, ''); - this.updatePreviewTask.perform(); - } - - @action - blurElement(event) { - event.preventDefault(); - event.target.blur(); - } - - @action - async updateAccentColor(event) { - let newColor = event.target.value; - const oldColor = this.settings.get('accentColor'); - - // reset errors and validation - this.settings.errors.remove('accentColor'); - this.settings.hasValidated.removeObject('accentColor'); - - if (newColor === '') { - if (newColor === oldColor) { - return; - } - - // Don't allow empty accent color - this.settings.errors.add('accentColor', 'Please select an accent color'); - this.settings.hasValidated.pushObject('accentColor'); - return; - } - - // accentColor will be null unless the user has input something - if (!newColor) { - newColor = oldColor; - } - - if (newColor[0] !== '#') { - newColor = `#${newColor}`; - } - - if (newColor.match(/#[0-9A-Fa-f]{6}$/)) { - if (newColor === oldColor) { - return; - } - - this.settings.set('accentColor', newColor); - this.updatePreviewTask.perform(); - } else { - this.settings.errors.add('accentColor', 'Please enter a color in hex format'); - this.settings.hasValidated.pushObject('accentColor'); - } - } - - @task({restartable: true}) - *debounceUpdateAccentColor(event) { - yield timeout(500); - this.updateAccentColor(event); - } - - @task - *updatePreviewTask() { - // skip during testing because we don't have mocks for the front-end - if (config.environment === 'test') { - return; - } - - const previewResponse = yield this.frontend.fetch('/', { - method: 'POST', - headers: { - 'Content-Type': 'text/html;charset=utf-8', - 'x-ghost-preview': this.previewData, - Accept: 'text/plain' - } - }); - const previewContents = yield previewResponse.text(); - - // inject extra CSS to disable navigation and prevent clicks - const injectedCss = `html { pointer-events: none; }`; - - const domParser = new DOMParser(); - const htmlDoc = domParser.parseFromString(previewContents, 'text/html'); - - const stylesheet = htmlDoc.querySelector('style'); - const originalCSS = stylesheet.innerHTML; - stylesheet.innerHTML = `${originalCSS}\n\n${injectedCss}`; - - const doctype = new XMLSerializer().serializeToString(htmlDoc.doctype); - const html = doctype + htmlDoc.documentElement.outerHTML; - - // replace the iframe contents with the doctored preview html - this.args.replacePreviewContents(html); - } -} diff --git a/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs b/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs index 11d9bd9711..b058f60748 100644 --- a/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs +++ b/ghost/admin/app/components/gh-input-with-select/suggested-option.hbs @@ -1 +1 @@ -{{@option.text}}{{svg-jar "add"}} \ No newline at end of file +{{@option.text}}{{svg-jar "plus"}} \ No newline at end of file diff --git a/ghost/admin/app/components/gh-member-label-input.hbs b/ghost/admin/app/components/gh-member-label-input.hbs index 8d436b7f19..5e522da43b 100644 --- a/ghost/admin/app/components/gh-member-label-input.hbs +++ b/ghost/admin/app/components/gh-member-label-input.hbs @@ -24,8 +24,10 @@ {{label.name}} {{#if (and @allowEdit label.slug)}} - {{/if}} diff --git a/ghost/admin/app/components/gh-member-settings-form.hbs b/ghost/admin/app/components/gh-member-settings-form.hbs index 72fcbe9818..66811b431a 100644 --- a/ghost/admin/app/components/gh-member-settings-form.hbs +++ b/ghost/admin/app/components/gh-member-settings-form.hbs @@ -123,7 +123,7 @@ {{on "click" (toggle-action "showMemberTierModal" this)}} data-test-button="add-complimentary" > - {{svg-jar "add"}} Add complimentary subscription + {{svg-jar "plus"}} Add complimentary subscription {{/if}} {{/if}} @@ -214,7 +214,7 @@ @@ -241,7 +241,7 @@ {{else}} - + {{svg-jar "dotdotdot"}} @@ -297,7 +297,7 @@
yearly
- + {{svg-jar "dotdotdot"}} @@ -329,7 +329,7 @@ {{on "click" (toggle-action "showMemberTierModal" this)}} data-test-button="add-complimentary" > - {{svg-jar "add"}} Add complimentary subscription + {{svg-jar "plus"}} Add complimentary subscription {{/if}} diff --git a/ghost/admin/app/components/gh-membership-tiers-alpha.hbs b/ghost/admin/app/components/gh-membership-tiers-alpha.hbs index b4b2755122..77e17a2834 100644 --- a/ghost/admin/app/components/gh-membership-tiers-alpha.hbs +++ b/ghost/admin/app/components/gh-membership-tiers-alpha.hbs @@ -36,7 +36,7 @@ {{#if (eq this.type "active" )}} {{/if}} diff --git a/ghost/admin/app/components/gh-nav-menu/main.hbs b/ghost/admin/app/components/gh-nav-menu/main.hbs index 7b43d86f6b..9890f54b2f 100644 --- a/ghost/admin/app/components/gh-nav-menu/main.hbs +++ b/ghost/admin/app/components/gh-nav-menu/main.hbs @@ -36,7 +36,7 @@
  • {{svg-jar "posts"}}Posts - {{svg-jar "add-stroke"}} + {{svg-jar "plus"}} {{#if this.session.user.isAuthorOrContributor}} {{#if this.customViews.forPosts}}
      diff --git a/ghost/admin/app/components/gh-navitem.hbs b/ghost/admin/app/components/gh-navitem.hbs index 83c2f709f9..15e509cfac 100644 --- a/ghost/admin/app/components/gh-navitem.hbs +++ b/ghost/admin/app/components/gh-navitem.hbs @@ -45,7 +45,7 @@ {{#if this.navItem.isNew}} {{else}} + {{/unless}} diff --git a/ghost/admin/app/components/gh-post-settings-menu/email.hbs b/ghost/admin/app/components/gh-post-settings-menu/email.hbs index af1e45bc32..7ea00cda10 100644 --- a/ghost/admin/app/components/gh-post-settings-menu/email.hbs +++ b/ghost/admin/app/components/gh-post-settings-menu/email.hbs @@ -88,7 +88,7 @@ {{!-- Mail not sent yet --}} {{#if this.mailgunError}}

      - {{svg-jar "info" class="w5 h5 fill-yellow nl1"}} + {{svg-jar "info" class="w5 h5 stroke-yellow nl1"}} You need to configure Mailgun in Settings → Email newsletter to enable email newsletters.

      {{/if}} diff --git a/ghost/admin/app/components/gh-posts-list-item.hbs b/ghost/admin/app/components/gh-posts-list-item.hbs index 1cb82b1a66..c4919ed467 100644 --- a/ghost/admin/app/components/gh-posts-list-item.hbs +++ b/ghost/admin/app/components/gh-posts-list-item.hbs @@ -74,7 +74,7 @@ {{#if @post.isDraft}} - {{svg-jar "pen-stroke" class="gh-post-status-icon"}} + {{svg-jar "pen" class="gh-post-status-icon"}} Draft {{/if}} diff --git a/ghost/admin/app/components/gh-theme-table.hbs b/ghost/admin/app/components/gh-theme-table.hbs index cb5eb11a97..edd953c6c0 100644 --- a/ghost/admin/app/components/gh-theme-table.hbs +++ b/ghost/admin/app/components/gh-theme-table.hbs @@ -13,7 +13,7 @@ {{/unless}} - {{svg-jar "dotdotdot"}} + {{svg-jar "dotdotdot"}}