Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

✨🐞 Improve/rethink/fix Live Preview (#450) #452

Merged
merged 1 commit into from
Jun 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions app.js
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,15 @@ angular.module('voting-booth').config(
isPreview: true
}
})
.state('election.booth-uuid-preview', {
url: '/:id/uuid-preview-vote',
templateUrl: 'avBooth/booth.html',
controller: "BoothController",
params: {
isPreview: true,
isUuidPreview: true
}
})
.state('election.public.show.home.simple', {
template: '<div ave-simple-question></div>'
})
Expand Down
115 changes: 71 additions & 44 deletions avBooth/booth-directive/booth-directive.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ angular.module('avBooth')
$rootScope,
$timeout,
$window,
$location,
Authmethod,
ConfigService,
HmacService,
Expand All @@ -44,6 +45,7 @@ angular.module('avBooth')
// demo booth
scope.isDemo = (attrs.isDemo === "true");
scope.isPreview = (attrs.isPreview === "true");
scope.isUuidPreview = (attrs.isUuidPreview === "true");
scope.documentation = ConfigService.documentation;
scope.hasSeenStartScreenInThisSession = false;

Expand Down Expand Up @@ -888,21 +890,34 @@ angular.module('avBooth')
var futureResult = $q.defer();
try {
if (scope.isPreview) {
var previewElection = JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId)));
var foundElection = previewElection.find(
function (element) {return element.id === parseInt(electionId);
});

if (foundElection) {
var ballotBoxData = ElectionCreation.generateBallotBoxResponse(foundElection);
futureResult.resolve({
data: {
payload: ballotBoxData
}
});
var previewResult = $q.defer();
if (scope.isUuidPreview) {
var uuid = $location.search().uuid;
Authmethod.getLivePreview(uuid)
.then(function (res) {
previewResult.resolve(res.data);
}, previewResult.reject);
} else {
futureResult.reject("election not found");
previewResult.resolve(JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId))));
}

previewResult.promise
.then(function onSuccess(previewElection) {
var foundElection = previewElection.find(
function (element) {return element.id === parseInt(electionId);
});

if (foundElection) {
var ballotBoxData = ElectionCreation.generateBallotBoxResponse(foundElection);
futureResult.resolve({
data: {
payload: ballotBoxData
}
});
} else {
futureResult.reject("election not found");
}
}, futureResult.reject);
} else {
var electionPromise = $http.get(
scope.baseUrl + "election/" + electionId,
Expand Down Expand Up @@ -941,7 +956,7 @@ angular.module('avBooth')

function execIfAllRetrieved(callback)
{
if (!sequentElectionsRetrieved || !iamRetrieved) {
if (!sequentElectionsRetrieved || !iamRetrieved) {
return;
}
callback();
Expand All @@ -955,24 +970,9 @@ angular.module('avBooth')

var ballotBoxData;
var authapiData;
if (scope.isPreview) {
var previewElection = JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId)));
var foundElection;
if (electionId === undefined) {
electionId = parseInt(attrs.electionId);
}

if (previewElection.length === 1) {
foundElection = previewElection[0];
foundElection.id = foundElection.id || (electionId && parseInt(electionId));
} else {
foundElection = previewElection.find(function (element) { return element.id === parseInt(electionId); });
}
authapiData = ElectionCreation.generateAuthapiResponse(foundElection);
ballotBoxData = ElectionCreation.generateBallotBoxResponse(foundElection);
}

var electionPromise;
var authapiDataFuture = $q.defer();
var electionFuture = $q.defer();
var electionPromise = electionFuture.promise;
if (!scope.isPreview) {
electionPromise = $http.get(
scope.baseUrl + "election/" + scope.electionId,
Expand All @@ -981,15 +981,40 @@ angular.module('avBooth')
}
);
} else {
var deferredElection = $q.defer();
var previewResult = $q.defer();
if (scope.isUuidPreview) {
var uuid = $location.search().uuid;
Authmethod.getLivePreview(uuid)
.then(function (res) {
previewResult.resolve(res.data);
}, previewResult.reject);
} else {
previewResult.resolve(JSON.parse(scope.previewElection || sessionStorage.getItem(parseInt(attrs.electionId))));
}

deferredElection.resolve({
data: {
payload: ballotBoxData
}
});
previewResult.promise
.then(function onSuccess(previewElection) {
var foundElection;
if (electionId === undefined) {
electionId = parseInt(attrs.electionId);
}

if (previewElection.length === 1) {
foundElection = previewElection[0];
foundElection.id = foundElection.id || (electionId && parseInt(electionId));
} else {
foundElection = previewElection.find(function (element) { return element.id === parseInt(electionId); });
}
authapiData = ElectionCreation.generateAuthapiResponse(foundElection);
ballotBoxData = ElectionCreation.generateBallotBoxResponse(foundElection);
authapiDataFuture.resolve(authapiData);

electionPromise = deferredElection.promise;
electionFuture.resolve({
data: {
payload: ballotBoxData
}
});
});
}

electionPromise
Expand Down Expand Up @@ -1171,11 +1196,13 @@ angular.module('avBooth')
} else {
var deferredAuthEvent = $q.defer();

deferredAuthEvent.resolve({
data: {
status: "ok",
events: authapiData
}
authapiDataFuture.promise.then(function (data) {
deferredAuthEvent.resolve({
data: {
status: "ok",
events: data
}
});
});

authEventPromise = deferredAuthEvent.promise;
Expand Down
1 change: 1 addition & 0 deletions avBooth/booth.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
config="{{config}}"
is-demo="{{isDemo}}"
is-preview="{{isPreview}}"
is-uuid-preview="{{isUuidPreview}}"
preview-election="{{previewElection}}"
>
</div>
1 change: 1 addition & 0 deletions avBooth/booth.js
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ angular
var previewElectionParam = ($location.search())['preview-election'];
$scope.previewElection = previewElectionParam && decodeURIComponent(previewElectionParam);
$scope.isPreview = $stateParams.isPreview || false;
$scope.isUuidPreview = $stateParams.isUuidPreview || false;
$scope.electionId = $stateParams.id;
$scope.baseUrl = ConfigService.baseUrl;
$scope.config = $filter('json')(ConfigService);
Expand Down
Loading