/
githubmirror
/
brackets
Обзор
Документация
Войти
/
githubmirror
/
brackets
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/extensions/default/HealthData/HealthDataUtils.js
109 строк
4 KB
ficristo
Move most inline jslint directives to config files
12 авг 2016, 10:22
12 авг 2016, 10:22
074382a
Код
Авторство
О чём код?
/* * Copyright (c) 2015 - present Adobe Systems Incorporated. All rights reserved. * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER * DEALINGS IN THE SOFTWARE. * */ define(function (require, exports, module) { "use strict"; var _ = brackets.getModule("thirdparty/lodash"), ExtensionManager = brackets.getModule("extensibility/ExtensionManager"), PreferencesManager = brackets.getModule("preferences/PreferencesManager"); var themesPref = PreferencesManager.getExtensionPrefs("themes"); /** * @private * Check for the extensions whether it is user installed and present in the registry. * @param {Object} extensions synchronized with registry object * return {Array} userInstalledExtensions */ function getUserExtensionsPresentInRegistry(extensions) { var userInstalledExtensions = []; _.forEach(extensions, function (extension, extensionId) { if (extension && extension.installInfo && extension.installInfo.locationType === ExtensionManager.LOCATION_USER && extension.registryInfo) { userInstalledExtensions.push({"name" : extensionId, "version" : extension.installInfo.metadata.version}); } }); return userInstalledExtensions; } /** * Utility function to get the user installed extension which are present in the registry */ function getUserInstalledExtensions() { var result = new $.Deferred(); if (!ExtensionManager.hasDownloadedRegistry) { ExtensionManager.downloadRegistry().done(function () { result.resolve(getUserExtensionsPresentInRegistry(ExtensionManager.extensions)); }) .fail(function () { result.resolve([]); }); } else { result.resolve(getUserExtensionsPresentInRegistry(ExtensionManager.extensions)); } return result.promise(); } /** * Utility function to get the user installed theme which are present in the registry */ function getUserInstalledTheme() { var result = new $.Deferred(); var installedTheme = themesPref.get("theme"), bracketsTheme; if (installedTheme === "light-theme" || installedTheme === "dark-theme") { return result.resolve(installedTheme); } if (!ExtensionManager.hasDownloadedRegistry) { ExtensionManager.downloadRegistry().done(function () { bracketsTheme = ExtensionManager.extensions[installedTheme]; if (bracketsTheme && bracketsTheme.installInfo && bracketsTheme.installInfo.locationType === ExtensionManager.LOCATION_USER && bracketsTheme.registryInfo) { result.resolve(installedTheme); } else { result.reject(); } }) .fail(function () { result.reject(); }); } else { bracketsTheme = ExtensionManager.extensions[installedTheme]; if (bracketsTheme && bracketsTheme.installInfo && bracketsTheme.installInfo.locationType === ExtensionManager.LOCATION_USER && bracketsTheme.registryInfo) { result.resolve(installedTheme); } else { result.reject(); } } return result.promise(); } exports.getUserInstalledExtensions = getUserInstalledExtensions; exports.getUserInstalledTheme = getUserInstalledTheme; });