You cannot select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
	
	
		
			84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
			
		
		
	
	
			84 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			JavaScript
		
	
| 'use strict';
 | |
| 
 | |
| /* global window: false */
 | |
| 
 | |
| // Because we aren't hosting the Style Guide in Electron, we can't rely on preload.js
 | |
| //   to set things up for us. This gives us the minimum bar shims for everything it
 | |
| //   provdes.
 | |
| //
 | |
| // Remember, the idea here is just to enable visual testing, no full functionality. Most
 | |
| //   of thise can be very simple.
 | |
| 
 | |
| window.PROTO_ROOT = '/protos';
 | |
| window.nodeSetImmediate = () => {};
 | |
| 
 | |
| window.libphonenumber = {
 | |
|   parse: number => ({
 | |
|     e164: number,
 | |
|     isValidNumber: true,
 | |
|     getCountryCode: () => '1',
 | |
|     getNationalNumber: () => number,
 | |
|   }),
 | |
|   isValidNumber: () => true,
 | |
|   getRegionCodeForNumber: () => '1',
 | |
|   format: number => number.e164,
 | |
|   PhoneNumberFormat: {},
 | |
| };
 | |
| 
 | |
| window.Signal = {};
 | |
| window.Signal.Backup = {};
 | |
| window.Signal.Crypto = {};
 | |
| window.Signal.Logs = {};
 | |
| window.Signal.Migrations = {
 | |
|   getPlaceholderMigrations: () => [
 | |
|     {
 | |
|       migrate: (transaction, next) => {
 | |
|         console.log('migration version 1');
 | |
|         transaction.db.createObjectStore('conversations');
 | |
|         next();
 | |
|       },
 | |
|       version: 1,
 | |
|     },
 | |
|     {
 | |
|       migrate: (transaction, next) => {
 | |
|         console.log('migration version 2');
 | |
|         const messages = transaction.db.createObjectStore('messages');
 | |
|         messages.createIndex('expires_at', 'expireTimer', { unique: false });
 | |
|         next();
 | |
|       },
 | |
|       version: 2,
 | |
|     },
 | |
|   ],
 | |
|   loadAttachmentData: attachment => Promise.resolve(attachment),
 | |
| };
 | |
| 
 | |
| window.Signal.Components = {};
 | |
| 
 | |
| window.EmojiConvertor = function EmojiConvertor() {};
 | |
| window.EmojiConvertor.prototype.init_colons = () => {};
 | |
| window.EmojiConvertor.prototype.signalReplace = html => html;
 | |
| window.EmojiConvertor.prototype.replace_unified = string => string;
 | |
| window.EmojiConvertor.prototype.img_sets = {
 | |
|   apple: {},
 | |
| };
 | |
| 
 | |
| window.i18n = () => '';
 | |
| 
 | |
| // Ideally we don't need to add things here. We want to add them in StyleGuideUtil, which
 | |
| //   means that references to these things can't be early-bound, not capturing the direct
 | |
| //   reference to the function on file load.
 | |
| window.Signal.Migrations.V17 = {};
 | |
| window.Signal.OS = {};
 | |
| window.Signal.Types = {};
 | |
| window.Signal.Types.Attachment = {};
 | |
| window.Signal.Types.Conversation = {};
 | |
| window.Signal.Types.Errors = {};
 | |
| window.Signal.Types.Message = {
 | |
|   initializeSchemaVersion: attributes => attributes,
 | |
| };
 | |
| window.Signal.Types.MIME = {};
 | |
| window.Signal.Types.Settings = {};
 | |
| window.Signal.Views = {};
 | |
| window.Signal.Views.Initialization = {};
 | |
| window.Signal.Workflow = {};
 |