| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- // Copyright (C) 2014 The Syncthing Authors.
- //
- // This Source Code Form is subject to the terms of the Mozilla Public
- // License, v. 2.0. If a copy of the MPL was not distributed with this file,
- // You can obtain one at https://mozilla.org/MPL/2.0/.
- /*jslint browser: true, continue: true, plusplus: true */
- /*global $: false, angular: false, console: false, validLangs: false */
- var syncthing = angular.module('syncthing', [
- 'angularUtils.directives.dirPagination',
- 'pascalprecht.translate', 'ngSanitize',
- 'syncthing.core'
- ]);
- var urlbase = 'rest';
- syncthing.config(function ($httpProvider, $translateProvider, LocaleServiceProvider) {
- var deviceIDShort = metadata.deviceID.substr(0, 5);
- $httpProvider.defaults.xsrfHeaderName = 'X-CSRF-Token-' + deviceIDShort;
- $httpProvider.defaults.xsrfCookieName = 'CSRF-Token-' + deviceIDShort;
- // language and localisation
- $translateProvider.useSanitizeValueStrategy('escape');
- $translateProvider.useStaticFilesLoader({
- prefix: 'assets/lang/lang-',
- suffix: '.json'
- });
- LocaleServiceProvider.setAvailableLocales(validLangs);
- LocaleServiceProvider.setDefaultLocale('en');
- });
- // @TODO: extract global level functions into separate service(s)
- function deviceCompare(a, b) {
- if (typeof a.name !== 'undefined' && typeof b.name !== 'undefined') {
- if (a.name < b.name)
- return -1;
- return a.name > b.name;
- }
- if (a.deviceID < b.deviceID) {
- return -1;
- }
- return a.deviceID > b.deviceID;
- }
- function folderCompare(a, b) {
- var labelA = a.id;
- if (typeof a.label !== 'undefined' && a.label !== null && a.label.length > 0) {
- labelA = a.label;
- }
- var labelB = b.id;
- if (typeof b.label !== 'undefined' && b.label !== null && b.label.length > 0) {
- labelB = b.label;
- }
- if (labelA < labelB) {
- return -1;
- }
- return labelA > labelB;
- }
- function folderMap(l) {
- var m = {};
- l.forEach(function (r) {
- m[r.id] = r;
- });
- return m;
- }
- function folderList(m) {
- var l = [];
- for (var id in m) {
- l.push(m[id]);
- }
- l.sort(folderCompare);
- return l;
- }
- function decimals(val, num) {
- var digits, decs;
- if (val === 0) {
- return 0;
- }
- digits = Math.floor(Math.log(Math.abs(val)) / Math.log(10));
- decs = Math.max(0, num - digits);
- return decs;
- }
- function isEmptyObject(obj) {
- var name;
- for (name in obj) {
- return false;
- }
- return true;
- }
- function debounce(func, wait) {
- var timeout, args, context, timestamp, result, again;
- var later = function () {
- var last = Date.now() - timestamp;
- if (last < wait) {
- timeout = setTimeout(later, wait - last);
- } else {
- timeout = null;
- if (again) {
- again = false;
- result = func.apply(context, args);
- context = args = null;
- }
- }
- };
- return function () {
- context = this;
- args = arguments;
- timestamp = Date.now();
- if (!timeout) {
- timeout = setTimeout(later, wait);
- result = func.apply(context, args);
- context = args = null;
- } else {
- again = true;
- }
- return result;
- };
- }
|