1
0
mirror of https://github.com/xuthus83/pigallery2.git synced 2024-11-03 21:04:03 +08:00
pigallery2/frontend/app/ui/settings/map/map.settings.component.html

72 lines
2.8 KiB
HTML
Raw Normal View History

2017-07-15 23:42:50 +08:00
<form #settingsForm="ngForm" class="form-horizontal">
2018-05-14 04:59:57 +08:00
<div class="card mb-4">
<h5 class="card-header">
<ng-container i18n>Map settings</ng-container>
<div class="switch-wrapper">
2017-07-14 05:39:09 +08:00
<bSwitch
2017-07-15 18:47:11 +08:00
class="switch"
2017-07-14 05:39:09 +08:00
name="enabled"
[switch-on-color]="'success'"
[switch-inverse]="'inverse'"
2018-03-30 08:30:23 +08:00
[switch-off-text]="text.Disabled"
[switch-on-text]="text.Enabled"
2017-07-15 18:47:11 +08:00
[switch-disabled]="inProgress"
2017-07-14 05:39:09 +08:00
[switch-handle-width]="'100'"
[switch-label-width]="'20'"
2017-07-15 23:29:40 +08:00
[(ngModel)]="settings.enabled">
2017-07-14 05:39:09 +08:00
</bSwitch>
2017-07-15 18:47:11 +08:00
</div>
2018-05-14 04:59:57 +08:00
</h5>
<div class="card-body">
2017-07-15 18:47:11 +08:00
<div [hidden]="!error" class="alert alert-danger" role="alert"><strong>Error: </strong>{{error}}</div>
2018-05-14 04:59:57 +08:00
<div class="form-group row">
<label class="col-md-2 control-label" for="mapProvider" i18n>Map provider</label>
2018-05-14 04:59:57 +08:00
<div class="col-md-10">
<select name="mapProvider" id="mapProvider"
[disabled]="!settings.enabled"
class="form-control" [(ngModel)]="settings.mapProvider" required>
<option *ngFor="let type of mapProviders" [ngValue]="type.key">{{type.value}}
</option>
</select>
</div>
</div>
<div class="form-group row" *ngIf="settings.mapProvider === MapProviders.Custom">
<label class="col-md-2 control-label" for="tileUrl" i18n>Map tile url</label>
<div class="col-md-10">
<input type="text" class="form-control" placeholder="http://{s}.tile.openstreetmap.org/{z}/{x}/{y}.png"
[(ngModel)]="settings.tileUrl"
name="tileUrl" id="tileUrl" required>
2018-05-14 04:59:57 +08:00
<small class="form-text text-muted">
<ng-container i18n>The map module will use this url to fetch the map tiles.</ng-container>
2018-05-14 04:59:57 +08:00
</small>
2017-07-15 23:42:50 +08:00
</div>
</div>
2017-07-14 05:39:09 +08:00
2018-12-08 18:28:56 +08:00
<div class="form-group row" *ngIf="settings.mapProvider === MapProviders.Mapbox">
<label class="col-md-2 control-label" for="mapboxAccessToken" i18n>Mapbox access token</label>
<div class="col-md-10">
<input type="text" class="form-control" placeholder="Mapbox access token"
[(ngModel)]="settings.mapboxAccessToken"
name="mapboxAccessToken" id="mapboxAccessToken" required>
<small class="form-text text-muted">
<ng-container i18n>MapBox needs an access token to work, create one at </ng-container><a href="https://www.mapbox.com">https://www.mapbox.com</a>.
</small>
</div>
</div>
2018-05-14 04:59:57 +08:00
<button class="btn btn-success float-right"
2017-07-15 18:47:11 +08:00
[disabled]="!settingsForm.form.valid || !changed || inProgress"
(click)="save()" i18n>Save
2017-07-15 18:47:11 +08:00
</button>
2019-02-23 07:29:35 +08:00
<button class="btn btn-secondary float-right"
(click)="reset()" i18n>Reset
2017-07-15 18:47:11 +08:00
</button>
</div>
2017-07-14 05:39:09 +08:00
</div>
2017-07-15 18:47:11 +08:00
</form>