4b8f2a63d8
11. Continue statt Review Dataset (im Step 3) 12. keywords auf default 'uncontrolled' einfrieren 14. Lizenzen mit Links versehen 19. Timezone: 'timezone' => 'Europe/Vienna' 20. angefangen mit RDR -> TETHYS Unbenennungen 21. translated validation ausgebessert 22. dataset als Typescript Instanz
145 lines
2.6 KiB
TypeScript
145 lines
2.6 KiB
TypeScript
import { Component, Vue, Watch } from 'vue-property-decorator';
|
|
|
|
//outside of the component:
|
|
function initialState() {
|
|
return {
|
|
type: "",
|
|
state: "",
|
|
rights: null,
|
|
project_id: "",
|
|
|
|
creating_corporation: "GBA Repository",
|
|
language: "",
|
|
embargo_date: "",
|
|
belongs_to_bibliography: 0,
|
|
|
|
title_main: {
|
|
value: "",
|
|
language: ""
|
|
},
|
|
abstract_main: {
|
|
value: "",
|
|
language: ""
|
|
},
|
|
// geolocation: {
|
|
// xmin: "",
|
|
// ymin: "",
|
|
// xmax: "",
|
|
// ymax: ""
|
|
// },
|
|
coverage: {
|
|
xmin: "",
|
|
ymin: "",
|
|
xmax: "",
|
|
ymax: "",
|
|
elevation_min: "",
|
|
elevation_max: "",
|
|
elevation_absolut: "",
|
|
depth_min: "",
|
|
depth_max: "",
|
|
depth_absolut: "",
|
|
time_min: "",
|
|
time_max: "",
|
|
time_absolut: ""
|
|
},
|
|
checkedAuthors: [],
|
|
checkedLicenses: [], // [],
|
|
files: [],
|
|
keywords: [],
|
|
references: [],
|
|
titles: [],
|
|
descriptions: [],
|
|
checkedContributors: [],
|
|
// checkedSubmitters: [],
|
|
|
|
persons: [],
|
|
contributors: []
|
|
// submitters: []
|
|
};
|
|
}
|
|
|
|
// const dataset = new Vue({
|
|
@Component
|
|
export default class Dataset extends Vue {
|
|
// data: function() {
|
|
// return initialState();
|
|
// }
|
|
initialState = {};
|
|
type= "";
|
|
state= "";
|
|
rights= null;
|
|
project_id= "";
|
|
|
|
creating_corporation= "TETHYS Repository";
|
|
language= "";
|
|
embargo_date= "";
|
|
belongs_to_bibliography= 0;
|
|
|
|
title_main= {
|
|
value: "",
|
|
language: ""
|
|
};
|
|
abstract_main= {
|
|
value: "",
|
|
language: ""
|
|
};
|
|
// geolocation: {
|
|
// xmin: "",
|
|
// ymin: "",
|
|
// xmax: "",
|
|
// ymax: ""
|
|
// },
|
|
coverage= {
|
|
xmin: "",
|
|
ymin: "",
|
|
xmax: "",
|
|
ymax: "",
|
|
elevation_min: "",
|
|
elevation_max: "",
|
|
elevation_absolut: "",
|
|
depth_min: "",
|
|
depth_max: "",
|
|
depth_absolut: "",
|
|
time_min: "",
|
|
time_max: "",
|
|
time_absolut: ""
|
|
};
|
|
checkedAuthors= [];
|
|
checkedLicenses= [];
|
|
files= [];
|
|
keywords= [];
|
|
references= [];
|
|
titles= [];
|
|
descriptions= [];
|
|
checkedContributors= [];
|
|
// checkedSubmitters: [],
|
|
|
|
persons= [];
|
|
contributors= [];
|
|
// submitters: []
|
|
|
|
created () {
|
|
this.initialState = Object.assign({}, this);
|
|
// let json = JSON.stringify(this.$data);
|
|
// this.reset = () => {
|
|
// Object.assign(this.$data, JSON.parse(json));
|
|
// };
|
|
// this.reset(json);
|
|
}
|
|
|
|
@Watch('language')
|
|
onLanguageChanged(val) {
|
|
this.title_main.language = val;
|
|
this.abstract_main.language = val;
|
|
}
|
|
|
|
|
|
reset() {
|
|
// Object.assign(this.$data, initialState());
|
|
Object.assign(this.$data, this.initialState);
|
|
}
|
|
|
|
}
|
|
// export default dataset;
|
|
|