mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	We now treat util like a leaf module and use "require" to import it everywhere it's used. An earlier version of this commit moved util into our "shared" library, but we decided to wait on that. Once we're ready to do that, we should only need to do a simple search/replace on various require/zrequire statements plus a small tweak to one of the custom linter checks. It turns out we don't really need util.js for our most immediate code-sharing goal, which is to reuse our markdown code on mobile. There's a little bit of cleanup still remaining to break the dependency, but it's minor. The util module still calls the global blueslip module in one place, but that code is about to be removed in the next few commits. I am pretty confident that once we start sharing things like the typeahead code more aggressively, we'll start having dependencies on util. The module is barely more than 300 lines long, so we'll probably just move the whole thing into shared rather than break it apart. Also, we can continue to nibble away at the cruftier parts of the module.
		
			
				
	
	
		
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			65 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| const util = require("./util");
 | |
| exports.initialize_pill = function () {
 | |
|     const container = $("#private_message_recipient").parent();
 | |
| 
 | |
|     const pill = input_pill.create({
 | |
|         container: container,
 | |
|         create_item_from_text: user_pill.create_item_from_email,
 | |
|         get_text_from_item: user_pill.get_email_from_item,
 | |
|     });
 | |
| 
 | |
|     return pill;
 | |
| };
 | |
| 
 | |
| exports.initialize = function () {
 | |
|     exports.widget = exports.initialize_pill();
 | |
| };
 | |
| 
 | |
| exports.clear = function () {
 | |
|     exports.widget.clear();
 | |
| };
 | |
| 
 | |
| exports.set_from_typeahead = function (person) {
 | |
|     // We expect person to be an object returned from people.js.
 | |
|     user_pill.append_person({
 | |
|         pill_widget: exports.widget,
 | |
|         person: person,
 | |
|     });
 | |
| };
 | |
| 
 | |
| exports.set_from_emails = function (value) {
 | |
|     // value is something like "alice@example.com,bob@example.com"
 | |
|     exports.clear();
 | |
|     exports.widget.appendValue(value);
 | |
| };
 | |
| 
 | |
| exports.get_user_ids = function () {
 | |
|     return user_pill.get_user_ids(exports.widget);
 | |
| };
 | |
| 
 | |
| exports.has_unconverted_data = function () {
 | |
|     return user_pill.has_unconverted_data(exports.widget);
 | |
| };
 | |
| 
 | |
| exports.get_user_ids_string = function () {
 | |
|     const user_ids = exports.get_user_ids();
 | |
|     const sorted_user_ids = util.sorted_ids(user_ids);
 | |
|     const user_ids_string = sorted_user_ids.join(',');
 | |
|     return user_ids_string;
 | |
| };
 | |
| 
 | |
| exports.get_emails = function () {
 | |
|     // return something like "alice@example.com,bob@example.com"
 | |
|     const user_ids = exports.get_user_ids();
 | |
|     const emails = user_ids.map(function (id) {
 | |
|         return people.get_by_user_id(id).email;
 | |
|     }).join(",");
 | |
|     return emails;
 | |
| };
 | |
| 
 | |
| exports.filter_taken_users = function (persons) {
 | |
|     return user_pill.filter_taken_users(persons, exports.widget);
 | |
| };
 | |
| 
 | |
| window.compose_pm_pill = exports;
 |