-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhead.js
71 lines (62 loc) · 2.56 KB
/
head.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
function w3_open() {
document.getElementById("sidebar").style.display = "block";
}
function w3_close() {
document.getElementById("sidebar").style.display = "none";
}
// Copyright(c), 2016-2017, Andrew Ferlitsch, All Rights Reserved
technical.controller( 'interviewCtrl', function( $scope, $rootScope ) {
// page view
$scope.page = [];
$scope.page[ "Interview" ] = true;
$scope.lastpage = "Interview";
$scope.showPage = function( page ) {
if ( $scope.lastpage != "" )
$scope.page[ $scope.lastpage ] = false;
$scope.page[ page ] = true;
$scope.lastpage = page;
}
// technical view
$scope.categories = [ "Agile", "AI", "Algorithms", "AngularJS", "C", "C++", "C#", "CSS", "Data Science", "DOS",
"HTML", "HTML5", "Java", "Javascript", "JQuery", "MySQL", "MySQL DBA", "Machine Learning",
"Network", "OOP Design", "OS", "Python", "QA", "R", "Security", "Web" ];
$scope.view = [];
for ( var cat in $scope.categories ) {
$scope.view[ cat ] = false;
}
$scope.showCategory = function( cat) {
if ( $scope.lastcat != "" )
$scope.view[ $scope.lastcat ] = false;
$scope.view[ cat ] = true;
$scope.lastcat = cat;
// reset scoring
totalQuestions = 0;
totalCorrect = 0;
timeSpent = "";
var el = document.getElementById( cat );
setTimeout(function () { el.click(); }, 300);
// Pass the category onto the final score controller
$rootScope.$broadcast('category', cat );
// close the sidebar
w3_close();
}
$scope.$on('reset', function(event, args) {
$scope.showCategory( args );
})
})
.directive( "interview", function() {
return {
restrict: 'A',
template: //"<h4 style='margin-top: -20px; text-align: center; color: steelblue'>The Technical Interview</h4>" +
//"<p>Use our 1300 question/answer dataset to practice a technical phone screen.</p>" +
//"<label for='category' class='w3-label'>Select Skill Category:</label>" +
//"<select name='category' id='category' class='w3-input' ng-model='category' ng-change='showCategory( category)' required>" +
//" <option value='' disabled selected>Select a category...</option>" +
//" <option ng-repeat='category in categories' value={{category}}>{{category}}</option>" +
//"</select>"
"<div class='w3-sidebar w3-bar-block w3-collapse w3-card-2' style='width:200px;' id='sidebar'>" +
" <button class='w3-bar-item w3-button w3-hide-large' onclick='w3_close()'>Close ×</button>" +
" <a href='#' class='w3-bar-item w3-button' ng-repeat='category in categories' ng-click='showCategory( category)'>{{category}}</a>" +
"</div>"
}
});