comment/Comment.js

  1. var FieldDBObject = require("./../FieldDBObject").FieldDBObject;
  2. /**
  3. * @class Comments allow users to collaborate between each other and take
  4. * note of important things, issues to be fixed, etc. These can
  5. * appear on datum, sessions corpora, and datalists. Comments can
  6. * also be edited and removed.
  7. *
  8. * @property {String} text Describe text here.
  9. * @property {Number} username Describe username here.
  10. * @property {Date} timestamp Describe timestamp here.
  11. *
  12. * @name Comment
  13. * @extends FieldDBObject
  14. * @constructs
  15. */
  16. var Comment = function Comment(options) {
  17. if (!this._fieldDBtype) {
  18. this._fieldDBtype = "Comment";
  19. }
  20. this.debug("Constructing Comment ", options);
  21. FieldDBObject.apply(this, arguments);
  22. };
  23. Comment.prototype = Object.create(FieldDBObject.prototype, /** @lends Comment.prototype */ {
  24. constructor: {
  25. value: Comment
  26. },
  27. build: {
  28. value: function(usermask) {
  29. this.timestamp = Date.now();
  30. this.gravatar = usermask.gravatar;
  31. this.username = usermask.username;
  32. }
  33. },
  34. /**
  35. * The edit function allows users to edit a comment.
  36. *
  37. * @param {String} newtext Takes new text and replaces old one.
  38. */
  39. edit: {
  40. value: function(newtext) {
  41. this.text = newtext;
  42. this.timestampModified = Date.now();
  43. }
  44. },
  45. commentCreatedActivity: {
  46. value: function(indirectObjectString) {
  47. var commentstring = this.text;
  48. return [{
  49. verb: "commented",
  50. verbicon: "icon-comment",
  51. directobjecticon: "",
  52. directobject: "'" + commentstring + "'",
  53. indirectobject: indirectObjectString,
  54. teamOrPersonal: "team",
  55. context: " via Offline App."
  56. },
  57. {
  58. verb: "commented",
  59. verbicon: "icon-comment",
  60. directobjecticon: "",
  61. directobject: "'" + commentstring + "'",
  62. indirectobject: indirectObjectString,
  63. teamOrPersonal: "personal",
  64. context: " via Offline App."
  65. }
  66. ];
  67. }
  68. }
  69. });
  70. exports.Comment = Comment;