|
42 | 42 | <div class="container-fluid">
|
43 | 43 | <div ng-if="secret" class="row">
|
44 | 44 | <div class="col-sm-12">
|
45 |
| - <div class="resource-details secret-details"> |
46 |
| - <dl class="dl-horizontal left"> |
47 |
| - <dt>Type:</dt> |
48 |
| - <dd>{{secret.type}}</dd> |
49 |
| - |
| 45 | + <div class="resource-details"> |
| 46 | + <h2 class="mar-top-none"> |
| 47 | + {{secret.type}} |
| 48 | + <small class="mar-left-sm"><a href="" ng-click="view.showSecret = !view.showSecret">{{view.showSecret ? "Hide" : "Reveal"}} secret</a></small> |
| 49 | + </h2> |
| 50 | + <dl class="secret-data left"> |
50 | 51 | <div ng-repeat="(secretDataName, secretData) in decodedSecretData" class="image-source-item">
|
51 | 52 | <div ng-switch="secretDataName">
|
52 | 53 | <div ng-switch-when=".dockercfg">
|
|
56 | 57 | <div ng-switch-when=".dockerconfigjson">
|
57 | 58 | <ng-include src=" 'views/_config-file-params.html' "></ng-include>
|
58 | 59 | </div>
|
59 |
| - |
60 |
| - <div ng-switch-when="username"> |
61 |
| - <dt>Username:</dt> |
62 |
| - <dd class="word-break">{{decodedSecretData.username}}</dd> |
63 |
| - </div> |
64 |
| - |
65 |
| - <div ng-switch-when="password"> |
66 |
| - <dt>Password:</dt> |
67 |
| - <dd ng-if="view.showSecret" class="word-break">{{secretData}}</dd> |
68 |
| - <dd ng-if="!view.showSecret">*****</dd> |
69 |
| - </div> |
70 |
| - |
71 |
| - <div ng-switch-when="ssh-privatekey"> |
72 |
| - <dt>SSH Private Key:</dt> |
73 |
| - <dd ng-if="view.showSecret" class="gutter-bottom"> |
74 |
| - <div ui-ace="{ |
75 |
| - theme: 'dreamweaver', |
76 |
| - highlightActiveLine: false, |
77 |
| - showGutter: false, |
78 |
| - rendererOptions: { |
79 |
| - fadeFoldWidgets: true, |
80 |
| - highlightActiveLine: false, |
81 |
| - showPrintMargin: false |
82 |
| - }, |
83 |
| - advanced: { |
84 |
| - highlightActiveLine: false |
85 |
| - } |
86 |
| - }" readonly ng-model="secretData" class="ace-bordered ace-read-only ace-inline secret-data"></div> |
87 |
| - </dd> |
88 |
| - <dd ng-if="!view.showSecret">*****</dd> |
89 |
| - </div> |
90 |
| - |
91 |
| - <div ng-switch-when="ca.crt"> |
92 |
| - <dt>CA Certificate:</dt> |
93 |
| - <dd ng-if="view.showSecret" class="gutter-bottom"> |
94 |
| - <div ui-ace="{ |
95 |
| - theme: 'dreamweaver', |
96 |
| - highlightActiveLine: false, |
97 |
| - showGutter: false, |
98 |
| - rendererOptions: { |
99 |
| - fadeFoldWidgets: true, |
100 |
| - highlightActiveLine: false, |
101 |
| - showPrintMargin: false |
102 |
| - }, |
103 |
| - advanced: { |
104 |
| - highlightActiveLine: false |
105 |
| - } |
106 |
| - }" readonly ng-model="secretData" class="ace-bordered ace-read-only ace-inline secret-data"></div> |
107 |
| - </dd> |
108 |
| - <dd ng-if="!view.showSecret">*****</dd> |
109 |
| - </div> |
110 |
| - |
111 |
| - <div ng-switch-when=".gitconfig"> |
112 |
| - <dt>Git Configuration File:</dt> |
113 |
| - <dd ng-if="view.showSecret" class="gutter-bottom"> |
114 |
| - <div ui-ace="{ |
115 |
| - mode: 'ini', |
116 |
| - theme: 'dreamweaver', |
117 |
| - highlightActiveLine: false, |
118 |
| - showGutter: false, |
119 |
| - rendererOptions: { |
120 |
| - fadeFoldWidgets: true, |
121 |
| - highlightActiveLine: false, |
122 |
| - showPrintMargin: false |
123 |
| - }, |
124 |
| - advanced: { |
125 |
| - highlightActiveLine: false |
126 |
| - } |
127 |
| - }" readonly ng-model="secretData" class="ace-bordered ace-read-only ace-inline secret-data"></div> |
128 |
| - </dd> |
129 |
| - <dd ng-if="!view.showSecret">*****</dd> |
130 |
| - </div> |
131 |
| - |
132 | 60 | <div ng-switch-default>
|
133 |
| - <dt>{{secretDataName}}:</dt> |
134 |
| - <dd ng-if="view.showSecret" class="word-break gutter-bottom" >{{secretData}}</dd> |
| 61 | + <dt ng-attr-title="{{secretDataName}}">{{secretDataName}}</dt> |
| 62 | + <dd ng-if="view.showSecret"> |
| 63 | + <copy-to-clipboard |
| 64 | + clipboard-text="secretData" |
| 65 | + multiline="secretData | isMultiline : true" |
| 66 | + display-wide="true"> |
| 67 | + </copy-to-clipboard> |
| 68 | + <div ng-if="decodedSecretData.$$nonprintable[secretDataName]" class="help-block"> |
| 69 | + This secret value contains non-printable characters and is displayed as a Base64-encoded string. |
| 70 | + </div> |
| 71 | + </dd> |
135 | 72 | <dd ng-if="!view.showSecret">*****</dd>
|
136 | 73 | </div>
|
137 |
| - |
138 | 74 | </div>
|
139 | 75 | </div>
|
140 | 76 | </dl>
|
141 | 77 | </div>
|
142 |
| - <div class="gutter-bottom"> |
143 |
| - <a href="" ng-click="view.showSecret = !view.showSecret">{{view.showSecret ? "Hide" : "Reveal"}} secret contents</a> |
144 |
| - </div> |
145 | 78 | <annotations annotations="secret.metadata.annotations"></annotations>
|
146 | 79 | </div><!-- /col-* -->
|
147 | 80 | </div>
|
|
0 commit comments