mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-24 06:35:49 +03:00
Merge pull request #2960 from novaugust/boundOneWay
Create boundOneWay util function
This commit is contained in:
commit
cb6f34d67d
@ -1,6 +1,7 @@
|
||||
/* global moment */
|
||||
import {parseDateString, formatDate} from 'ghost/utils/date-formatting';
|
||||
import SlugGenerator from 'ghost/models/slug-generator';
|
||||
import boundOneWay from 'ghost/utils/bound-one-way';
|
||||
|
||||
var PostSettingsMenuController = Ember.ObjectController.extend({
|
||||
isStaticPage: function (key, val) {
|
||||
@ -29,21 +30,9 @@ var PostSettingsMenuController = Ember.ObjectController.extend({
|
||||
}
|
||||
return formatDate(moment());
|
||||
}.property('publishedAtValue'),
|
||||
publishedAtValue: boundOneWay('published_at', formatDate),
|
||||
|
||||
publishedAtValue: function (key, value) {
|
||||
if (arguments.length > 1) {
|
||||
return value;
|
||||
}
|
||||
return formatDate(this.get('published_at'));
|
||||
}.property('published_at'),
|
||||
|
||||
slugValue: function (key, value) {
|
||||
if (arguments.length > 1) {
|
||||
return value;
|
||||
}
|
||||
return this.get('slug');
|
||||
}.property('slug'),
|
||||
|
||||
slugValue: boundOneWay('slug'),
|
||||
//Lazy load the slug generator for slugPlaceholder
|
||||
slugGenerator: Ember.computed(function () {
|
||||
return SlugGenerator.create({ghostPaths: this.get('ghostPaths')});
|
||||
|
@ -1,6 +1,7 @@
|
||||
/* global console */
|
||||
import MarkerManager from 'ghost/mixins/marker-manager';
|
||||
import PostModel from 'ghost/models/post';
|
||||
import boundOneWay from 'ghost/utils/bound-one-way';
|
||||
|
||||
// this array will hold properties we need to watch
|
||||
// to know if the model has been changed (`controller.isDirty`)
|
||||
@ -19,12 +20,7 @@ var EditorControllerMixin = Ember.Mixin.create(MarkerManager, {
|
||||
* Only with a user-set value (via setSaveType action)
|
||||
* can the post's status change.
|
||||
*/
|
||||
willPublish: function (key, value) {
|
||||
if (arguments.length > 1) {
|
||||
return value;
|
||||
}
|
||||
return this.get('isPublished');
|
||||
}.property('isPublished'),
|
||||
willPublish: boundOneWay('isPublished'),
|
||||
|
||||
// set by the editor route and `isDirty`. useful when checking
|
||||
// whether the number of tags has changed for `isDirty`.
|
||||
@ -120,7 +116,6 @@ var EditorControllerMixin = Ember.Mixin.create(MarkerManager, {
|
||||
tags.removeObjects(oldTags);
|
||||
oldTags.invoke('deleteRecord');
|
||||
},
|
||||
|
||||
actions: {
|
||||
save: function () {
|
||||
var status = this.get('willPublish') ? 'published' : 'draft',
|
||||
|
20
core/client/utils/bound-one-way.js
Normal file
20
core/client/utils/bound-one-way.js
Normal file
@ -0,0 +1,20 @@
|
||||
/**
|
||||
* Defines a property similarly to `Ember.computed.oneway`,
|
||||
* save that while a `oneway` loses its binding upon being set,
|
||||
* the `BoundOneWay` will continue to listen for upstream changes.
|
||||
*
|
||||
* This is an ideal tool for working with values inside of {{input}}
|
||||
* elements.
|
||||
* @param transform: a function to transform the **upstream** value.
|
||||
*/
|
||||
var BoundOneWay = function (upstream, transform) {
|
||||
if (typeof transform !== 'function') {
|
||||
//default to the identity function
|
||||
transform = function (value) { return value; };
|
||||
}
|
||||
return function (key, value) {
|
||||
return arguments.length > 1 ? value : transform(this.get(upstream));
|
||||
}.property(upstream);
|
||||
};
|
||||
|
||||
export default BoundOneWay;
|
Loading…
Reference in New Issue
Block a user