mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-02 08:13:34 +03:00
24e71ffdaa
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
64 lines
1.9 KiB
JavaScript
64 lines
1.9 KiB
JavaScript
import { expect } from 'chai';
|
|
import {
|
|
describeModule,
|
|
it
|
|
} from 'ember-mocha';
|
|
import Pretender from 'pretender';
|
|
import Ember from 'ember';
|
|
|
|
function stubAvailableTimezonesEndpoint(server) {
|
|
server.get('/ghost/api/v0.1/configuration/timezones', function (request) {
|
|
return [
|
|
200,
|
|
{'Content-Type': 'application/json'},
|
|
JSON.stringify({
|
|
configuration: [{
|
|
timezones: [{
|
|
label: '(GMT -11:00) Midway Island, Samoa',
|
|
name: 'Pacific/Pago_Pago',
|
|
offset: -660
|
|
},
|
|
{
|
|
label: '(GMT) Greenwich Mean Time : Dublin, Edinburgh, London',
|
|
name: 'Europe/Dublin',
|
|
offset: 0
|
|
}]
|
|
}]
|
|
})
|
|
];
|
|
});
|
|
}
|
|
|
|
describeModule(
|
|
'service:config',
|
|
'Integration: Service: config',
|
|
{
|
|
integration: true
|
|
},
|
|
function () {
|
|
let server;
|
|
|
|
beforeEach(function () {
|
|
server = new Pretender();
|
|
});
|
|
|
|
afterEach(function () {
|
|
server.shutdown();
|
|
});
|
|
|
|
it('returns a list of timezones in the expected format', function (done) {
|
|
let service = this.subject();
|
|
stubAvailableTimezonesEndpoint(server);
|
|
|
|
service.get('availableTimezones').then(function (timezones) {
|
|
expect(timezones.length).to.equal(2);
|
|
expect(timezones[0].name).to.equal('Pacific/Pago_Pago');
|
|
expect(timezones[0].label).to.equal('(GMT -11:00) Midway Island, Samoa');
|
|
expect(timezones[1].name).to.equal('Europe/Dublin');
|
|
expect(timezones[1].label).to.equal('(GMT) Greenwich Mean Time : Dublin, Edinburgh, London');
|
|
done();
|
|
});
|
|
});
|
|
}
|
|
);
|