예제 #1
0
        public DocumentActions(VisualElement detailActions)
        {
            originDetailActions = detailActions;
            originDetailActions.parent.Add(this);

            VisualTreeAsset asset = EditorGUIUtility.Load(TemplatePath) as VisualTreeAsset;

#if UNITY_2019_1_OR_NEWER
            root = asset.CloneTree();
            styleSheets.Add(AssetDatabase.LoadAssetAtPath <StyleSheet> (StylePath));
#else
            root = asset.CloneTree(null);
            AddStyleSheetPath(StylePath);
#endif

            Add(root);

            // Find ui elements.
            hostButton = root.Q <Button> ("hostButton");
            viewDocumentationButton = root.Q <Button> ("viewDocumentationButton");
            viewChangelogButton     = root.Q <Button> ("viewChangelogButton");
            viewLicenseButton       = root.Q <Button> ("viewLicenseButton");

            // Adjust host icon.
            hostButton.RemoveFromClassList("unity-button");
            hostButton.RemoveFromClassList("button");

            // Add callbacks
            hostButton.clickable.clicked += () => Application.OpenURL(PackageUtils.GetRepoHttpUrl(packageInfo));
            viewDocumentationButton.clickable.clicked += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(packageInfo, "README.*"));
            viewChangelogButton.clickable.clicked     += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(packageInfo, "CHANGELOG.*"));
            viewLicenseButton.clickable.clicked       += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(packageInfo, "LICENSE.*"));
        }
예제 #2
0
        /// <summary>
        /// Called by the Package Manager UI when the package selection changed.
        /// </summary>
        /// <param name="packageInfo">The newly selected package information (can be null)</param>
        public void OnPackageSelectionChange(PackageInfo packageInfo)
        {
            InitializeUI();
            if (!_initialized || packageInfo == null || _packageInfo == packageInfo)
            {
                return;
            }

            _packageInfo = packageInfo;

            var isGit = packageInfo.source == PackageSource.Git;

            UIUtils.SetElementDisplay(_gitDetailActoins, isGit);
            UIUtils.SetElementDisplay(_originalDetailActions, !isGit);
            UIUtils.SetElementDisplay(_detailControls.Q("", "popupField"), !isGit);
            UIUtils.SetElementDisplay(_updateButton, isGit);
            UIUtils.SetElementDisplay(_versionPopup, isGit);
            UIUtils.SetElementDisplay(_originalAddButton, false);
            UIUtils.SetElementDisplay(_addButton, true);

            if (isGit)
            {
                _updateButton.text = "Update to";
                _versionPopup.SetEnabled(false);
                _updateButton.SetEnabled(false);
                GitUtils.GetRefs(PackageUtils.GetRepoHttpUrl(_packageInfo.packageId), _refs, () =>
                {
                    _updateButton.SetEnabled(_currentRefName != _selectedRefName);
                    _versionPopup.SetEnabled(true);
                });

                SetVersion(_currentRefName);
                EditorApplication.delayCall += () =>
                {
                    UIUtils.SetElementDisplay(_detailControls.Q("updateCombo"), true);
                    UIUtils.SetElementDisplay(_detailControls.Q("remove"), true);
                    _detailControls.Q("remove").SetEnabled(true);
                }
                ;
                _currentHostData = Settings.GetHostData(_packageInfo.packageId);

                _hostingIcon.tooltip = "View on " + _currentHostData.Name;
                _hostingIcon.style.backgroundImage = EditorGUIUtility.isProSkin ? _currentHostData.LogoLight : _currentHostData.LogoDark;
            }
        }
예제 #3
0
        /// <summary>
        /// Initializes UI.
        /// </summary>
        void InitializeUI()
        {
            if (_initialized)
            {
                return;
            }

            var asset = AssetDatabase.LoadAssetAtPath <VisualTreeAsset> (TemplatePath);

            if (!asset)
            {
                return;
            }

#if UNITY_2019_1_OR_NEWER
            _gitDetailActoins = asset.CloneTree().Q("detailActions");
            _gitDetailActoins.styleSheets.Add(AssetDatabase.LoadAssetAtPath <StyleSheet> (StylePath));
#else
            _gitDetailActoins = asset.CloneTree(null).Q("detailActions");
            _gitDetailActoins.AddStyleSheetPath(StylePath);
#endif

            // Add callbacks
            _hostingIcon.clickable.clicked       += () => Application.OpenURL(PackageUtils.GetRepoHttpUrl(_packageInfo));
            _viewDocumentation.clickable.clicked += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(_packageInfo, "README.*"));
            _viewChangelog.clickable.clicked     += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(_packageInfo, "CHANGELOG.*"));
            _viewLicense.clickable.clicked       += () => MarkdownUtils.OpenInBrowser(PackageUtils.GetFilePath(_packageInfo, "LICENSE.*"));

            // Move element to documentationContainer
            _detailControls         = parent.parent.Q("detailsControls") ?? parent.parent.parent.parent.Q("packageToolBar");
            _documentationContainer = parent.parent.Q("documentationContainer");
            _originalDetailActions  = _documentationContainer.Q("detailActions");
            _documentationContainer.Add(_gitDetailActoins);

            _updateButton = new Button(AddOrUpdatePackage)
            {
                name = "update", text = "Up to date"
            };
            _updateButton.AddToClassList("action");
            _versionPopup = new Button(PopupVersions);
            _versionPopup.AddToClassList("popup");
            _versionPopup.AddToClassList("popupField");
            _versionPopup.AddToClassList("versions");

            if (_detailControls.name == "packageToolBar")
            {
                _hostingIcon.style.borderLeftWidth  = 0;
                _hostingIcon.style.borderRightWidth = 0;
                _versionPopup.style.marginLeft      = -10;
                _detailControls.Q("rightItems").Insert(1, _updateButton);
                _detailControls.Q("rightItems").Insert(2, _versionPopup);
            }
            else
            {
                _versionPopup.style.marginLeft   = -4;
                _versionPopup.style.marginRight  = -3;
                _versionPopup.style.marginTop    = -3;
                _versionPopup.style.marginBottom = -3;
                _detailControls.Q("updateCombo").Insert(1, _updateButton);
                _detailControls.Q("updateDropdownContainer").Add(_versionPopup);
            }

            // Add package button
            var _root = UIUtils.GetRoot(_gitDetailActoins);
            _originalAddButton = _root.Q("toolbarAddButton") ?? _root.Q("moreAddOptionsButton");
            _addButton         = new Button(AddPackage)
            {
                name = "moreAddOptionsButton", text = "+"
            };
            _addButton.AddToClassList("toolbarButton");
            _addButton.AddToClassList("space");
            _addButton.AddToClassList("pulldown");
            _originalAddButton.parent.Insert(_originalAddButton.parent.IndexOf(_originalAddButton) + 1, _addButton);

            _initialized = true;
        }