-
-
Notifications
You must be signed in to change notification settings - Fork 572
Expand file tree
/
Copy pathapplication.js
More file actions
142 lines (126 loc) · 3.97 KB
/
application.js
File metadata and controls
142 lines (126 loc) · 3.97 KB
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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
// This is a manifest file that'll be compiled into application.js, which will include all the files
// listed below.
//
// Any JavaScript file within this directory, lib/assets/javascripts, vendor/assets/javascripts,
// or any plugin's vendor/assets/javascripts directory can be referenced here using a relative path.
//
// It's not advisable to add code directly here, but if you do, it'll appear at the bottom of the
// compiled file. JavaScript code in this file should be added after the last require_* statement.
//
// Read Sprockets README (https://github.com/rails/sprockets#sprockets-directives) for details
// about supported directives.
//
//= require rails-ujs
//= require jquery
//= require popper
//= require bootstrap
// require jquery_ujs
//= require filterrific/filterrific-jquery
//= require bootstrap-select
//= require bootstrap/alert
//= require fastclick
//= require adminlte.min
//= require cocoon
//= require toastr
//= require Chart.bundle
//= require chartkick
//= require moment
//= require fullcalendar
//= require quagga
//= require daterangepicker
//= require_tree .
function isMobileResolution() {
return $(window).width() < 992;
}
function isShortHeightScreen() {
return $(window).height() < 768 && !isMobileResolution();
}
window.setTimeout(function() {
// When the user is given an error message, we should not auto-hide it so that
// they can fully read it and potentially copy/paste it into an issue.
$(".alert").not(".error").fadeTo(1000, 0).slideUp(1000, function() {
$(this).remove();
});
}, 2500);
// Global toastr options
toastr.options = {
"timeOut": "1400"
}
$(document).ready(function () {
const isMobile = isMobileResolution();
const isShortHeight = isShortHeightScreen();
$('#calendar').fullCalendar({
firstDay: 1,
displayEventTime: true,
eventLimit: true,
events: 'schedule.json',
height: isMobile || isShortHeight ? 'auto' : 'parent',
defaultView: isMobile ? 'listWeek' : 'month'
});
});
$(document).ready(function() {
Filterrific.init();
});
function order_by_occurrence(arr) {
var counts = {};
arr.forEach(function (value) {
if (!counts[value]) {
counts[value] = 0;
}
counts[value]++;
});
return Object.keys(counts).sort(function (curKey, nextKey) {
return counts[curKey] < counts[nextKey];
});
}
function load_quagga() {
if ($('#barcode-scanner').length > 0 && navigator.mediaDevices && typeof navigator.mediaDevices.getUserMedia === 'function') {
var last_result = [];
if (Quagga.initialized == undefined) {
Quagga.onDetected(function (result) {
var last_code = result.codeResult.code;
last_result.push(last_code);
if (last_result.length > 20) {
code = order_by_occurrence(last_result)[0];
last_result = [];
Quagga.stop();
$.ajax({
type: "POST",
url: '/products/get_barcode',
data: { upc: code }
});
}
});
}
Quagga.init({
inputStream: {
name: "Live",
type: "LiveStream",
numOfWorkers: navigator.hardwareConcurrency,
target: document.querySelector('#barcode-scanner')
},
decoder: {
readers: ['ean_reader', 'ean_8_reader', 'code_39_reader', 'code_39_vin_reader', 'codabar_reader', 'upc_reader', 'upc_e_reader']
}
}, function (err) {
if (err) { console.log(err); return }
Quagga.initialized = true;
Quagga.start();
});
}
};
$(document).on('turbolinks:load', load_quagga);
/**
* Handle loading on specified tab in the URL parameter. In case we would like
* to direct a user to a specific tab on a page rather than the default.
*/
$(document).ready(function () {
var hash = location.hash.replace(/^#/, ''); // ^ means starting, meaning only match the first hash
if (hash) {
$('.nav-tabs a[href="#' + hash + '"]').tab('show');
}
// Change hash for page-reload
$('.nav-tabs a').on('shown.bs.tab', function (e) {
window.location.hash = e.target.hash;
})
})