2015-06-13 17:34:09 +03:00
<section class="gh-view">
<header class="view-header">
2015-08-12 10:17:01 +03:00
{{ # gh-view-title openMobileMenu = "openMobileMenu" }} <span>General</span> {{ / gh-view-title }}
2015-06-13 17:34:09 +03:00
<section class="view-actions">
2015-08-25 23:15:59 +03:00
{{ # gh-spin-button class = "btn btn-blue" action = "save" submitting = submitting }} Save {{ / gh-spin-button }}
2015-06-13 17:34:09 +03:00
</section>
</header>
2014-03-10 07:44:08 +04:00
2015-06-13 17:34:09 +03:00
<section class="view-content">
<form id="settings-general" novalidate="novalidate">
<fieldset>
2014-03-10 07:44:08 +04:00
2015-08-27 23:28:41 +03:00
{{ # gh-form-group errors = model .errors hasValidated = model .hasValidated property = "title" }}
2015-06-13 17:34:09 +03:00
<label for="blog-title">Blog Title</label>
2016-06-18 14:44:23 +03:00
{{ gh-input model .title id = "blog-title" name = "general[title]" type = "text" focusOut = ( action "validate" "title" target = model ) update = ( action ( mut model .title ) ) }}
2015-07-07 20:14:23 +03:00
{{ gh-error-message errors = model .errors property = "title" }}
2015-06-13 17:34:09 +03:00
<p>The name of your blog</p>
2015-07-07 20:14:23 +03:00
{{ / gh-form-group }}
2014-08-14 19:31:38 +04:00
2015-08-27 23:28:41 +03:00
{{ # gh-form-group errors = model .errors hasValidated = model .hasValidated property = "description" class = "description-container" }}
2015-06-13 17:34:09 +03:00
<label for="blog-description">Blog Description</label>
2016-06-18 14:44:23 +03:00
{{ gh-textarea model .description id = "blog-description" name = "general[description]" focusOut = ( action "validate" "description" target = model ) update = ( action ( mut model .description ) ) }}
2015-07-07 20:14:23 +03:00
{{ gh-error-message errors = model .errors property = "description" }}
2015-06-13 17:34:09 +03:00
<p>
Describe what your blog is about
{{ gh-count-characters model .description }}
</p>
2015-07-07 20:14:23 +03:00
{{ / gh-form-group }}
2015-06-13 17:34:09 +03:00
</fieldset>
2014-03-10 07:44:08 +04:00
<div class="form-group">
2015-06-13 17:34:09 +03:00
<label>Blog Logo</label>
{{ # if model .logo }}
2015-11-18 13:50:48 +03:00
<img class="blog-logo" src=" {{ model .logo }} " alt="logo" role="button" {{ action "toggleUploadLogoModal" }} >
2015-06-13 17:34:09 +03:00
{{ else }}
2015-11-18 13:50:48 +03:00
<button type="button" class="btn btn-green js-modal-logo" {{ action "toggleUploadLogoModal" }} >Upload Image</button>
2015-06-13 17:34:09 +03:00
{{ / if }}
2016-03-03 11:52:27 +03:00
<p>Display a logo for your publication</p>
2015-11-18 13:50:48 +03:00
{{ # if showUploadLogoModal }}
{{ gh-fullscreen-modal "upload-image"
model=(hash model=model imageProperty="logo")
close=(action "toggleUploadLogoModal")
modifier="action wide"}}
{{ / if }}
2014-03-10 07:44:08 +04:00
</div>
2015-06-13 17:34:09 +03:00
<div class="form-group">
<label>Blog Cover</label>
{{ # if model .cover }}
2015-11-18 13:50:48 +03:00
<img class="blog-cover" src=" {{ model .cover }} " alt="cover photo" role="button" {{ action "toggleUploadCoverModal" }} >
2015-06-13 17:34:09 +03:00
{{ else }}
2015-11-18 13:50:48 +03:00
<button type="button" class="btn btn-green js-modal-cover" {{ action "toggleUploadCoverModal" }} >Upload Image</button>
2015-06-13 17:34:09 +03:00
{{ / if }}
<p>Display a cover image on your site</p>
2015-11-18 13:50:48 +03:00
{{ # if showUploadCoverModal }}
{{ gh-fullscreen-modal "upload-image"
model=(hash model=model imageProperty="cover")
close=(action "toggleUploadCoverModal")
modifier="action wide"}}
{{ / if }}
2014-03-10 07:44:08 +04:00
</div>
2015-06-13 17:34:09 +03:00
<fieldset>
2015-05-11 18:35:55 +03:00
2015-06-13 17:34:09 +03:00
<div class="form-group">
<label for="postsPerPage">Posts per page</label>
{{! `pattern` brings up numeric keypad allowing any number of digits}}
2016-06-18 14:44:23 +03:00
{{ gh-input model .postsPerPage id = "postsPerPage" name = "general[postsPerPage]" focus-out = "checkPostsPerPage" min = "1" max = "1000" type = "number" pattern = "[0-9]*" update = ( action ( mut model .postsPerPage ) ) }}
2015-06-13 17:34:09 +03:00
<p>How many posts should be displayed on each page</p>
</div>
2015-05-11 18:35:55 +03:00
2015-06-13 17:34:09 +03:00
<div class="form-group for-checkbox">
<label for="permalinks">Dated Permalinks</label>
<label class="checkbox" for="permalinks">
2016-06-18 14:44:23 +03:00
{{ one-way-checkbox isDatedPermalinks id = "permalinks" class = "gh-input" name = "general[permalinks]" update = ( action ( mut isDatedPermalinks ) ) }}
2015-06-13 17:34:09 +03:00
<span class="input-toggle-component"></span>
<p>Include the date in your post URLs</p>
</label>
</div>
<div class="form-group for-select">
<label for="activeTheme">Theme</label>
<span class="gh-select" data-select-text=" {{ selectedTheme .label }} " tabindex="0">
{{ gh-select-native
id="activeTheme"
name="general[activeTheme]"
content=themes
optionValuePath="name"
optionLabelPath="label"
selection=selectedTheme
action="setTheme"
}}
</span>
<p>Select a theme for your blog</p>
</div>
2016-03-03 11:52:27 +03:00
<div class="form-group">
{{ # gh-form-group errors = model .errors hasValidated = model .hasValidated property = "facebook" }}
<label for="facebook">Facebook Page</label>
<input value= {{ model .facebook }} oninput= {{ action ( mut _ scratchFacebook ) value = "target.value" }} {{ action "validateFacebookUrl" on = "focusOut" }} type="url" class="gh-input" id="facebook" name="general[facebook]" placeholder="https://www.facebook.com/ghost" autocorrect="off" />
{{ gh-error-message errors = model .errors property = "facebook" }}
<p>URL of your blog's Facebook Page</p>
{{ / gh-form-group }}
</div>
<div class="form-group">
{{ # gh-form-group errors = model .errors hasValidated = model .hasValidated property = "twitter" }}
<label for="twitter">Twitter Profile</label>
<input value= {{ model .twitter }} oninput= {{ action ( mut _ scratchTwitter ) value = "target.value" }} {{ action "validateTwitterUrl" on = "focusOut" }} type="url" class="gh-input" id="facebook" name="general[twitter]" placeholder="https://twitter.com/tryghost" autocorrect="off" />
{{ gh-error-message errors = model .errors property = "twitter" }}
<p>URL of your blog's Twitter profile</p>
{{ / gh-form-group }}
</div>
2016-07-26 13:24:37 +03:00
{{ gh-timezone-select
activeTimezone=model.activeTimezone
availableTimezones=availableTimezones
update=(action "setTimezone")}}
Timezones: Always use the timezone of blog setting
closes TryGhost/Ghost#6406
follow-up PR of #2
- adds a `timeZone` Service to provide the offset (=timezone reg. moment-timezone) of the users blog settings
- `gh-datetime-input` will read the offset of the timezone now and adjust the `publishedAt` date with it. This is the date which will be shown in the PSM 'Publish Date' field. When the user writes a new date/time, the offset is considered and will be deducted again before saving it to the model. This way, we always work with a UTC publish date except for this input field.
- gets `availableTimezones` from `configuration/timezones` API endpoint
- adds a `moment-utc` transform on all date attr (`createdAt`, `updatedAt`, `publishedAt`, `unsubscribedAt` and `lastLogin`) to only work with UTC times on serverside
- when switching the timezone in the select box, the user will be shown the local time of the selected timezone
- `createdAt`-property in `gh-user-invited` returns now `moment(createdAt).fromNow()` as `createdAt` is a moment date already
- added clock service to show actual time ticking below select box
- default timezone is '(GMT) Greenwich Mean Time : Dublin, Edinburgh, London'
- if no timezone is saved in the settings yet, the default value will be used
- shows the local time in 'Publish Date' in PSM by default, until user overwrites it
- adds dependency `moment-timezone 0.5.4` to `bower.json`
---------
**Tests:**
- sets except for clock service in test env
- adds fixtures to mirage
- adds `service.ajax` and `service:ghostPaths` to navigation-test.js
- adds unit test for `gh-format-timeago` helper
- updates acceptance test `general-setting`
- adds acceptance test for `editor`
- adds integration tests for `services/config` and `services/time-zone`
---------
**Todos:**
- [ ] Integration tests: ~~`services/config`~~, ~~`services/time-zone`~~, `components/gh-datetime-input`
- [x] Acceptance test: `editor`
- [ ] Unit tests: `utils/date-formatting`
- [ ] write issue for renaming date properties (e. g. `createdAt` to `createdAtUTC`) and translate those for server side with serializers
2016-02-02 10:04:40 +03:00
2015-06-13 17:34:09 +03:00
<div class="form-group for-checkbox">
<label for="isPrivate">Make this blog private</label>
<label class="checkbox" for="isPrivate">
2016-06-18 14:44:23 +03:00
{{ one-way-checkbox model .isPrivate id = "isPrivate" name = "general[isPrivate]" type = "checkbox" update = ( action ( mut model .isPrivate ) ) }}
2015-06-13 17:34:09 +03:00
<span class="input-toggle-component"></span>
<p>Enable password protection</p>
</label>
</div>
{{ # if model .isPrivate }}
2015-11-18 13:50:48 +03:00
{{ # gh-form-group errors = model .errors hasValidated = model .hasValidated property = "password" }}
2016-06-18 14:44:23 +03:00
{{ gh-input model .password name = "general[password]" type = "text" focusOut = ( action "validate" "password" target = model ) update = ( action ( mut model .password ) ) }}
2015-11-18 13:50:48 +03:00
{{ gh-error-message errors = model .errors property = "password" }}
<p>This password will be needed to access your blog. All search engine optimization and social features are now disabled. This password is stored in plaintext.</p>
{{ / gh-form-group }}
2015-06-13 17:34:09 +03:00
{{ / if }}
</fieldset>
2016-03-03 11:52:27 +03:00
2015-06-13 17:34:09 +03:00
</form>
</section>
2014-12-30 05:11:24 +03:00
</section>