mirror of
https://github.com/zulip/zulip.git
synced 2025-11-18 04:43:58 +00:00
Extract compose_state.js.
This is mostly just moving methods out of compose.js. The variable `is_composing_message`, which isn't a boolean, has been renamed to `message_type`, and there are new functions set_message_type() and get_message_type() that wrap it. This commit removes some shims related to the global variable `compose_state`; now, `compose_state` is a typical global variable with a 1:1 relationship with the module by the same name. The new module has 100% line coverage, most of it coming via the tests on compose_actions.js. (The methods here are super simple, so it's a good thing that the tests are somewhat integrated with a higher layer.)
This commit is contained in:
@@ -349,7 +349,7 @@ function show_subscription_settings(sub_row) {
|
||||
(item.full_name.toLowerCase().indexOf(query) !== -1);
|
||||
},
|
||||
sorter: function (matches) {
|
||||
var current_stream = compose.stream_name();
|
||||
var current_stream = compose_state.stream_name();
|
||||
return typeahead_helper.sort_recipientbox_typeahead(
|
||||
this.query, matches, current_stream);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user