]> git.evergreen-ils.org Git - working/Evergreen.git/blob - Open-ILS/src/eg2/src/app/staff/sandbox/sandbox.component.html
LP#1822414: (follow-up) remove au-linked fields sandbox editDialog
[working/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 <button class="btn btn-secondary" (click)="doPrint()">Test Print</button>
146 <ng-template #printTemplate let-context>Hello, {{context.world}}!</ng-template>
147
148 <button class="btn btn-secondary" (click)="printWithDialog()">Print with dialog</button>
149
150 <br/><br/>
151 <div class="row">
152   <div class="col-lg-3">
153     <eg-translate #translate [idlObject]="oneBtype" fieldName="name"></eg-translate>
154     <button class="btn btn-info"
155       (click)="translate.open({size:'lg'})">Translate</button>
156   </div>
157 </div>
158 <br/><br/>
159
160 <div>
161   <h4>Cross-tab communications example</h4>
162   <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. 
163      You should see the message that you sent to the other browser tab.</p>
164 </div>
165 <div class="row">
166   <div class="col-lg-3">
167     <input type="text" #sendSbMessage placeholder="message to send to another tab" size="40" (change)="sendMessage($event)">
168   </div>
169   <div class="col-lg-3">
170     message received: {{sbChannelText}}
171   </div>
172 </div>
173
174 <!-- grid stuff -->
175 <ng-template #cellTmpl let-row="row" let-col="col" let-userContext="userContext">
176   HELLO {{userContext.hello}}
177   <button>{{row.id()}}</button>
178 </ng-template>
179 <eg-grid #cbtGrid idlClass="cbt" 
180   [dataSource]="btSource" 
181   [rowClassCallback]="btGridRowClassCallback"
182   [rowFlairIsEnabled]="true"
183   [rowFlairCallback]="btGridRowFlairCallback"
184   [cellClassCallback]="btGridCellClassCallback"
185   [sortable]="true">
186   <eg-grid-toolbar-action label="Action that needs a single row" i18n-label
187     (onClick)="complimentEvergreen($event)" [disableOnRows]="notOneSelectedRow">
188   </eg-grid-toolbar-action>
189   <eg-grid-toolbar-action [isSeparator]="true">
190   </eg-grid-toolbar-action>
191   <eg-grid-toolbar-action label="Another Action" i18n-label
192     (onClick)="complimentEvergreen2($event)">
193   </eg-grid-toolbar-action>
194   <eg-grid-column name="test" [cellTemplate]="cellTmpl" 
195     [cellContext]="btGridTestContext" [sortable]="false">
196   </eg-grid-column>
197   <eg-grid-column [sortable]="false" path="owner.name"></eg-grid-column>
198   <eg-grid-column [sortable]="false" path="datetime_test" 
199     datatype="timestamp" [datePlusTime]="true"></eg-grid-column>
200 </eg-grid>
201
202 <br/><br/>
203
204 <h4>PCRUD auto flesh and FormatService detection</h4>
205 <div *ngIf="aMetarecord">Fingerprint: {{aMetarecord}}</div>
206
207 <div class="row">
208   <div class="card col-md-6">
209     <div class="card-body">
210       <h3 class="card-title">Do you like template-driven forms?</h3>
211       <div class="card-text">
212         <eg-org-family-select
213           [ancestorSelectorChecked]="true"
214           [hideDescendantSelector]="true"
215           selectedOrgId="7"
216           labelText="Choose the best libraries"
217           ngModel #bestOnes="ngModel">
218         </eg-org-family-select>
219         The best libraries are: {{bestOnes.value | json}}
220       </div>
221     </div>
222   </div>
223   <form class="card col-md-6" [formGroup]="badOrgForm">
224     <div class="card-body">
225       <h3 class="card-title">Or perhaps reactive forms interest you?</h3>
226       <div class="card-text">
227         <eg-org-family-select
228           formControlName="badOrgSelector"
229           labelText="Choose the fanciest libraries">
230         </eg-org-family-select>
231         <div *ngIf="!badOrgForm.valid" class="alert alert-danger">
232           <span class="material-icons">error</span>
233           <span i18n>Too many fancy libraries!</span>
234         </div>
235       </div>
236     </div>
237   </form>
238 </div>
239
240 <button (click)="confirmNumber(1)">Confirm 1</button>
241 <button (click)="confirmNumber(0)">Confirm 0</button>
242 <button (click)="confirmNumber(20)">Confirm 20</button>
243
244 <eg-confirm-dialog #numConfirmDialog
245   i18n-dialogTitle
246   dialogTitle="Confirm Number"
247   [dialogBodyTemplate]="confirmMsg">
248 </eg-confirm-dialog>
249 <ng-template #confirmMsg>
250   <span i18n>Are you sure you want to confirm {numThings, plural, =1 {this thing} other {these {{numThings}} things}}?</span>
251 </ng-template>
252
253 <div class="row">
254   <eg-fm-record-editor #bresvEditor
255     idlClass="bresv"
256     hiddenFields="capture_staff,usr" readonlyFields="cancel_time">
257   </eg-fm-record-editor>
258   <button class="btn btn-info" (click)="bresvEditor.open({})">
259     Test Readonly Date
260   </button>
261 </div>