Skip to content
Snippets Groups Projects
database_edit.html 4.76 KiB
Newer Older
  • Learn to ignore specific revisions
  • Kyle Doherty's avatar
    Kyle Doherty committed
    <div class="wrapper">
        <section class="Breadcrumbs">
            <a class="Breadcrumb Breadcrumb--path" cv-org-href="/admin/databases/">Databases</a>
            <cv-chevron-right-icon class="Breadcrumb-divider" width="12px" height="12px"></cv-chevron-right-icon>
            <h2 class="Breadcrumb Breadcrumb--page" ng-if="!database.id">Add Database</h2>
            <h2 class="Breadcrumb Breadcrumb--page" ng-if="database.id">{{database.name}}</h2>
        </section>
    
        <section class="Grid Grid--gutters Grid--full">
    
    Kyle Doherty's avatar
    Kyle Doherty committed
            <div class="Grid-cell Cell--2of3">
    
                <form class="Form-new bordered rounded shadowed" name="form" novalidate>
    
                    <div class="Form-field" mb-form-field="engine">
                        <mb-form-label display-name="Database type" field-name="engine"></mb-form-label>
    
                        <label class="Select Form-offset">
    
                            <select name="engine" ng-model="database.engine" ng-options="type as properties.name for (type, properties) in form_input.engines"></select>
                        </label>
    
                    <div class="Form-field" mb-form-field="engine">
                        <mb-form-label display-name="Name" field-name="name"></mb-form-label>
    
    Allen Gilliland's avatar
    Allen Gilliland committed
                        <input class="Form-input Form-offset full" name="name" placeholder="How would you like to refer to this database?" ng-model="database.name" required autofocus />
    
                        <span class="Form-charm"></span>
    
    Kyle Doherty's avatar
    Kyle Doherty committed
                    <!-- TODO: database type dependent inputs -->
                    <div class="FormInputGroup" ng-show="database.engine == 'postgres'">
    
                        <div class="Form-field" mb-form-field="host">
                            <mb-form-label display-name="Host" field-name="host"></mb-form-label>
    
                            <input class="Form-input Form-offset full" name="host" placeholder="localhost" ng-model="details.host" required />
                            <span class="Form-charm"></span>
    
    Kyle Doherty's avatar
    Kyle Doherty committed
                        </div>
    
                        <div class="Form-field" mb-form-field="port">
                            <mb-form-label display-name="Port" field-name="port"></mb-form-label>
    
                            <input class="Form-input Form-offset full" name="port" placeholder="5432" ng-model="details.port" required />
                            <span class="Form-charm"></span>
    
                        <div class="Form-field" mb-form-field="dbname">
                            <mb-form-label display-name="Database name" field-name="dbname"></mb-form-label>
    
                            <input class="Form-input Form-offset full" name="dbname" placeholder="What is the name of your database?" ng-model="details.dbname" />
                            <span class="Form-charm"></span>
    
                        <div class="Form-field" mb-form-field="user">
                            <mb-form-label display-name="Database username" field-name="user"></mb-form-label>
    
                            <input class="Form-input Form-offset full" name="user" placeholder="What username do you use to login to the database?" ng-model="details.user" required />
                            <span class="Form-charm"></span>
    
                        <div class="Form-field" mb-form-field="pass">
                            <mb-form-label display-name="Database password" field-name="pass"></mb-form-label>
    
                            <input class="Form-input Form-offset full" name="pass" placeholder="*******" ng-model="details.pass" />
                            <span class="Form-charm"></span>
    
    Kyle Doherty's avatar
    Kyle Doherty committed
                        </div>
    
                    <div class="Form-actions">
    
                        <button class="Button" ng-class="{'Button--primary': form.$valid}" ng-click="save(database, details)" ng-disabled="!form.$valid">
    
    Kyle Doherty's avatar
    Kyle Doherty committed
                </form>
            </div>
    
            <!-- actions -->
    
            <div class="Grid-cell Cell--1of3" ng-if="database.id">
    
                <div class="Actions">
                    <h3>Actions</h3>
                    <div class="Actions-group">
    
                        <button class="Button" mb-action-button="sync" success-text="Sync triggered!" failed-text="Failed to sync" active-text="Starting ...">Sync</button>
    
                    </div>
    
                    <div class="Actions-group Actions--dangerZone">
                        <label class="Actions-groupLabel block">Danger Zone:</label>
    
                        <!-- TODO: this doesn't do anything because its unclear if its really safe to delete dbs -->
    
                        <button class="Button Button--danger">Remove this database</button>
    
                    </div>
                </div>
            </div>
    
    Kyle Doherty's avatar
    Kyle Doherty committed
        </section>
    
    </div><!-- wrapper -->