2018-04-05 22:30:40 +00:00
|
|
|
/* global window: false */
|
2018-04-03 22:56:12 +00:00
|
|
|
|
2018-04-05 22:30:40 +00:00
|
|
|
// Because we aren't hosting the Style Guide in Electron, we can't rely on preload.js
|
2018-04-03 22:56:12 +00:00
|
|
|
// 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.Signal = {};
|
|
|
|
window.Signal.Backup = {};
|
|
|
|
window.Signal.Crypto = {};
|
|
|
|
window.Signal.Logs = {};
|
2018-04-05 15:31:19 +00:00
|
|
|
window.Signal.Migrations = {
|
|
|
|
getPlaceholderMigrations: () => {},
|
|
|
|
};
|
2018-04-03 22:56:12 +00:00
|
|
|
|
2018-04-05 22:30:40 +00:00
|
|
|
window.Signal.React = {};
|
2018-04-03 22:56:12 +00:00
|
|
|
|
|
|
|
window.EmojiConvertor = function EmojiConvertor() {};
|
2018-04-05 00:26:57 +00:00
|
|
|
window.EmojiConvertor.prototype.init_colons = () => {};
|
2018-04-03 22:56:12 +00:00
|
|
|
window.EmojiConvertor.prototype.signalReplace = html => html;
|
|
|
|
window.EmojiConvertor.prototype.replace_unified = string => string;
|
|
|
|
window.EmojiConvertor.prototype.img_sets = {
|
2018-04-05 22:30:40 +00:00
|
|
|
apple: {},
|
2018-04-03 22:56:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
window.i18n = () => '';
|
|
|
|
|
|
|
|
window.Signal.Migrations.V17 = {};
|
|
|
|
window.Signal.OS = {};
|
|
|
|
window.Signal.Types = {};
|
|
|
|
window.Signal.Types.Attachment = {};
|
|
|
|
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 = {};
|