%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : www.kowitt.ac.th / Your IP : 216.73.216.118 Web Server : Microsoft-IIS/7.5 System : Windows NT SERVER02 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586 User : IUSR ( 0) PHP Version : 5.6.31 Disable Function : NONE MySQL : ON | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /Program Files/Microsoft VS Code/resources/app/extensions/git/out/ |
Upload File : |
/*--------------------------------------------------------------------------------------------- * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. See License.txt in the project root for license information. *--------------------------------------------------------------------------------------------*/ 'use strict'; Object.defineProperty(exports, "__esModule", { value: true }); const vscode_1 = require("vscode"); const repository_1 = require("./repository"); const util_1 = require("./util"); const nls = require("vscode-nls"); const localize = nls.loadMessageBundle(__filename); class CheckoutStatusBar { constructor(repository) { this.repository = repository; this._onDidChange = new vscode_1.EventEmitter(); this.disposables = []; repository.onDidRunGitStatus(this._onDidChange.fire, this._onDidChange, this.disposables); } get onDidChange() { return this._onDidChange.event; } get command() { const title = `$(git-branch) ${this.repository.headLabel}`; return { command: 'git.checkout', tooltip: localize(0, null), title, arguments: [this.repository.sourceControl] }; } dispose() { this.disposables.forEach(d => d.dispose()); } } class SyncStatusBar { constructor(repository) { this.repository = repository; this._onDidChange = new vscode_1.EventEmitter(); this.disposables = []; this._state = SyncStatusBar.StartState; repository.onDidRunGitStatus(this.onModelChange, this, this.disposables); repository.onDidChangeOperations(this.onOperationsChange, this, this.disposables); this._onDidChange.fire(); } get onDidChange() { return this._onDidChange.event; } get state() { return this._state; } set state(state) { this._state = state; this._onDidChange.fire(); } onOperationsChange() { const isSyncRunning = this.repository.operations.isRunning(repository_1.Operation.Sync) || this.repository.operations.isRunning(repository_1.Operation.Push) || this.repository.operations.isRunning(repository_1.Operation.Pull); this.state = Object.assign({}, this.state, { isSyncRunning }); } onModelChange() { this.state = Object.assign({}, this.state, { hasRemotes: this.repository.remotes.length > 0, HEAD: this.repository.HEAD }); } get command() { if (!this.state.hasRemotes) { return undefined; } const HEAD = this.state.HEAD; let icon = '$(sync)'; let text = ''; let command = ''; let tooltip = ''; if (HEAD && HEAD.name && HEAD.commit) { if (HEAD.upstream) { if (HEAD.ahead || HEAD.behind) { text += this.repository.syncLabel; } command = 'git.sync'; tooltip = localize(1, null); } else { icon = '$(cloud-upload)'; command = 'git.publish'; tooltip = localize(2, null); } } else { command = ''; tooltip = ''; } if (this.state.isSyncRunning) { icon = '$(sync~spin)'; command = ''; tooltip = localize(3, null); } return { command, title: [icon, text].join(' ').trim(), tooltip, arguments: [this.repository.sourceControl] }; } dispose() { this.disposables.forEach(d => d.dispose()); } } SyncStatusBar.StartState = { isSyncRunning: false, hasRemotes: false, HEAD: undefined }; class StatusBarCommands { constructor(repository) { this.disposables = []; this.syncStatusBar = new SyncStatusBar(repository); this.checkoutStatusBar = new CheckoutStatusBar(repository); } get onDidChange() { return util_1.anyEvent(this.syncStatusBar.onDidChange, this.checkoutStatusBar.onDidChange); } get commands() { const result = []; const checkout = this.checkoutStatusBar.command; if (checkout) { result.push(checkout); } const sync = this.syncStatusBar.command; if (sync) { result.push(sync); } return result; } dispose() { this.syncStatusBar.dispose(); this.checkoutStatusBar.dispose(); this.disposables = util_1.dispose(this.disposables); } } exports.StatusBarCommands = StatusBarCommands; //# sourceMappingURL=https://ticino.blob.core.windows.net/sourcemaps/0f080e5267e829de46638128001aeb7ca2d6d50e/extensions\git\out/statusbar.js.map