Created
August 19, 2021 18:57
-
-
Save onefriendaday/d1987938868b3911fa290ab8745cbf20 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const Fieldtype = { | |
template: ` | |
<div> | |
<button v-if="!open" class="uk-width-1-1 uk-button" v-on:click.prevent="openOverlay"> | |
<i class="uk-icon-table uk-margin-small-right"></i> | |
Edit Table | |
</button> | |
<div v-if="open"> | |
<div class=uk-clearfix> | |
<div class=uk-float-right><a v-on:click="close" class="uk-button uk-button-primary">Close</a></div> | |
</div> | |
<div style="padding: 50px 90px 50px 120px"> | |
<div class="uk-position-relative"> | |
<table class="uk-table uk-table-hover plugin__tabledata"> | |
<thead> | |
<tr> | |
<th :key="index" v-for="(th, index) in model.thead"> | |
<div style="position: absolute; top: -35px" class="markdown__toolbar"> | |
<a class="markdown__btn" v-on:click="removeCol(index)"><i class="uk-icon-trash"></i></a> | |
<a class="markdown__btn" v-on:click="moveCol(index, -1)"><i class="uk-icon-caret-left"></i></a> | |
<a class="markdown__btn" v-on:click="moveCol(index, 1)"><i class="uk-icon-caret-right"></i></a> | |
<a class="markdown__btn" v-on:click="addCol(index)"><i class="uk-icon-plus"></i></a> | |
</div> | |
<textarea @focus=autogrowFn @blur=resetFn @input=autogrowFn($event) v-model=th.value type="text" class="uk-width-1-1" rows="1" style="overflow-y: scroll; height: 42px;"></textarea> | |
</th> | |
</tr> | |
</thead> | |
<tbody> | |
<tr :key="trkey" v-for="(tr, trkey) in model.tbody"> | |
<td :key="index" v-for="(td, index) in tr.body"> | |
<div v-if="!index" style="position: absolute; left: -120px" class="markdown__toolbar"> | |
<a class="markdown__btn" v-on:click="removeRow(trkey)"><i class="uk-icon-trash"></i></a> | |
<a class="markdown__btn" v-on:click="moveRow(trkey, 1)"><i class="uk-icon-caret-down"></i></a> | |
<a class="markdown__btn" v-on:click="moveRow(trkey, -1)"><i class="uk-icon-caret-up"></i></a> | |
<a class="markdown__btn" v-on:click="addRow(trkey)"><i class="uk-icon-plus"></i></a> | |
</div> | |
<textarea @focus=autogrowFn @blur=resetFn @input=autogrowFn($event) v-model=td.value type="text" class="uk-width-1-1" rows="1"></textarea> | |
</td> | |
</tr> | |
</tbody> | |
</table> | |
</div> | |
</div> | |
</div> | |
</div> | |
`, | |
mixins: [window.Storyblok.plugin], | |
computed: { | |
cols() { | |
if (this.model) { | |
return this.model.thead.length | |
} | |
return 0 | |
} | |
}, | |
data() { | |
return { | |
open: false | |
} | |
}, | |
methods: { | |
initWith() { | |
return { | |
plugin: 'translateable-table', | |
thead: [ | |
{value: 'Head1'}, | |
{value: 'Head2'} | |
], | |
tbody: [ | |
{ | |
component: '_table_row', | |
body: [ | |
{ | |
component: '_table_col', | |
value: 'one' | |
}, | |
{ | |
component: '_table_col', | |
value: 'two' | |
} | |
] | |
} | |
] | |
} | |
}, | |
resetFn(e) { | |
var textarea = e.currentTarget | |
textarea.style.overflowY = 'scroll' | |
textarea.style.height = '42px' | |
}, | |
autogrowFn(e) { | |
var maxAllowedHeight = 300 | |
var newHeight = 0 | |
var hasGrown = false | |
var textarea = e.currentTarget | |
if (textarea.scrollHeight > maxAllowedHeight) { | |
textarea.style.overflowY = 'scroll' | |
newHeight = maxAllowedHeight | |
} else { | |
textarea.style.overflowY = 'hidden' | |
textarea.style.height = 'auto' | |
newHeight = textarea.scrollHeight + 2 | |
hasGrown = true | |
} | |
textarea.style.height = newHeight + 'px' | |
return hasGrown | |
}, | |
moveRow(index, offset) { | |
this.move(this.model.tbody, index, offset) | |
}, | |
move(elements, index, offset) { | |
var newIndex = index + offset | |
if (newIndex > -1 && newIndex < elements.length) { | |
var removedElement = elements.splice(index, 1)[0] | |
elements.splice(newIndex, 0, removedElement) | |
} | |
}, | |
moveCol(index, offset) { | |
this.move(this.model.thead, index, offset) | |
this.model.tbody.forEach((item) => { | |
this.move(item.body, index, offset) | |
}) | |
}, | |
close() { | |
this.$emit('toggle-modal', false) | |
this.open = false | |
}, | |
openOverlay() { | |
this.$emit('toggle-modal', true) | |
this.open = true | |
}, | |
addRow(index) { | |
var row = {component: '_table_row', body: []} | |
for (var i = 0; i < this.cols; i++) { | |
row.body[i] = {component: '_table_col', value: ''} | |
} | |
this.model.tbody.splice(index + 1, 0, row) | |
}, | |
addCol(index) { | |
this.model.thead.splice(index + 1, 0, {value: 'Title'}) | |
this.model.tbody.forEach(function (item) { | |
item.body.splice(index + 1, 0, {component: '_table_col', value: ''}) | |
}) | |
}, | |
removeCol(index) { | |
this.model.thead.splice(index, 1) | |
this.model.tbody.forEach(function (item) { | |
item.body.splice(index, 1) | |
}) | |
}, | |
removeRow(index) { | |
this.model.tbody.splice(index, 1) | |
} | |
}, | |
watch: { | |
'model': { | |
handler(value) { | |
this.$emit('changed-model', value) | |
}, | |
deep: true | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment