mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
33 lines
743 B
JavaScript
33 lines
743 B
JavaScript
import Ember from 'ember';
|
|
import {request as ajax} from 'ic-ajax';
|
|
|
|
export default Ember.Object.extend({
|
|
ghostPaths: null,
|
|
slugType: null,
|
|
value: null,
|
|
|
|
toString: function () {
|
|
return this.get('value');
|
|
},
|
|
|
|
generateSlug: function (textToSlugify) {
|
|
var self = this,
|
|
url;
|
|
|
|
if (!textToSlugify) {
|
|
return Ember.RSVP.resolve('');
|
|
}
|
|
|
|
url = this.get('ghostPaths.url').api('slugs', this.get('slugType'), encodeURIComponent(textToSlugify));
|
|
|
|
return ajax(url, {
|
|
type: 'GET'
|
|
}).then(function (response) {
|
|
var slug = response.slugs[0].slug;
|
|
|
|
self.set('value', slug);
|
|
|
|
return slug;
|
|
});
|
|
}
|
|
});
|