mirror of
				https://github.com/zulip/zulip.git
				synced 2025-10-31 12:03:46 +00:00 
			
		
		
		
	Noun: backup, login, logout, lookup, setup. Verb: back up, log in, log out, look up, set up. Signed-off-by: Anders Kaseorg <anders@zulip.com>
		
			
				
	
	
		
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
		
			1.4 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
| // Module for displaying the modal asking spectators to log in when
 | |
| // attempting to do things that are not possible as a spectator (like
 | |
| // add an emoji reaction, star a message, etc.).  While in many cases,
 | |
| // we will prefer to hide menu options that don't make sense for
 | |
| // spectators, this modal is useful for everything that doesn't make
 | |
| // sense to remove from a design perspective.
 | |
| 
 | |
| import $ from "jquery";
 | |
| 
 | |
| import render_login_to_access_modal from "../templates/login_to_access.hbs";
 | |
| 
 | |
| import * as browser_history from "./browser_history";
 | |
| import * as hash_util from "./hash_util";
 | |
| import * as overlays from "./overlays";
 | |
| import {page_params} from "./page_params";
 | |
| 
 | |
| export function login_to_access() {
 | |
|     // Hide all overlays, popover and go back to the previous hash if the
 | |
|     // hash has changed.
 | |
|     let login_link;
 | |
|     if (page_params.development_environment) {
 | |
|         login_link = "/devlogin/?" + hash_util.current_hash_as_next();
 | |
|     } else {
 | |
|         login_link = "/login/?" + hash_util.current_hash_as_next();
 | |
|     }
 | |
| 
 | |
|     $("body").append(
 | |
|         render_login_to_access_modal({
 | |
|             signup_link: "/register",
 | |
|             login_link,
 | |
|         }),
 | |
|     );
 | |
| 
 | |
|     overlays.open_modal("login_to_access_modal", {
 | |
|         autoremove: true,
 | |
|         micromodal: true,
 | |
|         on_hide: () => {
 | |
|             browser_history.return_to_web_public_hash();
 | |
|         },
 | |
|     });
 | |
| }
 |