aboutsummaryrefslogtreecommitdiff
path: root/javascript/app/templates/package.hbs
diff options
context:
space:
mode:
authorYuchen Pei <hi@ypei.me>2022-09-19 11:22:21 +1000
committerYuchen Pei <hi@ypei.me>2022-09-19 11:22:21 +1000
commitef1b927861f9a949aed20341144ffb5bfd42f038 (patch)
tree48bd4688928546bedc6504aad76bf6e0327fcef9 /javascript/app/templates/package.hbs
parent117850d8f659517cb818a857dc04c8f5157795c4 (diff)
Removing the web client
Diffstat (limited to 'javascript/app/templates/package.hbs')
-rw-r--r--javascript/app/templates/package.hbs87
1 files changed, 0 insertions, 87 deletions
diff --git a/javascript/app/templates/package.hbs b/javascript/app/templates/package.hbs
deleted file mode 100644
index d26ce34..0000000
--- a/javascript/app/templates/package.hbs
+++ /dev/null
@@ -1,87 +0,0 @@
-<div class="flex-container">
- <div class="package-header">
- <span class="package-header-package-name">{{#link-to 'package' model}}{{model.id}}{{/link-to}}</span>
- <span class="package-header-input">
- {{#input-with-autocomplete
- onSubmit=(action 'searchIdentifier')
- createSearchUrlFunction=createSearchUrlFunction
- maxItems=10
- selectItem=(action 'showIdentifier')
- searchButtonText="Search"
- placeholder="Identifier" as |identifier|}}
- <span class="source-code-font">{{identifier.demangledOccName}} :: {{type-signature-text components=identifier.idType.components}}</span>
- <div class="module-name">
- <b>{{identifier.locationInfo.packageId.name}}-{{identifier.locationInfo.packageId.version}}</b>
- {{#if identifier.locationInfo.modulePath}}
- {{identifier.locationInfo.modulePath}}
- {{else}}
- {{identifier.locationInfo.moduleName}}
- {{/if}}
- </div>
- {{/input-with-autocomplete}}
- </span>
- {{#radio-button
- value="currentPackage"
- groupValue=searchMode}}
- <span>in {{model.id}}</span>
- {{/radio-button}}
- {{#radio-button
- value="allPackages"
- groupValue=searchMode}}
- <span>in all packages</span>
- {{/radio-button}}
- {{#if currentFile}}
- <span class="package-header-filename">
- {{currentFile}}
- </span>
- {{/if}}
- </div>
- <div class="package-content">
- {{#resizable-panel class="left-panel" alsoResizeElementId="#right-panel" as |hide|}}
- <div class="file-tree-container">
- {{file-tree directoryTree=model.directoryTree openFile="openFile" currentFile=currentFile packageId=model.id hide=hide}}
- </div>
- {{/resizable-panel}}
- <div id="right-panel" class="right-panel">
- <div id="file-container" class="file-container">
- {{outlet}}
- </div>
- {{#bottom-panel visible=bottomPanelVisible topPanelElementId="#file-container" containerElementId="#right-panel" as |section|}}
- {{#if (eq section "header")}}
- References to <b><span class="source-code">{{occName}}</span></b>
- {{#if locationInfo.packageId}}
- (defined in <b>{{locationInfo.packageId.name}}-{{locationInfo.packageId.version}}</b> / <b>{{locationInfo.moduleName}}</b>)
- {{/if}}
- {{else}}
- <div id="references-packages" class="references-packages">
- {{#if globalReferences}}
- <span>
- {{#each globalReferences as |ref|}}
- <div>
- <a id="references-package-{{ref.packageId}}" class="{{if (eq ref.packageId packageId) 'selected'}}" href="#" {{action "updateReferences" ref.packageId externalId occName locationInfo true}}>
- {{ref.packageId}}
- </a> ({{ref.count}})
- </div>
- {{/each}}
- </span>
- {{/if}}
- </div>
- <div class="references">
- {{#paginated-list url=referencesUrl foundWhere=(concat "in <b>" packageId "</b>") as |files|}}
- <ul>
- {{#each files as |file|}}
- <li>
- <div class="file-name"><a href="/package/{{packageId}}/show/{{file.name}}">{{file.name}}</a></div>
- {{#each file.references as |reference|}}
- <a class="source-code source-code-snippet" href="/package/{{packageId}}/show/{{file.name}}#L{{reference.idSrcSpan.line}}">{{{reference.sourceCodeHtml}}}</a>
- {{/each}}
- </li>
- {{/each}}
- </ul>
- {{/paginated-list}}
- </div>
- {{/if}}
- {{/bottom-panel}}
- </div>
- </div>
-</div>