From ef1b927861f9a949aed20341144ffb5bfd42f038 Mon Sep 17 00:00:00 2001 From: Yuchen Pei Date: Mon, 19 Sep 2022 11:22:21 +1000 Subject: Removing the web client --- javascript/app/templates/package.hbs | 87 ------------------------------------ 1 file changed, 87 deletions(-) delete mode 100644 javascript/app/templates/package.hbs (limited to 'javascript/app/templates/package.hbs') 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 @@ -
-
- {{#link-to 'package' model}}{{model.id}}{{/link-to}} - - {{#input-with-autocomplete - onSubmit=(action 'searchIdentifier') - createSearchUrlFunction=createSearchUrlFunction - maxItems=10 - selectItem=(action 'showIdentifier') - searchButtonText="Search" - placeholder="Identifier" as |identifier|}} - {{identifier.demangledOccName}} :: {{type-signature-text components=identifier.idType.components}} -
- {{identifier.locationInfo.packageId.name}}-{{identifier.locationInfo.packageId.version}} - {{#if identifier.locationInfo.modulePath}} - {{identifier.locationInfo.modulePath}} - {{else}} - {{identifier.locationInfo.moduleName}} - {{/if}} -
- {{/input-with-autocomplete}} -
- {{#radio-button - value="currentPackage" - groupValue=searchMode}} - in {{model.id}} - {{/radio-button}} - {{#radio-button - value="allPackages" - groupValue=searchMode}} - in all packages - {{/radio-button}} - {{#if currentFile}} - - {{currentFile}} - - {{/if}} -
-
- {{#resizable-panel class="left-panel" alsoResizeElementId="#right-panel" as |hide|}} -
- {{file-tree directoryTree=model.directoryTree openFile="openFile" currentFile=currentFile packageId=model.id hide=hide}} -
- {{/resizable-panel}} -
-
- {{outlet}} -
- {{#bottom-panel visible=bottomPanelVisible topPanelElementId="#file-container" containerElementId="#right-panel" as |section|}} - {{#if (eq section "header")}} - References to {{occName}} - {{#if locationInfo.packageId}} - (defined in {{locationInfo.packageId.name}}-{{locationInfo.packageId.version}} / {{locationInfo.moduleName}}) - {{/if}} - {{else}} -
- {{#if globalReferences}} - - {{#each globalReferences as |ref|}} -
- - {{ref.packageId}} - ({{ref.count}}) -
- {{/each}} -
- {{/if}} -
-
- {{#paginated-list url=referencesUrl foundWhere=(concat "in " packageId "") as |files|}} - - {{/paginated-list}} -
- {{/if}} - {{/bottom-panel}} -
-
-
-- cgit v1.2.3