FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
import UserDraft from "discourse/models/user-draft";
|
|
|
|
import { NEW_TOPIC_KEY } from "discourse/models/composer";
|
2019-11-14 04:55:32 +08:00
|
|
|
import User from "discourse/models/user";
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
|
|
|
|
QUnit.module("model:user-drafts");
|
|
|
|
|
|
|
|
QUnit.test("stream", assert => {
|
2019-11-14 04:55:32 +08:00
|
|
|
const user = User.create({ id: 1, username: "eviltrout" });
|
FEATURE: Drafts view in user profile
* add drafts.json endpoint, user profile tab with drafts stream
* improve drafts stream display in user profile
* truncate excerpts in drafts list, better handling for resume draft action
* improve draft stream SQL query, add rspec tests
* if composer is open, quietly close it when user opens another draft from drafts stream; load PM draft only when user is in /u/username/messages (instead of /u/username)
* cleanup
* linting fixes
* apply prettier styling to modified files
* add client tests for drafts, includes a fixture for drafts.json
* improvements to code following review
* refresh drafts route when user deletes a draft open in the composer while being in the drafts route; minor prettier scss fix
* added more spec tests, deleted an acceptance test for removing drafts that was too finicky, formatting and code style fixes, added appEvent for draft:destroyed
* prettier, eslint fixes
* use "username_lower" from users table, added error handling for rejected promises
* adds guardian spec for can_see_drafts, adds improvements following code review
* move DraftsController spec to its own file
* fix failing drafts qunit test, use getOwner instead of deprecated this.container
* limit test fixture for draft.json testing to new_topic request only
2018-08-01 14:34:54 +08:00
|
|
|
const stream = user.get("userDraftsStream");
|
|
|
|
assert.present(stream, "a user has a drafts stream by default");
|
|
|
|
assert.equal(stream.get("itemsLoaded"), 0, "no items are loaded by default");
|
|
|
|
assert.blank(stream.get("content"), "no content by default");
|
|
|
|
});
|
|
|
|
|
|
|
|
QUnit.test("draft", assert => {
|
|
|
|
const drafts = [
|
|
|
|
UserDraft.create({
|
|
|
|
draft_key: "topic_1",
|
|
|
|
post_number: "10"
|
|
|
|
}),
|
|
|
|
UserDraft.create({
|
|
|
|
draft_key: NEW_TOPIC_KEY
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
|
|
|
assert.equal(drafts.length, 2, "drafts count is right");
|
|
|
|
assert.equal(
|
|
|
|
drafts[1].get("draftType"),
|
|
|
|
I18n.t("drafts.new_topic"),
|
|
|
|
"loads correct draftType label"
|
|
|
|
);
|
|
|
|
});
|