Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

29 строки
1.1 KiB

7 лет назад
  1. 'use strict';
  2. import { ExtensionContext, TextDocumentContentProvider, Uri, window } from 'vscode';
  3. import { DocumentSchemes } from './constants';
  4. import { GitService } from './gitService';
  5. import { Logger } from './logger';
  6. import * as path from 'path';
  7. export class GitContentProvider implements TextDocumentContentProvider {
  8. static scheme = DocumentSchemes.GitLensGit;
  9. constructor(context: ExtensionContext, private git: GitService) { }
  10. async provideTextDocumentContent(uri: Uri): Promise<string> {
  11. const data = GitService.fromGitContentUri(uri);
  12. const fileName = data.originalFileName || data.fileName;
  13. try {
  14. let text = await this.git.getVersionedFileText(data.repoPath, fileName, data.sha);
  15. if (data.decoration) {
  16. text = `${data.decoration}\n${text}`;
  17. }
  18. return text;
  19. }
  20. catch (ex) {
  21. Logger.error(ex, 'GitContentProvider', 'getVersionedFileText');
  22. await window.showErrorMessage(`Unable to show Git revision ${data.sha.substring(0, 8)} of '${path.relative(data.repoPath, fileName)}'`);
  23. return '';
  24. }
  25. }
  26. }