2018-09-14 16:16:02 +00:00
|
|
|
@extends('settings.layouts.app')
|
2018-10-10 16:28:51 +00:00
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
@section('title', 'Publish')
|
2018-10-10 16:28:51 +00:00
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
@section('content')
|
2018-08-29 15:18:15 +00:00
|
|
|
<div class="header">
|
|
|
|
<h3 class="header-title">
|
2019-04-18 11:16:50 +00:00
|
|
|
<i class="fas fa-plus-square"></i> Publish New Dataset
|
2018-08-29 15:18:15 +00:00
|
|
|
</h3>
|
|
|
|
</div>
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2019-04-15 16:45:50 +00:00
|
|
|
<div id="app" class="box-content" v-cloak>
|
2019-11-21 17:43:56 +00:00
|
|
|
{{-- v-on:time-expire="handleTimeExpire" --}}
|
|
|
|
@if (Auth::check())
|
|
|
|
<vue-countdown v-on:time-expire="handleTimeExpire" :seconds="({{config('session.lifetime')}} * 60)"></vue-countdown>
|
|
|
|
@endif
|
2018-10-18 14:51:46 +00:00
|
|
|
{{--
|
|
|
|
<form action={{ route( 'publish.dataset.store1') }} method="post" class="pure-form" enctype="multipart/form-data">
|
|
|
|
--}}
|
|
|
|
<main class="steps pure-form" enctype="multipart/form-data">
|
|
|
|
{{ csrf_field() }}
|
|
|
|
|
2019-03-19 17:04:41 +00:00
|
|
|
<div v-if="step === 0 && isInitial" data-vv-scope="step-0">
|
|
|
|
|
|
|
|
<fieldset id="fieldset-language">
|
|
|
|
<legend>Dataset Language</legend>
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('Language', 'Language..') !!}
|
|
|
|
<div class="select pure-u-23-24">
|
|
|
|
{!! Form::select('Language', $languages, null, ['placeholder' => '[language]', 'v-model' => 'dataset.language', "v-validate"
|
|
|
|
=> "'required'", 'data-vv-scope' => 'step-0']) !!}
|
|
|
|
</div>
|
|
|
|
<small id="languageHelp" class="pure-form-message-inline">select dataset main language</small>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<div class="pure-controls">
|
|
|
|
<button @click.prevent="next('step-0')" class="pure-button button-small" :disabled="errors.any()">
|
|
|
|
<i class="fa fa-arrow-right"></i>
|
|
|
|
<span>Continue</span>
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div v-if="errors.items.length > 0">
|
|
|
|
<b>Please correct the following error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in errors.items">@{{ error.msg }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<div v-if="step === 1 && isInitial" data-vv-scope="step-1">
|
2019-01-22 17:24:18 +00:00
|
|
|
<h1>Step One: Mandatory Elements</h1>
|
2018-10-18 14:51:46 +00:00
|
|
|
|
|
|
|
<div class="form-group">
|
2019-01-22 17:24:18 +00:00
|
|
|
<legend>General</legend>
|
2018-10-18 14:51:46 +00:00
|
|
|
<div class="description hint">
|
|
|
|
<p>Bitte wählen Sie einen Datensatztyp aus der Liste aus.</p>
|
|
|
|
</div>
|
|
|
|
<p></p>
|
2019-01-22 17:24:18 +00:00
|
|
|
{{-- <div class="form-item">
|
2018-10-18 14:51:46 +00:00
|
|
|
<label for="documentType">Datensatztyp<span class="required" title="Dieses Feld muss ausgefüllt werden."> *</span></label>
|
|
|
|
<div class="select" style="width:300px" title="Bitte wählen Sie einen Datensatztyp aus der Liste aus.">
|
|
|
|
{!! Form::select('Type', Lang::get('doctypes'), null, ['id' => 'type', 'placeholder' => '-- select type --', 'v-model' =>
|
|
|
|
'dataset.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</div>
|
2019-01-22 17:24:18 +00:00
|
|
|
</div> --}}
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
<label for="documentType">Datensatztyp<span class="required" title="Dieses Feld muss ausgefüllt werden."> *</span></label>
|
|
|
|
<div class="select pure-u-23-24" title="Bitte wählen Sie einen Datensatztyp aus der Liste aus.">
|
|
|
|
{!! Form::select('Type', Lang::get('doctypes'), null, ['id' => 'type', 'placeholder' => '-- select type --', 'v-model' =>
|
|
|
|
'dataset.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
2018-08-29 15:18:15 +00:00
|
|
|
</div>
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2019-01-22 17:24:18 +00:00
|
|
|
<fieldset id="fieldset-titles">
|
|
|
|
<legend>Title(s)</legend>
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('TitleMain', 'Main Title ') !!}
|
|
|
|
{!! Form::text('TitleMain[Value]', null, ['class' => 'pure-u-23-24', 'v-model'
|
2019-11-25 13:41:25 +00:00
|
|
|
=> 'dataset.title_main.value', "v-validate" => "'required|min:4'", "data-vv-as" => "Main Title", 'data-vv-scope' => 'step-1']) !!}
|
2019-01-22 17:24:18 +00:00
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('TitleLanguage', 'Title Language..') !!}
|
2019-03-19 17:04:41 +00:00
|
|
|
{{-- <div class="select pure-u-23-24">
|
2019-01-22 17:24:18 +00:00
|
|
|
{!! Form::select('TitleMain[Language]', $languages, null, ['placeholder' => '--no language--', 'v-model' => 'dataset.title_main.language',
|
|
|
|
"v-validate" => "'required'", "data-vv-as" => "Title Language", 'data-vv-scope' => 'step-1']) !!}
|
2019-03-19 17:04:41 +00:00
|
|
|
</div> --}}
|
|
|
|
{!! Form::text('TitleMain[Language]', null, ['class' => 'pure-u-23-24', 'v-model' => 'dataset.title_main.language', 'readonly']) !!}
|
2019-01-22 17:24:18 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-01-24 15:56:39 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('TitleMain', 'Add additional title(s) ') !!}
|
|
|
|
<button class="pure-button button-small" @click.prevent="addTitle()">+</button>
|
|
|
|
</div>
|
2019-01-22 17:24:18 +00:00
|
|
|
<table class="pure-table pure-table-horizontal" v-if="dataset.titles.length">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 20px;">Title</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Language</th>
|
|
|
|
<th style="width: 130px;"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(item, index) in dataset.titles">
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<input name="Title" class="form-control" placeholder="[TITLE]" v-model="item.value" data-vv-as="Additional Title" v-validate="'required|min:4'" data-vv-scope="step-1" />
|
2019-01-22 17:24:18 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{!! Form::select('Title[Type]', $titleTypes, null,
|
|
|
|
['placeholder' => '[titleType]', 'v-model' => 'item.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-01-24 15:56:39 +00:00
|
|
|
{!! Form::select('Title[Language]', $languages, null,
|
2019-11-25 13:41:25 +00:00
|
|
|
['placeholder' => '[language]', 'v-model' => 'item.language', "data-vv-as" => "Additional Title Language",
|
2019-03-19 17:04:41 +00:00
|
|
|
"v-validate" => "{required: true, translatedLanguage: [dataset.language, item.type]}",
|
|
|
|
'data-vv-scope' => 'step-1']) !!}
|
2019-01-22 17:24:18 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<button class="pure-button button-small is-warning" @click.prevent="removeTitle(index)"> <i class="fa fa-trash"></i> </button>
|
2019-01-22 17:24:18 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
|
2019-01-24 15:56:39 +00:00
|
|
|
<fieldset id="fieldset-description">
|
|
|
|
<legend>Description</legend>
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('TitleAbstract', 'Main Abstract ') !!}
|
|
|
|
{{ Form::textarea('TitleAbstract[Value]', null, ['class' => 'pure-u-23-24',
|
2019-11-25 13:41:25 +00:00
|
|
|
'size' => '70x6', 'v-model' => 'dataset.abstract_main.value', "v-validate" => "'required|min:4'",
|
2019-02-19 17:52:52 +00:00
|
|
|
"data-vv-as" => "Main Abstract", 'data-vv-scope' => 'step-1']) }}
|
2019-01-24 15:56:39 +00:00
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('AbstractLanguage', 'Abstract Language..') !!}
|
2019-03-19 17:04:41 +00:00
|
|
|
{{-- <div class="select pure-u-23-24">
|
2019-01-24 15:56:39 +00:00
|
|
|
{!! Form::select('TitleAbstract[Language]', $languages, null, ['placeholder' => '--no language--', 'v-model' => 'dataset.abstract_main.language',
|
2019-03-19 17:04:41 +00:00
|
|
|
"v-validate" => "'required'", "data-vv-as" => "Abstract Language", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</div> --}}
|
|
|
|
{!! Form::text('TitleAbstract[Language]', null, ['class' => 'pure-u-23-24', 'v-model' => 'dataset.abstract_main.language', 'readonly']) !!}
|
2019-01-24 15:56:39 +00:00
|
|
|
</div>
|
2019-01-24 16:33:04 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('AddtionalDescription', 'Add additional descriptions(s) ') !!}
|
|
|
|
<button class="pure-button button-small" @click.prevent="addDescription()">+</button>
|
|
|
|
</div>
|
2019-01-24 15:56:39 +00:00
|
|
|
</div>
|
2019-01-24 16:33:04 +00:00
|
|
|
<table class="pure-table pure-table-horizontal" v-if="dataset.descriptions.length">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 20px;">Description</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Language</th>
|
|
|
|
<th style="width: 130px;"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(item, index) in dataset.descriptions">
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<textarea rows="3" cols="40" name="Description[Value]" class="form-control" placeholder="[DESCRIPTION]" v-model="item.value" data-vv-as="Additional Description" v-validate="'required|min:4'" data-vv-scope="step-1"></textarea>
|
2019-01-24 16:33:04 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{!! Form::select('Description[Type]', $descriptionTypes, null,
|
|
|
|
['placeholder' => '[descriptionType]', 'v-model' => 'item.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
{!! Form::select('Description[Language]', $languages, null,
|
2019-07-03 16:32:41 +00:00
|
|
|
['placeholder' => '[language]',
|
|
|
|
'v-model' => 'item.language',
|
2019-11-25 13:41:25 +00:00
|
|
|
"data-vv-as" => "Additional Description Language",
|
2019-07-03 16:32:41 +00:00
|
|
|
"v-validate" => "{required: true, translatedLanguage: [dataset.language, item.type]}",
|
|
|
|
'data-vv-scope' => 'step-1']) !!}
|
2019-01-24 16:33:04 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<button class="pure-button button-small is-warning" @click.prevent="removeDescription(index)"> <i class="fa fa-trash"></i> </button>
|
2019-01-24 16:33:04 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
2019-01-24 15:56:39 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset id="fieldset-creator">
|
2019-01-22 17:24:18 +00:00
|
|
|
<legend>Creator(s)</legend>
|
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-07-19 15:41:57 +00:00
|
|
|
<my-autocomplete title="searching active person table" v-on:person="onAddAuthor"></my-autocomplete>
|
2019-01-22 17:24:18 +00:00
|
|
|
{{--
|
|
|
|
<my-autocomplete :items="[ 'Apple', 'Banana', 'Orange', 'Mango', 'Pear', 'Peach', 'Grape', 'Tangerine', 'Pineapple']"></my-autocomplete> --}}
|
|
|
|
</div>
|
2019-06-26 17:01:22 +00:00
|
|
|
{{-- <div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-01-22 17:24:18 +00:00
|
|
|
<div class="pure-control-group checkboxlist">
|
2019-01-24 15:56:39 +00:00
|
|
|
<input name="persons" v-model="dataset.checkedAuthors" type="hidden" class="form-check-input" v-validate="'required'" data-vv-as="Creator" data-vv-scope="step-1">
|
2019-01-22 17:24:18 +00:00
|
|
|
<label v-for="(person, index) in dataset.persons" :for="person.id" class="pure-checkbox">
|
|
|
|
<input type="checkbox" name="persons" v-bind:value="person.id" v-model="dataset.checkedAuthors" class="form-check-input" data-vv-scope="step-1">
|
|
|
|
@{{ person.full_name }}
|
|
|
|
</label>
|
2019-06-26 17:01:22 +00:00
|
|
|
<br />
|
2019-01-22 17:24:18 +00:00
|
|
|
</div>
|
2019-06-26 17:01:22 +00:00
|
|
|
</div> --}}
|
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('additionalCreators', 'Add additional creator(s) if creator is not in database') !!}
|
|
|
|
<button class="pure-button button-small" @click.prevent="addNewAuthor()">+</button>
|
2019-01-22 17:24:18 +00:00
|
|
|
</div>
|
2019-07-24 07:28:04 +00:00
|
|
|
<input name="persons" v-model="dataset.persons" type="hidden" class="form-check-input" v-validate="'required'" data-vv-as="Creator" data-vv-scope="step-1">
|
|
|
|
<person-table name="persons" v-bind:heading="'creator table'" v-bind:personlist="dataset.persons"></person-table>
|
2019-01-22 17:24:18 +00:00
|
|
|
</fieldset>
|
2019-07-19 15:41:57 +00:00
|
|
|
|
2019-06-21 14:00:51 +00:00
|
|
|
<fieldset id="fieldset-contributors">
|
2019-07-24 07:28:04 +00:00
|
|
|
<legend>Contributor(s)</legend>
|
2019-06-21 14:00:51 +00:00
|
|
|
<div class="pure-g">
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
<my-autocomplete title="searching active person table" @person="onAddContributor"></my-autocomplete>
|
|
|
|
</div>
|
2019-07-24 07:28:04 +00:00
|
|
|
{{-- <div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-06-21 14:00:51 +00:00
|
|
|
<div class="pure-control-group checkboxlist">
|
|
|
|
<label v-for="(contributor, index) in dataset.contributors" :for="contributor.id" class="pure-checkbox">
|
|
|
|
<input type="checkbox" name="contributors" v-bind:value="contributor.id" v-model="dataset.checkedContributors" class="form-check-input" data-vv-scope="step-1">
|
|
|
|
@{{ contributor.full_name }}
|
|
|
|
</label>
|
|
|
|
<br />
|
2019-07-24 07:28:04 +00:00
|
|
|
<span>Checked Contributors: @{{ dataset.checkedContributors }}</span>
|
2019-06-21 14:00:51 +00:00
|
|
|
</div>
|
2019-07-24 07:28:04 +00:00
|
|
|
</div> --}}
|
2019-06-21 14:00:51 +00:00
|
|
|
</div>
|
2019-07-24 07:28:04 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('additionalContributors', 'Add additional contributor(s) if contributor is not in database') !!}
|
|
|
|
<button class="pure-button button-small" @click.prevent="addNewContributor()">+</button>
|
|
|
|
</div>
|
|
|
|
{{-- <h3>contributor table</h3> --}}
|
|
|
|
<person-table name="contributors" v-bind:heading="'contributor table'" v-bind:personlist="dataset.contributors"></person-table>
|
2019-06-21 14:00:51 +00:00
|
|
|
</fieldset>
|
|
|
|
|
2019-01-22 17:24:18 +00:00
|
|
|
<fieldset id="fieldset-publisher">
|
2019-09-16 15:34:57 +00:00
|
|
|
<legend>Creating Corporation</legend>
|
2019-01-22 17:24:18 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-09-16 15:34:57 +00:00
|
|
|
{!! Form::label('CreatingCorporation', 'Corporation Name') !!}
|
2019-06-21 14:00:51 +00:00
|
|
|
{!! Form::text('CreatingCorporation', null, ['readonly', 'class' =>
|
2019-01-22 17:24:18 +00:00
|
|
|
'pure-u-23-24', 'v-model' => 'dataset.creating_corporation', "v-validate" => "'required'", 'data-vv-scope' => 'step-1']) !!}
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
|
|
|
|
2019-05-14 16:02:25 +00:00
|
|
|
<div :class="{'form-group':true, 'has-error':errors.has('step-1.rights')}">
|
|
|
|
<label for="rights">
|
|
|
|
<input class="form-checkbox" name="rights" id="rights" type="checkbox" v-model="dataset.rights" v-validate="'required'" data-vv-scope="step-1">
|
|
|
|
terms and conditions
|
|
|
|
</label>
|
|
|
|
<i class="fas fa-info-circle" @click="showModal" style="font-size:24px"></i>
|
|
|
|
|
|
|
|
|
|
|
|
{{-- <button @click="showModal" class="pure-button button-small is-success">
|
2019-01-30 16:46:12 +00:00
|
|
|
{!! trans('validation.attributes.backend.create-dataset.terms_and_conditions').'*' !!}
|
2019-05-14 16:02:25 +00:00
|
|
|
</button> --}}
|
2019-01-30 16:46:12 +00:00
|
|
|
|
|
|
|
<!-- use the modal component, pass in the prop -->
|
|
|
|
{{-- <button type="button" class="btn" @click="showModal">
|
|
|
|
Open Modal!
|
|
|
|
</button> --}}
|
2019-12-04 13:37:12 +00:00
|
|
|
<Modal v-if="isModalVisible" @close="closeModal" >
|
2019-01-30 16:46:12 +00:00
|
|
|
<template slot="header">
|
|
|
|
{!! trans('validation.attributes.backend.create-dataset.terms_and_conditions').'*' !!}
|
|
|
|
</template>
|
|
|
|
<template slot="body">
|
|
|
|
Die im GBA-RDR veröffentlichten Informationen und Metadaten unterliegen grundsätzlich den Open-Access-Bedingungen, wenn nicht anders angegeben. Die publizierten Datensets unterliegen einem definierten Zugriffs- sowie Nutzungsrecht welche in den Metadaten eindeutig beschrieben sind.
|
|
|
|
</template>
|
2019-12-04 13:37:12 +00:00
|
|
|
</Modal>
|
2019-01-30 16:46:12 +00:00
|
|
|
|
2018-11-08 16:47:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2018-10-10 16:28:51 +00:00
|
|
|
<br />
|
2019-05-14 16:02:25 +00:00
|
|
|
<i v-show="errors.has('step-1.rights')" class="fas fa-exclamation-circle"></i>
|
2018-10-10 16:28:51 +00:00
|
|
|
<span v-show="errors.has('step-1.rights')" class="text-danger">@{{ errors.first('step-1.rights') }}</span>
|
|
|
|
|
2018-11-08 16:47:27 +00:00
|
|
|
|
2019-01-22 17:24:18 +00:00
|
|
|
<span class="help-block">You must agree to continue</span>
|
2018-10-18 14:51:46 +00:00
|
|
|
</div>
|
2018-08-29 15:18:15 +00:00
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
<br />
|
|
|
|
<div class="pure-controls">
|
2019-03-19 17:04:41 +00:00
|
|
|
<button @click.prevent="prev()" class="pure-button button-small">
|
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
<span>Back</span>
|
|
|
|
</button>
|
|
|
|
<button @click.prevent="next('step-1')" class="pure-button button-small" :disabled="errors.any()">
|
|
|
|
<i class="fa fa-arrow-right"></i>
|
|
|
|
<span>Continue</span>
|
|
|
|
</button>
|
2018-10-18 14:51:46 +00:00
|
|
|
</div>
|
|
|
|
<div v-if="errors.items.length > 0">
|
|
|
|
<b>Please correct the following error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in errors.items">@{{ error.msg }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-08-29 15:18:15 +00:00
|
|
|
</div>
|
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<div v-if="step === 2 && isInitial" data-vv-scope="step-2">
|
2019-01-22 17:24:18 +00:00
|
|
|
<h1>Step Two: Recommended Elements</h1>
|
2018-10-18 14:51:46 +00:00
|
|
|
|
2019-06-21 14:00:51 +00:00
|
|
|
{{-- <fieldset id="fieldset-project">
|
2019-03-20 17:40:14 +00:00
|
|
|
<legend>Project</legend>
|
2019-01-24 15:56:39 +00:00
|
|
|
<div class="pure-g">
|
2018-08-29 15:18:15 +00:00
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('project_id', 'Project..') !!}
|
|
|
|
<div class="select pure-u-23-24">
|
|
|
|
{!! Form::select('project_id', $projects, null, ['id' => 'project_id', 'placeholder' => '--no project--', 'v-model' => 'dataset.project_id', 'data-vv-scope' => 'step-2'])
|
|
|
|
!!}
|
|
|
|
</div>
|
|
|
|
<small id="projectHelp" class="pure-form-message-inline">project is optional</small>
|
2019-01-24 15:56:39 +00:00
|
|
|
</div>
|
2018-09-14 16:16:02 +00:00
|
|
|
|
2018-08-29 15:18:15 +00:00
|
|
|
</div>
|
2019-06-21 14:00:51 +00:00
|
|
|
</fieldset> --}}
|
2019-01-07 10:16:18 +00:00
|
|
|
|
2019-11-21 17:43:56 +00:00
|
|
|
<fieldset id="fieldset-dates">
|
2019-01-24 15:56:39 +00:00
|
|
|
<legend>Date(s)</legend>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
|
|
|
{!! Form::label('EmbargoDate', 'Embargo Date') !!}
|
|
|
|
{!! Form::date('EmbargoDate', null, ['placeholder' => date('y-m-d'), 'class'
|
|
|
|
=> 'pure-u-23-24', 'v-model' => 'dataset.embargo_date', 'data-vv-scope' => 'step-2']) !!}
|
|
|
|
<small id="projectHelp" class="pure-form-message-inline">EmbargoDate is optional</small>
|
|
|
|
</div>
|
2019-11-21 17:43:56 +00:00
|
|
|
</fieldset>
|
2019-01-24 15:56:39 +00:00
|
|
|
|
|
|
|
<fieldset id="fieldset-geolocation">
|
|
|
|
<legend>Geo Location</legend>
|
2019-01-07 10:16:18 +00:00
|
|
|
<div class="pure-g">
|
2019-01-08 13:06:21 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1 pure-u-lg-1 pure-div">
|
2019-03-29 17:29:20 +00:00
|
|
|
<locations-map v-bind:geolocation="dataset.coverage"></locations-map>
|
2019-01-08 13:06:21 +00:00
|
|
|
</div>
|
2019-06-21 14:00:51 +00:00
|
|
|
{{-- <div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-01-08 13:06:21 +00:00
|
|
|
{!! Form::label('xmin', 'xmin: ') !!}
|
2019-06-21 14:00:51 +00:00
|
|
|
{!! Form::text('xmin', null, [
|
|
|
|
'class' => 'pure-u-23-24',
|
|
|
|
'v-model' => 'dataset.coverage.xmin',
|
|
|
|
"v-validate" => "'decimal'",
|
|
|
|
'data-vv-scope' => 'step-2'
|
|
|
|
]) !!}
|
2019-01-07 10:16:18 +00:00
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-01-08 13:06:21 +00:00
|
|
|
{!! Form::label('ymin', 'ymin: ') !!}
|
2019-06-21 14:00:51 +00:00
|
|
|
{!! Form::text('ymin', null, ['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.ymin', 'data-vv-scope' => 'step-2']) !!}
|
2019-01-07 10:16:18 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-01-08 13:06:21 +00:00
|
|
|
{!! Form::label('xmax', 'xmax: ') !!}
|
2019-06-21 14:00:51 +00:00
|
|
|
{!! Form::text('xmax', null, ['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.xmax', 'data-vv-scope' => 'step-2']) !!}
|
2019-01-07 10:16:18 +00:00
|
|
|
</div>
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2 pure-div">
|
2019-01-08 13:06:21 +00:00
|
|
|
{!! Form::label('ymax', 'ymax: ') !!}
|
2019-06-21 14:00:51 +00:00
|
|
|
{!! Form::text('ymax', null, ['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.ymax', 'data-vv-scope' => 'step-2']) !!}
|
|
|
|
</div> --}}
|
2019-01-07 10:16:18 +00:00
|
|
|
</div>
|
2019-03-20 17:40:14 +00:00
|
|
|
</fieldset>
|
|
|
|
|
|
|
|
<fieldset id="fieldset-coverage">
|
|
|
|
<legend>Coverage</legend>
|
|
|
|
<div class="pure-g">
|
|
|
|
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2">
|
|
|
|
<div class="pure-u-1 pure-u-md-1">
|
2019-03-21 16:28:42 +00:00
|
|
|
<label for="elevation-option-one" class="pure-radio">
|
|
|
|
<input id="elevation-option-one" type="radio" v-model="elevation" value="absolut">
|
2019-06-21 14:00:51 +00:00
|
|
|
absolut elevation (m)
|
2019-03-20 17:40:14 +00:00
|
|
|
</label>
|
2019-03-21 16:28:42 +00:00
|
|
|
<label for="elevation-option-two" class="pure-radio">
|
|
|
|
<input id="elevation-option-two" type="radio" v-model="elevation" value="range">
|
2019-06-21 14:00:51 +00:00
|
|
|
elevation range (m)
|
2019-03-20 17:40:14 +00:00
|
|
|
</label>
|
2019-03-21 16:28:42 +00:00
|
|
|
<label for="elevation-option-three" class="pure-radio">
|
|
|
|
<input id="elevation-option-three" type="radio" v-model="elevation" value="no_elevation">
|
2019-03-20 17:40:14 +00:00
|
|
|
no elevation
|
|
|
|
</label>
|
2019-03-29 17:29:20 +00:00
|
|
|
</div>
|
2019-03-20 17:40:14 +00:00
|
|
|
<div v-show="elevation === 'absolut'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('elevation_absolut', 'elevation absolut: ') !!}
|
|
|
|
{!! Form::text('elevation_absolut', null,
|
|
|
|
['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.elevation_absolut', 'data-vv-scope' => 'step-2', "v-validate" => "this.isElevationAbsolut ? 'required|integer' : '' " ]) !!}
|
|
|
|
</div>
|
|
|
|
<div v-show="elevation === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('elevation_min', 'elevation min: ') !!}
|
|
|
|
{!! Form::text('elevation_min', null,
|
|
|
|
['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.elevation_min', 'data-vv-scope' => 'step-2', "v-validate" => "this.isElevationRange ? 'required|integer' : '' "]) !!}
|
|
|
|
</div>
|
2019-03-29 17:29:20 +00:00
|
|
|
<div v-show="elevation === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('elevation_max', 'elevation max: ') !!}
|
|
|
|
{!! Form::text('elevation_max', null,
|
|
|
|
['class' => 'pure-u-23-24', 'v-model' => 'dataset.coverage.elevation_max', 'data-vv-scope' => 'step-2', "v-validate" => "this.isElevationRange ? 'required|integer' : '' "]) !!}
|
|
|
|
</div>
|
2019-03-20 17:40:14 +00:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2">
|
2019-03-29 17:29:20 +00:00
|
|
|
<div class="pure-u-1 pure-u-md-1">
|
|
|
|
<label for="depth-option-one" class="pure-radio">
|
|
|
|
<input id="depth-option-one" type="radio" v-model="depth" value="absolut">
|
2019-06-21 14:00:51 +00:00
|
|
|
absolut depth (m)
|
2019-03-29 17:29:20 +00:00
|
|
|
</label>
|
|
|
|
<label for="depth-option-two" class="pure-radio">
|
|
|
|
<input id="depth-option-two" type="radio" v-model="depth" value="range">
|
2019-06-21 14:00:51 +00:00
|
|
|
depth range (m)
|
2019-03-29 17:29:20 +00:00
|
|
|
</label>
|
|
|
|
<label for="depth-option-three" class="pure-radio">
|
|
|
|
<input id="depth-option-three" type="radio" v-model="depth" value="no_depth">
|
|
|
|
no depth
|
|
|
|
</label>
|
|
|
|
</div>
|
2019-03-20 17:40:14 +00:00
|
|
|
|
2019-03-29 17:29:20 +00:00
|
|
|
<div v-show="depth === 'absolut'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('depth_absolut', 'depth absolut: ') !!} {!! Form::text('depth_absolut', null, ['class' => 'pure-u-23-24',
|
|
|
|
'v-model' => 'dataset.coverage.depth_absolut', 'data-vv-scope' => 'step-2', "v-validate" => "this.isDepthAbsolut
|
|
|
|
? 'required|integer' : '' " ]) !!}
|
|
|
|
</div>
|
|
|
|
<div v-show="depth === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('depth_min', 'depth min: ') !!} {!! Form::text('depth_min', null, ['class' => 'pure-u-23-24', 'v-model' =>
|
|
|
|
'dataset.coverage.depth_min', 'data-vv-scope' => 'step-2', "v-validate" => "this.isDepthRange ? 'required|integer'
|
|
|
|
: '' "]) !!}
|
|
|
|
</div>
|
|
|
|
<div v-show="depth === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('depth_max', 'depth max: ') !!} {!! Form::text('depth_max', null, ['class' => 'pure-u-23-24', 'v-model' =>
|
|
|
|
'dataset.coverage.depth_max', 'data-vv-scope' => 'step-2', "v-validate" => "this.isDepthRange ? 'required|integer'
|
|
|
|
: '' "]) !!}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="pure-u-1 pure-u-md-1-2">
|
|
|
|
<div class="pure-u-1 pure-u-md-1">
|
|
|
|
<label for="time-option-one" class="pure-radio">
|
|
|
|
<input id="time-option-one" type="radio" v-model="time" value="absolut">
|
2019-06-26 17:01:22 +00:00
|
|
|
absolut time (dd.MM.yyyy HH:mm:ss)
|
2019-03-29 17:29:20 +00:00
|
|
|
</label>
|
|
|
|
<label for="time-option-two" class="pure-radio">
|
|
|
|
<input id="time-option-two" type="radio" v-model="time" value="range">
|
2019-06-26 17:01:22 +00:00
|
|
|
time range (dd.MM.yyyy HH:mm:ss)
|
2019-03-29 17:29:20 +00:00
|
|
|
</label>
|
|
|
|
<label for="time-option-three" class="pure-radio">
|
|
|
|
<input id="time-option-three" type="radio" v-model="time" value="no_time">
|
|
|
|
no time
|
|
|
|
</label>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div v-show="time === 'absolut'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('time_absolut', 'time absolut: ') !!}
|
2019-12-03 13:41:44 +00:00
|
|
|
{{-- {!! Form::datetime('time_absolut', null, ['class' => 'pure-u-23-24', 'placeholder' => 'dd.MM.yyyy HH:mm',
|
|
|
|
'v-model' => 'dataset.coverage.time_absolut', 'data-vv-scope' => 'step-2', 'format' => 'yyyy-MM-dd HH:mm',
|
|
|
|
"v-validate" => "this.isTimeAbsolut ? 'required|date_format:dd.MM.yyyy HH:mm:ss' : '' " ]) !!} --}}
|
|
|
|
<datetime name="time_absolut" v-validate="this.isTimeAbsolut ? 'required|date_format:dd-MM-yyyy HH:mm:ss' : '' " data-vv-scope="step-2" format="DD-MM-YYYY h:i:s" v-model='dataset.coverage.time_absolut' ></datetime>
|
2019-06-21 14:00:51 +00:00
|
|
|
{{-- <datetime name="time_absolut" format="MM-DD-YYYY H:i:s" width="300px" v-model="dataset.coverage.time_absolut"></datetime> --}}
|
2019-03-29 17:29:20 +00:00
|
|
|
</div>
|
|
|
|
<div v-show="time === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('time_min', 'time min: ') !!}
|
2019-12-04 13:37:12 +00:00
|
|
|
{{-- {!! Form::datetimelocal('time_min', null, ['class' => 'pure-u-23-24', 'placeholder' => 'dd.MM.yyyy HH:mm:ss',
|
2019-12-03 13:41:44 +00:00
|
|
|
'v-model' => 'dataset.coverage.time_min', 'data-vv-scope' => 'step-2', 'step' => 1,
|
2019-12-04 13:37:12 +00:00
|
|
|
"v-validate" => "this.isTimeRange ? 'required|date_format:dd.MM.yyyy HH:mm:ss' : '' "]) !!} --}}
|
|
|
|
<datetime name="time_min" v-validate="this.isTimeRange ? 'required|date_format:dd-MM-yyyy HH:mm:ss' : '' " data-vv-scope="step-2" format="DD-MM-YYYY h:i:s" v-model='dataset.coverage.time_min' ></datetime>
|
2019-03-29 17:29:20 +00:00
|
|
|
</div>
|
|
|
|
<div v-show="time === 'range'" class="pure-u-1 pure-u-md-1">
|
|
|
|
{!! Form::label('timemax', 'time max: ') !!}
|
2019-12-04 13:37:12 +00:00
|
|
|
{{-- {!! Form::datetimelocal('time_max', null, ['class' => 'pure-u-23-24', 'placeholder' => 'dd.MM.yyyy HH:mm:ss',
|
2019-12-03 13:41:44 +00:00
|
|
|
'v-model' => 'dataset.coverage.time_max', 'data-vv-scope' => 'step-2', 'step' => 1,
|
2019-12-04 13:37:12 +00:00
|
|
|
"v-validate" => "this.isTimeRange ? 'required|date_format:dd.MM.yyyy HH:mm:ss' : '' "]) !!} --}}
|
|
|
|
<datetime name="time_max" v-validate="this.isTimeRange ? 'required|date_format:dd-MM-yyyy HH:mm:ss' : '' " data-vv-scope="step-2" format="DD-MM-YYYY h:i:s" v-model='dataset.coverage.time_max' ></datetime>
|
2019-03-29 17:29:20 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2019-03-20 17:40:14 +00:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</fieldset>
|
2019-01-24 15:56:39 +00:00
|
|
|
|
2018-10-29 13:24:41 +00:00
|
|
|
<fieldset id="fieldset-references">
|
2019-03-18 13:32:29 +00:00
|
|
|
<legend>Dataset References</legend>
|
2018-10-29 13:24:41 +00:00
|
|
|
<button class="pure-button button-small" @click.prevent="addReference()">Add Reference</button>
|
|
|
|
<table class="table table-hover" v-if="dataset.references.length">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 20px;">Value of the identifier</th>
|
|
|
|
<th>Type</th>
|
|
|
|
<th>Relation</th>
|
2019-01-24 15:56:39 +00:00
|
|
|
<th>Label</th>
|
2018-10-29 13:24:41 +00:00
|
|
|
<th style="width: 130px;"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(item, index) in dataset.references">
|
|
|
|
<td>
|
2019-01-22 17:24:18 +00:00
|
|
|
<input name="Reference Value" class="form-control" placeholder="[RELATED IDENTIFIER]" v-model="item.value" v-validate="'required'" data-vv-scope="step-2" />
|
2018-10-29 13:24:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-01-22 17:24:18 +00:00
|
|
|
{!! Form::select('Reference[Type]', $relatedIdentifierTypes, null,
|
|
|
|
['placeholder' => '[relatedIdentifierType]', 'v-model' => 'item.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-2']) !!}
|
2018-10-29 13:24:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-01-22 17:24:18 +00:00
|
|
|
{!! Form::select('Reference[Relation]', $relationTypes, null,
|
|
|
|
['placeholder' => '[relationType]', 'v-model' => 'item.relation', 'data-vv-scope' => 'step-2']) !!}
|
2018-10-29 13:24:41 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input name="Reference Label" class="form-control" v-model="item.label" v-validate="'required'" data-vv-scope="step-2" />
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<button class="pure-button button-small is-warning" @click.prevent="removeReference(index)"> <i class="fa fa-trash"></i> </button>
|
2018-10-29 13:24:41 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
2018-08-29 15:18:15 +00:00
|
|
|
|
2019-06-21 14:00:51 +00:00
|
|
|
|
|
|
|
<fieldset id="fieldset-keywords">
|
2019-03-18 13:32:29 +00:00
|
|
|
<legend>Dataset Keywords</legend>
|
2019-07-23 10:58:09 +00:00
|
|
|
<input type="hidden" v-validate:keywords_length="'min_value:3'" data-vv-scope="step-2" data-vv-as="keyword list" name="keywords_list">
|
2019-03-18 13:32:29 +00:00
|
|
|
<button class="pure-button button-small" @click.prevent="addKeyword()">Add Keyword</button>
|
|
|
|
<table class="table table-hover" v-if="dataset.keywords.length">
|
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 20px;">Keyword</th>
|
|
|
|
<th>Type</th>
|
2019-06-21 14:00:51 +00:00
|
|
|
<th>Language</th>
|
2019-03-18 13:32:29 +00:00
|
|
|
<th style="width: 130px;"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(item, index) in dataset.keywords">
|
|
|
|
<td>
|
2019-11-29 16:33:08 +00:00
|
|
|
<input name="Keyword Value" class="form-control" placeholder="[KEYWORD VALUE]" v-model="item.value" v-validate="{required: true, unique: [dataset.keywords, index, 'value']}"
|
2019-03-18 13:32:29 +00:00
|
|
|
data-vv-scope="step-2" />
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-11-21 17:43:56 +00:00
|
|
|
{{-- {!! Form::select('Keyword[Type]', $keywordTypes, null, ['placeholder' => '[keyword type]', 'v-model' =>
|
|
|
|
'item.type', "v-validate" => "'required'", 'data-vv-scope' => 'step-2']) !!} --}}
|
|
|
|
<input name="Keyword Type" readonly class="form-control" placeholder="[KEYWORD TYPE]" v-model="item.type" v-validate="'required'"
|
|
|
|
data-vv-scope="step-2" />
|
2019-03-18 13:32:29 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
2019-06-21 14:00:51 +00:00
|
|
|
<input name="Keyword Language" readonly class="form-control" placeholder="[KEYWORD LANGUAGE]" v-model="item.language" v-validate="'required'"
|
|
|
|
data-vv-scope="step-2" />
|
2019-03-18 13:32:29 +00:00
|
|
|
</td>
|
2019-06-21 14:00:51 +00:00
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<button class="pure-button button-small is-warning" @click.prevent="removeKeyword(index)"> <i class="fa fa-trash"></i> </button>
|
2019-06-21 14:00:51 +00:00
|
|
|
</td>
|
2019-03-18 13:32:29 +00:00
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
</fieldset>
|
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
<br />
|
2019-06-21 14:00:51 +00:00
|
|
|
|
|
|
|
<div class="pure-controls">
|
2018-10-18 14:51:46 +00:00
|
|
|
<button @click.prevent="prev()" class="pure-button button-small">
|
2019-03-19 17:04:41 +00:00
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
<span>Back</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button @click.prevent="next('step-2')" class="pure-button button-small" v-bind:disabled="errors.any()">
|
|
|
|
<i class="fa fa-arrow-right"></i>
|
|
|
|
<span>Continue</span>
|
|
|
|
</button>
|
2018-10-18 14:51:46 +00:00
|
|
|
</div>
|
|
|
|
<div v-if="errors.items.length > 0">
|
|
|
|
<b>Please correct the following error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in errors.items">@{{ error.msg }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
2018-09-14 16:16:02 +00:00
|
|
|
</div>
|
2018-10-18 14:51:46 +00:00
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<div v-if="step === 3 && isInitial" data-vv-scope="step-3">
|
2019-01-24 15:56:39 +00:00
|
|
|
<h1>Step 3: Other Elements</h1>
|
|
|
|
|
|
|
|
<fieldset id="fieldset-licenses">
|
|
|
|
<legend>Rights List</legend>
|
|
|
|
|
|
|
|
<div class="pure-control-group checkboxlist">
|
|
|
|
@foreach ($licenses as $indexKey => $license)
|
|
|
|
<label for={{ "license". $license->id }} class="pure-checkbox">
|
|
|
|
@if ($loop->first)
|
|
|
|
<input name="licenses" value={{ $license->id }} v-model="dataset.checkedLicenses" type="radio" class="form-check-input" v-validate="'required'"
|
|
|
|
data-vv-as="Licence" data-vv-scope="step-3">
|
2019-11-21 17:43:56 +00:00
|
|
|
<a href="{{ $license->link_licence }}" target="_blank">{{ $license->name_long }}</a>
|
2019-01-24 15:56:39 +00:00
|
|
|
@else
|
|
|
|
<input name="licenses" value={{ $license->id }} v-model="dataset.checkedLicenses" type="radio" class="form-check-input" data-vv-scope="step-3">
|
2019-11-21 17:43:56 +00:00
|
|
|
<a href="{{ $license->link_licence }}" target="_blank">{{ $license->name_long }}</a>
|
2019-01-24 15:56:39 +00:00
|
|
|
@endif
|
|
|
|
</label>
|
|
|
|
@endforeach
|
|
|
|
<br>
|
|
|
|
{{-- <span>Checked license: @{{ dataset.checkedLicenses }}</span> --}}
|
|
|
|
</div>
|
2019-11-21 17:43:56 +00:00
|
|
|
</fieldset>
|
2019-01-24 15:56:39 +00:00
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
<br />
|
|
|
|
<div class="pure-controls">
|
|
|
|
<button @click.prevent="prev()" class="pure-button button-small">
|
2019-01-24 15:56:39 +00:00
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
<span>Back</span>
|
|
|
|
</button>
|
|
|
|
|
|
|
|
<button @click.prevent="next('step-3')" class="pure-button button-small">
|
|
|
|
<i class="fa fa-arrow-right"></i>
|
2019-11-21 17:43:56 +00:00
|
|
|
<span>Continue</span>
|
2019-01-24 15:56:39 +00:00
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
<div v-if="errors.items.length > 0">
|
|
|
|
<b>Please correct the following error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in errors.items">@{{ error.msg }}</li>
|
|
|
|
</ul>
|
2018-10-18 14:51:46 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<div v-if="step === 4 && (isInitial || isSaving)" data-vv-scope="step-4">
|
2018-10-18 14:51:46 +00:00
|
|
|
<h1>File Upload</h1>
|
|
|
|
|
|
|
|
<div class="dropbox">
|
|
|
|
<input type="file" multiple name="files" v-bind:disabled="isSaving" @change="filesChange($event.target.name, $event.target.files)"
|
|
|
|
class="input-file" data-vv-scope="step-4">
|
|
|
|
<p v-if="isInitial">
|
|
|
|
Drag your file(s) here to begin<br> or click to browse
|
|
|
|
</p>
|
|
|
|
<p v-if="isSaving">
|
|
|
|
Uploading @{{ fileCount }} files...
|
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
{{-- <button @click.prevent="resetDropbox()" v-bind:disabled="isInitial" class="pure-button is-warning">Reset Dropbox</button> --}} {{--
|
|
|
|
<ul class="list-unstyled">
|
|
|
|
<li v-for="(item, index) in dataset.files">
|
|
|
|
@{{ item.name }} <i class="fa fa-remove"></i><span class="remove-file" v-on:click="removeFile(index)"> Remove</span>
|
|
|
|
</li>
|
|
|
|
</ul> --}}
|
2019-07-19 15:41:57 +00:00
|
|
|
|
2018-10-29 13:24:41 +00:00
|
|
|
<table class="table table-hover" v-if="dataset.files.length">
|
2018-10-18 14:51:46 +00:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th style="width: 20px;">Sorting</th>
|
|
|
|
<th>File</th>
|
|
|
|
<th>Label</th>
|
|
|
|
<th style="width: 130px;"></th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr v-for="(item, index) in dataset.files">
|
|
|
|
<td>
|
|
|
|
@{{ index +1 }}
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-07-03 16:32:41 +00:00
|
|
|
<input class="form-control" v-model="item.file.name" readonly />
|
2018-10-18 14:51:46 +00:00
|
|
|
</td>
|
|
|
|
<td>
|
|
|
|
<input class="form-control" v-model="item.label" />
|
|
|
|
</td>
|
|
|
|
<td>
|
2019-11-25 13:41:25 +00:00
|
|
|
<button class="pure-button button-small is-warning" @click.prevent="removeFile(index)"> <i class="fa fa-trash"></i> </button>
|
2018-10-18 14:51:46 +00:00
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<button @click.prevent="prev()" class="pure-button button-small">
|
|
|
|
<i class="fa fa-arrow-left"></i>
|
|
|
|
<span>Zurück</span>
|
|
|
|
</button>
|
2019-02-21 13:07:00 +00:00
|
|
|
<button @click.prevent="submit('inprogress')" class="pure-button button-small">
|
2018-10-18 14:51:46 +00:00
|
|
|
<i class="fa fa-save"></i>
|
2019-02-21 13:07:00 +00:00
|
|
|
<span>Save Dataset</span>
|
2018-10-18 14:51:46 +00:00
|
|
|
</button>
|
2019-04-18 11:16:50 +00:00
|
|
|
{{-- <button @click.prevent="submit('unpublished')" class="pure-button button-small">
|
2019-02-21 13:07:00 +00:00
|
|
|
<i class="fa fa-upload"></i>
|
|
|
|
<span>Release Dataset</span>
|
2019-04-18 11:16:50 +00:00
|
|
|
</button> --}}
|
2018-10-18 14:51:46 +00:00
|
|
|
|
2018-09-14 16:16:02 +00:00
|
|
|
</div>
|
2018-10-18 14:51:46 +00:00
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<!--SUCCESS-->
|
|
|
|
<div v-if="isSuccess">
|
|
|
|
<h2>Uploaded @{{ dataset.files.length }} file(s) successfully.</h2>
|
2019-08-27 09:15:23 +00:00
|
|
|
{{-- <p>
|
2018-11-05 15:44:25 +00:00
|
|
|
<a href="javascript:void(0)" @click="reset()" class="pure-button button-small">Upload new Dataset</a>
|
2019-08-27 09:15:23 +00:00
|
|
|
</p> --}}
|
2018-11-05 15:44:25 +00:00
|
|
|
<p>
|
2019-08-27 09:15:23 +00:00
|
|
|
{{-- <a href="javascript:void(0)" @click="editNewDataset()" class="pure-button button-small">@{{ redirectLink }}</a> --}}
|
2019-11-25 13:41:25 +00:00
|
|
|
<a href="javascript:void(0)" @click="editNewDataset()" class="pure-button button-small">
|
|
|
|
<i class="fa fa-edit"></i>
|
|
|
|
<span>Edit</span>
|
|
|
|
</a>
|
2019-08-27 09:15:23 +00:00
|
|
|
<a href="javascript:void(0)" @click="releaseNewDataset()" class="pure-button button-small">
|
|
|
|
<i class="fa fa-share"></i>
|
|
|
|
<span>Release</span>
|
|
|
|
</a>
|
|
|
|
<a href="javascript:void(0)" @click="deleteNewDataset()" class="pure-button button-small">
|
|
|
|
<i class="fa fa-trash"></i>
|
|
|
|
<span>Delete</span>
|
|
|
|
</a>
|
2018-11-05 15:44:25 +00:00
|
|
|
</p>
|
2019-08-27 09:15:23 +00:00
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<ul class="list-unstyled">
|
|
|
|
{{-- <li v-for="item in uploadedFiles">
|
|
|
|
<img :src="item.url" class="img-responsive img-thumbnail" :alt="item.originalName">
|
|
|
|
</li> --}}
|
2018-10-18 14:51:46 +00:00
|
|
|
</ul>
|
2018-08-29 15:18:15 +00:00
|
|
|
</div>
|
2018-10-18 14:51:46 +00:00
|
|
|
|
2018-11-05 15:44:25 +00:00
|
|
|
<!--ERROR-->
|
|
|
|
<div v-if="isFailed">
|
|
|
|
<h2>Uploaded failed.</h2>
|
|
|
|
<p>
|
2018-11-28 16:06:00 +00:00
|
|
|
<a href="javascript:void(0)" @click="retry()">Retry: Edit inputs</a>
|
2019-11-21 17:43:56 +00:00
|
|
|
</p>
|
2018-11-05 15:44:25 +00:00
|
|
|
<div v-if="serrors.length > 0">
|
|
|
|
<b>Please correct the following server error(s):</b>
|
|
|
|
<ul class="alert validation-summary-errors">
|
|
|
|
<li style="margin-left:5px;" v-for="error in serrors">@{{ error }}</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
|
|
|
|
</main>
|
|
|
|
{{-- <br/><br/>Debug:@{{ dataset }} --}}
|
2018-08-29 15:18:15 +00:00
|
|
|
</div>
|
|
|
|
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
@stop
|
|
|
|
@section('styles')
|
|
|
|
<style type="text/css">
|
2018-10-10 16:28:51 +00:00
|
|
|
/* main.steps article {
|
|
|
|
display:block;
|
|
|
|
} */
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2018-10-10 16:28:51 +00:00
|
|
|
.help-block {
|
|
|
|
display: none;
|
|
|
|
font-size: 0.8em;
|
|
|
|
}
|
2018-08-06 12:30:51 +00:00
|
|
|
|
2018-10-10 16:28:51 +00:00
|
|
|
.has-error .help-block {
|
2018-10-18 14:51:46 +00:00
|
|
|
display: block;
|
2018-10-10 16:28:51 +00:00
|
|
|
}
|
2019-06-26 17:01:22 +00:00
|
|
|
|
|
|
|
.activeClass {
|
|
|
|
background-color: aquamarine;
|
|
|
|
}
|
|
|
|
.inactiveClass {
|
|
|
|
background-color: orange;
|
|
|
|
}
|
2018-10-10 16:28:51 +00:00
|
|
|
</style>
|
2018-09-14 16:16:02 +00:00
|
|
|
|
|
|
|
|
2018-10-18 14:51:46 +00:00
|
|
|
@stop
|
2018-09-14 16:16:02 +00:00
|
|
|
@section('after-scripts') {{--
|
|
|
|
<script type="text/javascript" src="{{ asset('js/lib.js') }}"></script> --}} {{--
|
|
|
|
<script src="https://unpkg.com/axios/dist/axios.min.js"></script>
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/vue"></script>--}} {{--
|
2019-04-16 12:35:16 +00:00
|
|
|
<script type="text/javascript" src="{{ resource_path('assets\js\datasetPublish.js') }}"></script> --}}
|
|
|
|
<script type="text/javascript" src="{{ asset('backend/publish/datasetPublish.js') }}"></script>
|
2018-09-14 16:16:02 +00:00
|
|
|
|
|
|
|
@stop
|