Ghost/ghost/admin/mirage/serializers/user.js
Kevin Ansfield 40ee2043e0
Reduced Admin search re-indexes (#20154)
closes https://linear.app/tryghost/issue/MOM-97

The 30s search content expiry didn't really make sense and caused unnecessary delays and server load now that search will be more widely used within the editor.

- replaced concept of time-based expiry with explicit expiry
  - content still fetched on query if not already loaded or marked as stale
  - added `.expireContent()` method on search service to allow explicit expiry
- updated editor to pre-fetch search content when not already loaded or marked as stale
  - removes delay when first using internal linking search inside the editor
- updated post model to expire search content on save
  - expires on published post save or delete
  - expires on publish and unpublish
- updated tag model to expire content on create/save/delete
  - only expires when name or url is changed
- updated user model to expire on save/delete
  - only expires when name or url is changed
  - does not handle creation because that's done server-side via invites
2024-05-07 15:24:20 +01:00

32 lines
880 B
JavaScript

import BaseSerializer from './application';
export default BaseSerializer.extend({
embed: true,
include(request) {
if (request.queryParams.include && request.queryParams.include.indexOf('roles') >= 0) {
return ['roles'];
}
return [];
},
serialize(userModelOrCollection, request) {
const updateUser = (user) => {
user.update('url', `http://localhost:4200/author/${user.slug}/`);
if (user.postCount) {
user.update('count', {posts: user.posts.models.length});
}
};
if (this.isModel(userModelOrCollection)) {
updateUser(userModelOrCollection);
} else {
userModelOrCollection.models.forEach(updateUser);
}
return BaseSerializer.prototype.serialize.call(this, userModelOrCollection, request);
}
});