Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
;(function () {
|
|
|
|
'use strict';
|
|
|
|
window.Whisper = window.Whisper || {};
|
|
|
|
|
|
|
|
var State = {
|
|
|
|
DISCONNECTING: 1,
|
|
|
|
EXPORTING: 2,
|
|
|
|
COMPLETE: 3
|
|
|
|
};
|
|
|
|
|
|
|
|
Whisper.Migration = {
|
|
|
|
isComplete: function() {
|
|
|
|
return storage.get('migrationState') === State.COMPLETE;
|
|
|
|
},
|
|
|
|
inProgress: function() {
|
|
|
|
return storage.get('migrationState') > 0 || this.everComplete();
|
|
|
|
},
|
|
|
|
markComplete: function(target) {
|
|
|
|
storage.put('migrationState', State.COMPLETE);
|
|
|
|
storage.put('migrationEverCompleted', true);
|
|
|
|
if (target) {
|
|
|
|
storage.put('migrationStorageLocation', target);
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cancel: function() {
|
|
|
|
storage.remove('migrationState');
|
|
|
|
},
|
|
|
|
beginExport: function() {
|
|
|
|
storage.put('migrationState', State.EXPORTING);
|
|
|
|
return Whisper.Backup.backupToDirectory();
|
|
|
|
},
|
|
|
|
init: function() {
|
|
|
|
storage.put('migrationState', State.DISCONNECTING);
|
|
|
|
Whisper.events.trigger('start-shutdown');
|
|
|
|
},
|
|
|
|
everComplete: function() {
|
|
|
|
return Boolean(storage.get('migrationEverCompleted'));
|
|
|
|
},
|
|
|
|
getExportLocation: function() {
|
|
|
|
return storage.get('migrationStorageLocation');
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
Whisper.MigrationView = Whisper.View.extend({
|
|
|
|
templateName: 'app-migration-screen',
|
|
|
|
className: 'app-loading-screen',
|
|
|
|
events: {
|
2017-09-13 20:33:40 +00:00
|
|
|
'click .install': 'onClickInstall',
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
'click .export': 'onClickExport',
|
2017-09-13 20:33:40 +00:00
|
|
|
'click .debug-log': 'onClickDebugLog',
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
},
|
|
|
|
initialize: function() {
|
|
|
|
if (!Whisper.Migration.inProgress()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// We could be wedged in an 'in progress' state, the migration was started then the
|
|
|
|
// app restarted in the middle.
|
|
|
|
if (Whisper.Migration.everComplete()) {
|
|
|
|
// If the user has ever successfully exported before, we'll show the 'finished'
|
|
|
|
// screen with the 'Export again' button.
|
|
|
|
Whisper.Migration.markComplete();
|
|
|
|
} else if (!Whisper.Migration.isComplete()) {
|
|
|
|
// This takes the user back to the very beginning of the process.
|
|
|
|
Whisper.Migration.cancel();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
render_attributes: function() {
|
|
|
|
var message;
|
|
|
|
var exportButton;
|
|
|
|
var hideProgress = Whisper.Migration.isComplete();
|
|
|
|
var debugLogButton = i18n('submitDebugLog');
|
2017-09-13 20:33:40 +00:00
|
|
|
var installButton = i18n('installNewSignal');
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
|
|
|
|
if (this.error) {
|
|
|
|
return {
|
|
|
|
message: i18n('exportError'),
|
|
|
|
hideProgress: true,
|
|
|
|
exportButton: i18n('exportAgain'),
|
|
|
|
debugLogButton: i18n('submitDebugLog'),
|
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (storage.get('migrationState')) {
|
|
|
|
case State.COMPLETE:
|
|
|
|
var location = Whisper.Migration.getExportLocation() || i18n('selectedLocation');
|
|
|
|
message = i18n('exportComplete', location);
|
|
|
|
exportButton = i18n('exportAgain');
|
|
|
|
debugLogButton = null;
|
|
|
|
break;
|
|
|
|
case State.EXPORTING:
|
|
|
|
message = i18n('exporting');
|
|
|
|
break;
|
|
|
|
case State.DISCONNECTING:
|
|
|
|
message = i18n('migrationDisconnecting');
|
2017-09-13 20:33:40 +00:00
|
|
|
installButton = null;
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
hideProgress = true;
|
|
|
|
message = i18n('exportInstructions');
|
|
|
|
exportButton = i18n('export');
|
|
|
|
debugLogButton = null;
|
2017-09-13 20:33:40 +00:00
|
|
|
installButton = null;
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return {
|
|
|
|
hideProgress: hideProgress,
|
|
|
|
message: message,
|
|
|
|
exportButton: exportButton,
|
|
|
|
debugLogButton: debugLogButton,
|
2017-09-13 20:33:40 +00:00
|
|
|
installButton: installButton,
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
};
|
|
|
|
},
|
2017-09-13 20:33:40 +00:00
|
|
|
onClickInstall: function() {
|
|
|
|
var url = 'https://support.whispersystems.org/hc/en-us/articles/214507138';
|
|
|
|
window.open(url, '_blank');
|
|
|
|
},
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
onClickDebugLog: function() {
|
|
|
|
this.openDebugLog();
|
|
|
|
},
|
|
|
|
openDebugLog: function() {
|
|
|
|
this.closeDebugLog();
|
|
|
|
this.debugLogView = new Whisper.DebugLogView();
|
|
|
|
this.debugLogView.$el.appendTo(this.el);
|
|
|
|
},
|
|
|
|
closeDebugLog: function() {
|
|
|
|
if (this.debugLogView) {
|
|
|
|
this.debugLogView.remove();
|
|
|
|
this.debugLogView = null;
|
|
|
|
}
|
|
|
|
},
|
|
|
|
onClickExport: function() {
|
|
|
|
this.error = null;
|
|
|
|
|
|
|
|
if (!Whisper.Migration.everComplete()) {
|
|
|
|
return this.beginMigration();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Different behavior for the user's second time through
|
|
|
|
Whisper.Migration.beginExport()
|
|
|
|
.then(this.completeMigration.bind(this))
|
|
|
|
.catch(function(error) {
|
|
|
|
if (error.name !== 'ChooseError') {
|
|
|
|
this.error = error.message;
|
|
|
|
}
|
|
|
|
// Even if we run into an error, we call this complete because the user has
|
|
|
|
// completed the process once before.
|
|
|
|
Whisper.Migration.markComplete();
|
|
|
|
this.render();
|
|
|
|
}.bind(this));
|
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
beginMigration: function() {
|
2017-08-28 21:01:51 +00:00
|
|
|
Whisper.events.once('shutdown-complete', function() {
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
Whisper.Migration.beginExport()
|
|
|
|
.then(this.completeMigration.bind(this))
|
|
|
|
.catch(this.onError.bind(this));
|
|
|
|
|
|
|
|
// Rendering because we're now in the 'exporting' state
|
|
|
|
this.render();
|
|
|
|
}.bind(this));
|
|
|
|
|
2017-08-28 21:01:51 +00:00
|
|
|
// tells MessageReceiver to disconnect and drain its queue, will fire
|
|
|
|
// 'shutdown-complete' event when that is done. Might result in a synchronous
|
|
|
|
// event, so call it after we register our callback.
|
|
|
|
Whisper.Migration.init();
|
|
|
|
|
Full export, migration banner, and full migration workflow - behind flag (#1342)
* Add support for backup and restore
This first pass works for all stores except messages, pending some scaling
improvements.
// FREEBIE
* Import of messages and attachments
Properly sanitize filenames. Logging information that will help with
debugging but won't threaten privacy (no contact or group names),
where the on-disk directories have this information to make things
human-readable
FREEBIE
* First fully operational single-action export and import!
FREEBIE
* Add migration export flow
A banner alert leads to a blocking ui for the migration. We close the socket and
wait for incoming messages to drain before starting the export.
FREEBIE
* A number of updates for the export flow
1. We don't immediately pop the directory selection dialog box, instead
showing an explicit 'choose directory' button after explaining what is
about to happen
2. We show a 'submit debug log' button on most steps of the process
3. We handle export errors and encourage the user to double-check their
filesystem then submit their log
4. We are resilient to restarts during the process
5. We handle the user cancelling out of the directory selection dialog
differently from other errors.
6. The export process is now serialized: non-messages, then messages.
7. After successful export, show where the data is on disk
FREEBUE
* Put migration behind a flag
FREEBIE
* Shut down websocket before proceeding with export
FREEBIE
* Add MigrationView to test/index.html to fix test
FREEBIE
* Remove 'Submit Debug Log' button when the export process is complete
FREEBIE
* Create a 'Signal Export' directory below user-chosen dir
This cleans things up a bit so we don't litter the user's target
directory with lots of stuff.
FREEBIE
* Clarify MessageReceiver.drain() method comments
FREEBIE
* A couple updates for clarity - event names, else handling
Also the removal of wait(), which wasn't used anywhere.
FREEBIE
* A number of wording updates for the export flow
FREEBIE
* Export complete: put dir on its own line, make text selectable
FREEBIE
2017-08-28 20:06:10 +00:00
|
|
|
// Rendering because we're now in the 'disconnected' state
|
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
completeMigration: function(target) {
|
|
|
|
// This will prevent connection to the server on future app launches
|
|
|
|
Whisper.Migration.markComplete(target);
|
|
|
|
this.render();
|
|
|
|
},
|
|
|
|
onError: function(error) {
|
|
|
|
if (error.name === 'ChooseError') {
|
|
|
|
this.cancelMigration();
|
|
|
|
} else {
|
|
|
|
Whisper.Migration.cancel();
|
|
|
|
this.error = error.message;
|
|
|
|
this.render();
|
|
|
|
}
|
|
|
|
},
|
|
|
|
cancelMigration: function() {
|
|
|
|
Whisper.Migration.cancel();
|
|
|
|
this.render();
|
|
|
|
}
|
|
|
|
});
|
|
|
|
}());
|