mirror of
				https://github.com/zulip/zulip.git
				synced 2025-11-04 05:53:43 +00:00 
			
		
		
		
	Keep in-progress compose open on narrows.
If the user has text in the compose box, don't close or change the compose box when they narrow. (imported from commit f9b400f6bac37cb313f1fd87aadb3ba1d3a035ef)
This commit is contained in:
		@@ -399,6 +399,11 @@ exports.subject         = get_or_set('subject');
 | 
			
		||||
exports.message_content = get_or_set('new_message_content', true);
 | 
			
		||||
exports.recipient       = get_or_set('private_message_recipient');
 | 
			
		||||
 | 
			
		||||
exports.has_message_content = function () {
 | 
			
		||||
    return exports.message_content() !== "";
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
// *Synchronously* check if a stream exists.
 | 
			
		||||
exports.check_stream_existence = function (stream_name) {
 | 
			
		||||
    var result = "error";
 | 
			
		||||
 
 | 
			
		||||
@@ -102,7 +102,11 @@ exports.activate = function (operators, opts) {
 | 
			
		||||
    }
 | 
			
		||||
    var filter = new Filter(operators);
 | 
			
		||||
 | 
			
		||||
    compose.cancel();
 | 
			
		||||
    var had_message_content = compose.has_message_content();
 | 
			
		||||
 | 
			
		||||
    if (!had_message_content) {
 | 
			
		||||
        compose.cancel();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    opts = _.defaults({}, opts, {
 | 
			
		||||
        then_select_id: home_msg_list.selected_id(),
 | 
			
		||||
@@ -243,7 +247,7 @@ exports.activate = function (operators, opts) {
 | 
			
		||||
    $('#search_query').val(Filter.unparse(operators));
 | 
			
		||||
    search.update_button_visibility();
 | 
			
		||||
 | 
			
		||||
    if (opts.trigger === 'sidebar' && exports.narrowed_by_reply()) {
 | 
			
		||||
    if (!had_message_content && opts.trigger === 'sidebar' && exports.narrowed_by_reply()) {
 | 
			
		||||
        if (exports.narrowed_to_topic()) {
 | 
			
		||||
            compose.start('stream');
 | 
			
		||||
        }
 | 
			
		||||
@@ -315,7 +319,9 @@ exports.deactivate = function () {
 | 
			
		||||
        return;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    compose.cancel();
 | 
			
		||||
    if (!compose.has_message_content()) {
 | 
			
		||||
        compose.cancel();
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    current_filter = undefined;
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user