]> git.evergreen-ils.org Git - Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.component.html
LP1825851 Server managed/processed print templates
[Evergreen.git] / Open-ILS / src / eg2 / src / app / staff / sandbox / sandbox.component.html
1
2 <eg-staff-banner bannerText="Sandbox" i18n-bannerText>
3 </eg-staff-banner>
4
5 <eg-title 
6   i18n-prefix i18n-suffix
7   prefix=":) {{dynamicTitleText}}"
8   suffix="Sandbox">
9 </eg-title>
10 <eg-help-popover [placement]="'right'" helpText="This page is for random ng stuff!"></eg-help-popover>
11 <div class="row flex pt-2">
12   <div i18n> Modify Page Title: </div>
13   <div class="col-lg-2">
14     <input type="text" [(ngModel)]="dynamicTitleText" class="form-control"/>
15   </div>
16 </div>
17
18 <!-- FM Editor Experiments ----------------------------- -->
19 <div class="row mb-3">
20   <ng-template #descriptionTemplate 
21       let-field="field" let-record="record" let-hello="hello">
22   <!-- example custom template for editing the 'description' field -->
23     <textarea
24       placeholder="{{hello}}"
25       class="form-control"
26       name="{{field.name}}"
27       [readonly]="field.readOnly"
28       [required]="field.isRequired()"
29       [ngModel]="record[field.name]()"
30       (ngModelChange)="record[field.name]($event)">
31     </textarea>
32   </ng-template>
33   <!-- note: fieldOptions would be best defined in the .ts file, but
34       want to demostrate it can be set in the template as well -->
35   <eg-fm-record-editor #fmRecordEditor 
36       idlClass="cmrcfld" mode="create" 
37       [fieldOptions]="{marc_record_type:{customValues:[{id:'biblio'},{id:'serial'},{id:'authority'}]},description:{customTemplate:{template:descriptionTemplate,context:{'hello':'goodbye'}}}}"
38       recordId="1" orgDefaultAllowed="owner">
39   </eg-fm-record-editor>
40   <button class="btn btn-dark" (click)="openEditor()">
41       Fm Record Editor
42   </button>
43 </div>
44 <!-- / FM Editor Experiments ----------------------------- -->
45
46 <!-- Progress Dialog Experiments ----------------------------- -->
47 <div class="row mb-3">
48   <div class="col-lg-3">
49     <button class="btn btn-outline-danger" (click)="progress.increment()">Increment Inline</button>
50     <eg-help-popover [placement]="'bottom'" helpText="Exercise your clicking finger by clicking the button above.">
51     </eg-help-popover>
52   </div>
53   <div class="col-lg-3">
54     <eg-progress-inline [max]="100" [value]="1" #progress></eg-progress-inline>
55   </div>
56 </div>
57 <div class="row mb-3">
58   <div class="col-lg-4">
59     <eg-progress-dialog #progressDialog>
60     </eg-progress-dialog>
61     <button class="btn btn-light" (click)="showProgress()">Test Progress Dialog</button>
62   </div>
63   <div class="col-lg-3">
64     <eg-help-popover helpLink="https://www.youtube.com/watch?v=dQw4w9WgXcQ" helpText="This popover is supposed to help or something...!"></eg-help-popover>
65     <eg-combobox [allowFreeText]="true" 
66       placeholder="Combobox with static data"
67       [entries]="cbEntries"></eg-combobox>
68   </div>
69   <div class="col-lg-3">
70     <eg-help-popover helpText="You have to type to see any options in this dropdown."></eg-help-popover>
71     <eg-combobox
72       placeholder="Combobox with dynamic data that does not enable click if no search term is supplied"
73       [asyncDataSource]="cbAsyncSource"></eg-combobox>
74   </div>
75 </div>
76 <div class="row mb-3">
77   <div class="col-lg-4">
78    <eg-help-popover helpText="If you like Toast you must click below!" placement="'auto'"></eg-help-popover>
79    <button class="btn btn-info" (click)="testToast()">Test Toast Message</button>
80   </div>
81   <div class="col-lg-2">
82     Org select with limit perms
83   </div>
84   <div class="col-lg-2">
85     <eg-org-select [limitPerms]="['REGISTER_WORKSTATION']">
86     </eg-org-select>
87   </div>
88 </div>
89 <div class="row mb-3">
90   <div class="col-lg-4">
91   </div>
92   <div class="col-lg-3">
93     <eg-combobox placeholder="Combobox with @idlClass = 'aou' @idlField='shortname'" idlClass="aou" idlField="shortname" [asyncSupportsEmptyTermClick]="true">
94     </eg-combobox>
95   </div>
96   <div class="col-lg-3">
97     <eg-combobox placeholder="Combobox with @idlClass = 'cvrfm'" idlClass="cvrfm" [asyncSupportsEmptyTermClick]="true">
98     </eg-combobox>
99   </div>
100   <div class="col-lg-3">
101     <eg-combobox placeholder="Combobox with @idlClass = 'csp'" idlClass="csp" [asyncSupportsEmptyTermClick]="true">
102     </eg-combobox>
103   </div>
104 </div>
105 <div class="row mb-3">
106   <div class="col-lg-4">
107   </div>
108   <div class="col-lg-3">
109     <eg-combobox placeholder="Combobox with @idlClass = 'aou'" idlClass="aou" [asyncSupportsEmptyTermClick]="true">
110     </eg-combobox>
111   </div>
112   <div class="col-lg-3">
113   </div>
114 </div>
115 <!-- /Progress Dialog Experiments ----------------------------- -->
116
117 <!-- eg strings -->
118 <!--
119 <div class="row mb-3">
120     <eg-string #helloString text="Hello, {{name}}" i18n-text></eg-string>
121     <button class="btn btn-success" (click)="testStrings()">Test Strings</button>
122 </div>
123 -->
124
125 <div class="row mb-3">
126     <ng-template #helloStrTmpl let-name="name" i18n>Hello, {{name}}</ng-template>
127     <!--
128     <eg-string #helloStr key="helloKey" [template]="helloStrTmpl"></eg-string>
129     -->
130     <eg-string key="staff.sandbox.test" [template]="helloStrTmpl"></eg-string>
131     <button class="btn btn-success" (click)="testStrings()">Test Strings</button>
132 </div>
133
134 <div class="row">
135   <div class="form-group">
136     <eg-date-select (onChangeAsDate)="changeDate($event)"
137         initialYmd="2017-03-04">
138     </eg-date-select>
139   </div>
140   <div>HERE: {{testDate}}</div>
141 </div>
142
143 <!-- printing -->
144
145 <h4>PRINTING</h4>
146
147 <div class="d-flex">
148   <div class="mr-2">
149     <button class="btn btn-info" (click)="doPrint()">Test Local Print</button>
150     <ng-template #printTemplate let-context>Hello, {{context.world}}!</ng-template>
151   </div>
152   <div class="mr-2">
153     <button class="btn btn-info" (click)="printWithDialog()">
154       Print with dialog (Hatch Only)
155     </button>
156   </div>
157   <div class="mr-2">
158     <button class="btn btn-info" 
159       (click)="testServerPrint()">Test Server-Generated Print</button>
160   </div>
161 </div>
162
163 <br/><br/>
164 <div class="row">
165   <div class="col-lg-3">
166     <eg-translate #translate [idlObject]="oneBtype" fieldName="name"></eg-translate>
167     <button class="btn btn-info"
168       (click)="translate.open({size:'lg'})">Translate</button>
169   </div>
170 </div>
171 <br/><br/>
172
173
174 <div>
175   <h4>Cross-tab communications example</h4>
176   <p>To test, open this sandbox in a second browser tab. Enter something in the input box below, then switch to the other tab and click anywhere on the page. 
177      You should see the message that you sent to the other browser tab.</p>
178 </div>
179 <div class="row">
180   <div class="col-lg-3">
181     <input type="text" #sendSbMessage placeholder="message to send to another tab" size="40" (change)="sendMessage($event)">
182   </div>
183   <div class="col-lg-3">
184     message received: {{sbChannelText}}
185   </div>
186 </div>
187 <br/><br/>
188
189 <ngb-accordion>
190   <ngb-panel title="Open me for comboboxes">
191     <ng-template ngbPanelContent>
192       <eg-org-select></eg-org-select>
193       <eg-combobox>
194         <eg-combobox-entry entryId="bib" entryLabel="Bibliographic Records"
195           i18n-entryLabel></eg-combobox-entry>
196         <eg-combobox-entry entryId="auth" entryLabel="Authority Records"
197           i18n-entryLabel></eg-combobox-entry>
198         <eg-combobox-entry entryId="bib-acq" entryLabel="Acquisitions Records"
199           i18n-entryLabel></eg-combobox-entry>
200       </eg-combobox>
201     </ng-template>
202   </ngb-panel>
203 </ngb-accordion>
204
205 <!-- grid stuff -->
206 <ng-template #cellTmpl let-row="row" let-col="col" let-userContext="userContext">
207   HELLO {{userContext.hello}}
208   <button>{{row.id()}}</button>
209 </ng-template>
210 <eg-grid #cbtGrid idlClass="cbt" 
211   [dataSource]="btSource" 
212   [rowClassCallback]="btGridRowClassCallback"
213   [rowFlairIsEnabled]="true"
214   [rowFlairCallback]="btGridRowFlairCallback"
215   [cellClassCallback]="btGridCellClassCallback"
216   [stickyHeader]="true"
217   [sortable]="true">
218   <eg-grid-toolbar-action label="Action that needs a single row" i18n-label
219     (onClick)="complimentEvergreen($event)" [disableOnRows]="notOneSelectedRow">
220   </eg-grid-toolbar-action>
221   <eg-grid-toolbar-action [isSeparator]="true">
222   </eg-grid-toolbar-action>
223   <eg-grid-toolbar-action label="Another Action" i18n-label
224     (onClick)="complimentEvergreen2($event)">
225   </eg-grid-toolbar-action>
226   <eg-grid-column name="test" [cellTemplate]="cellTmpl" 
227     [cellContext]="btGridTestContext" [sortable]="false">
228   </eg-grid-column>
229   <eg-grid-column [sortable]="false" path="owner.name"></eg-grid-column>
230   <eg-grid-column [sortable]="false" path="datetime_test" 
231     datatype="timestamp" [datePlusTime]="true"></eg-grid-column>
232 </eg-grid>
233
234 <br/><br/>
235 <div class="row">
236   <div class="col">
237     <eg-daterange-select
238       ngModel #myRange="ngModel"
239       [initialRangeStart]="sevenDaysAgo()"
240       [initialRangeLength]="5"
241       [markDisabled]="allFutureDates">
242     </eg-daterange-select>
243     Your range is: {{myRange.value | json}}
244   </div>
245   <div class="col">
246     <form [formGroup]="myTimeForm">
247       <eg-datetime-select
248         formControlName="datetime">
249       </eg-datetime-select>
250       Your datetime is: {{myTimeForm.get('datetime').value | json}}
251     </form>
252   </div>
253 </div>
254 <label for="date-time-input">
255   Set the datetime and timezone library settings, and enter a valid datetime string for an exciting animation surprise:
256 </label>
257 <input id="date-time-input" type="text" class="date-time-input" ngModel egValidDatetime required>
258 <br/><br/>
259
260 <h4>Grid with filtering</h4>
261 <eg-grid #acpGrid idlClass="acp"
262   [dataSource]="acpSource"
263   [filterable]="true"
264   [sortable]="true"
265   [showLinkSelectors]="true"
266   [stickyHeader]="true"
267   showFields="barcode,location,circ_lib,price,dummy_title,create_date"
268 >
269   <eg-grid-toolbar-action label="Edit Selected" i18n-label [action]="editSelected">
270   </eg-grid-toolbar-action>
271   <eg-grid-column [sortable]="true" [filterable]="false"  path="barcode"></eg-grid-column>
272   <eg-grid-column [sortable]="true" path="circ_lib"></eg-grid-column>
273   <eg-grid-column [sortable]="true" path="price"></eg-grid-column>
274   <eg-grid-column [sortable]="true" path="dummy_title"></eg-grid-column>
275   <eg-grid-column [sortable]="true" path="create_date"></eg-grid-column>
276 </eg-grid>
277
278 <eg-fm-record-editor #acpEditDialog idlClass="acp" hiddenFields="call_number,creator,create_date,editor,edit_time,loan_duration,fine_level,dummy_author,dummy_isbn,ref,floating,holdable,circ_as_type,active_date,mint_condition,cost,deleted,deposit,deposit_amount,circulate,status_changed_time,copy_number">
279 </eg-fm-record-editor>
280 <eg-string #successString text="Updated succeeded!" i18n-text></eg-string>
281 <eg-string #updateFailedString text="Updated failed!" i18n-text></eg-string>
282
283 <h4>PCRUD auto flesh and FormatService detection</h4>
284 <div *ngIf="aMetarecord">Fingerprint: {{aMetarecord}}</div>
285
286 <div class="row">
287   <div class="card col-md-6">
288     <div class="card-body">
289       <h3 class="card-title">Do you like template-driven forms?</h3>
290       <div class="card-text">
291         <eg-org-family-select
292           [ancestorSelectorChecked]="true"
293           [hideDescendantSelector]="true"
294           selectedOrgId="7"
295           labelText="Choose the best libraries"
296           ngModel #bestOnes="ngModel">
297         </eg-org-family-select>
298         The best libraries are: {{bestOnes.value | json}}
299         <hr>
300         <eg-combobox [(ngModel)]="kingdom" [allowFreeText]="true">
301           <eg-combobox-entry entryId="Bacteria"></eg-combobox-entry>
302           <eg-combobox-entry entryId="Archaea"></eg-combobox-entry>
303           <eg-combobox-entry entryId="Protozoa"></eg-combobox-entry>
304           <eg-combobox-entry entryId="Chromista"></eg-combobox-entry>
305           <eg-combobox-entry entryId="Plantae"></eg-combobox-entry>
306           <eg-combobox-entry entryId="Fungi"></eg-combobox-entry>
307           <eg-combobox-entry entryId="Animalia"></eg-combobox-entry>
308         </eg-combobox>
309       Result: {{kingdom | json}}
310         <hr>
311         <eg-date-select [(ngModel)]="dateObject">
312         </eg-date-select>
313       ngModel: {{dateObject.toLocaleDateString()}}
314       </div>
315     </div>
316   </div>
317   <form class="card col-md-4" [formGroup]="ranganathan">
318     <div class="card-body">
319       <h3 class="card-title">Or perhaps reactive forms interest you?</h3>
320       <div class="card-text">
321         Choose your favorite law of library science: 
322         <eg-combobox formControlName="law" value="second" 
323           [allowFreeText]="true" [startIdFiresOnChange]="true">
324           <eg-combobox-entry entryId="first" entryLabel="Books are for use" i18n-entryLabel></eg-combobox-entry>
325           <eg-combobox-entry entryId="second" entryLabel="Every person his or her book" i18n-entryLabel></eg-combobox-entry>
326           <eg-combobox-entry entryId="third" entryLabel="Every book its reader" i18n-entryLabel></eg-combobox-entry>
327           <eg-combobox-entry entryId="fourth" entryLabel="Save the time of the reader" i18n-entryLabel></eg-combobox-entry>
328           <eg-combobox-entry entryId="fifth" entryLabel="Library is a growing organism" i18n-entryLabel></eg-combobox-entry>
329           <eg-combobox-entry entryId="wrong" entryLabel="42" i18n-entryLabel></eg-combobox-entry>
330         </eg-combobox>
331         <div *ngIf="!ranganathan.valid" class="alert alert-danger">
332           <span class="material-icons">error</span>
333           <span i18n>That isn't a real law of library science!</span>
334         </div>
335       </div>
336     </div>
337   </form>
338   <form class="card col-md-4" [formGroup]="badOrgForm">
339     <div class="card-body">
340       <h3 class="card-title">Another reactive form!</h3>
341       <div class="card-text">
342         <eg-org-family-select
343           formControlName="badOrgSelector"
344           labelText="Choose the fanciest libraries">
345         </eg-org-family-select>
346         <div *ngIf="!badOrgForm.valid" class="alert alert-danger">
347           <span class="material-icons">error</span>
348           <span i18n>Too many fancy libraries!</span>
349         </div>
350       </div>
351     </div>
352   </form>
353 </div>
354
355 <button (click)="confirmNumber(1)">Confirm 1</button>
356 <button (click)="confirmNumber(0)">Confirm 0</button>
357 <button (click)="confirmNumber(20)">Confirm 20</button>
358
359 <eg-confirm-dialog #numConfirmDialog
360   i18n-dialogTitle
361   dialogTitle="Confirm Number"
362   [dialogBodyTemplate]="confirmMsg">
363 </eg-confirm-dialog>
364 <ng-template #confirmMsg>
365   <span i18n>Are you sure you want to confirm {numThings, plural, =1 {this thing} other {these {{numThings}} things}}?</span>
366 </ng-template>
367
368 <div class="row">
369   <eg-fm-record-editor #bresvEditor
370     idlClass="bresv"
371     hiddenFields="capture_staff,usr" readonlyFields="cancel_time">
372   </eg-fm-record-editor>
373   <button class="btn btn-info" (click)="bresvEditor.open({})">
374     Test Readonly Date
375   </button>
376 </div>
377
378 <div class="row m-3 p-3 border-top border-dark">
379   <div class="col-lg-3">Simple Combobox using [(ngModel)]</div>
380   <div class="col-lg-3">
381     <eg-combobox [(ngModel)]="simpleCombo" [allowFreeText]="true">
382       <eg-combobox-entry 
383         entryId="abc" entryLabel="ABC" i18n-entryLabel></eg-combobox-entry>
384       <eg-combobox-entry 
385         entryId="def" entryLabel="DEF" i18n-entryLabel></eg-combobox-entry>
386     </eg-combobox>
387   </div>
388   <div class="col-lg-3">
389     <span i18n>Combobox Value: {{simpleCombo ? simpleCombo.label : ''}}</span>
390   </div>
391 </div>
392
393 <div class="mt-4 mb-4">
394   <h4>Inline FM Editor</h4>
395   <div class="row">
396     <div class="col-lg-6">
397       <eg-fm-record-editor displayMode="inline"
398         idlClass="cbt" mode="update" recordId="1" orgDefaultAllowed="owner">
399       </eg-fm-record-editor>
400     </div>
401   </div>
402 </div>