2
0
mirror of https://github.com/frappe/books.git synced 2024-09-21 03:39:02 +00:00
books/ui/components/controls/Table.vue

341 lines
9.2 KiB
Vue
Raw Normal View History

2018-06-27 14:38:27 +00:00
<template>
2018-09-28 13:10:02 +00:00
<div class="form-group" v-on-outside-click="onOutsideClick">
<table class="table table-bordered" style="table-layout: fixed">
<thead>
<tr>
<th scope="col" width="60">
<input class="mr-2" type="checkbox" @change="toggleCheckAll" />
2018-09-28 13:10:02 +00:00
<span>#</span>
</th>
<th scope="col" v-for="column in columns" :key="column.fieldname">{{ column.label }}</th>
2018-09-28 13:10:02 +00:00
</tr>
</thead>
<tbody v-if="rows.length">
<tr v-for="(row, i) in rows" :key="i">
<th scope="row">
<input
class="mr-2"
type="checkbox"
:checked="checkedRows.includes(i)"
@change="e => onCheck(e, i)"
/>
2018-09-28 13:10:02 +00:00
<span>{{ i + 1 }}</span>
</th>
<td
v-for="column in columns"
:key="column.fieldname"
tabindex="1"
:ref="column.fieldname + i"
@click="activateFocus(i, column.fieldname)"
2018-09-28 13:10:02 +00:00
@dblclick="activateEditing(i, column.fieldname)"
2018-10-05 05:32:52 +00:00
@keydown.enter="enterPressOnCell()"
@keydown.tab.exact.prevent="focusNextCell()"
@keydown.shift.tab.exact.prevent="focusPreviousCell()"
@keydown.left="focusPreviousCell()"
@keydown.right="focusNextCell()"
@keydown.up="focusAboveCell(i, column.fieldname)"
@keydown.down="focusBelowCell(i, column.fieldname)"
@keydown.esc="escOnCell(i, column.fieldname)"
2018-09-28 13:10:02 +00:00
>
<div
class="table-cell"
:class="{'active': isFocused(i, column.fieldname),'p-1': isEditing(i, column.fieldname)}"
>
<frappe-control
v-if="isEditing(i, column.fieldname)"
:docfield="getDocfield(column.fieldname)"
:value="row[column.fieldname]"
:onlyInput="true"
:doc="row"
:autofocus="true"
@change="onCellChange(i, column.fieldname, $event)"
/>
<div
class="text-truncate"
:data-fieldtype="column.fieldtype"
v-else
>{{ row[column.fieldname] || '&nbsp;' }}</div>
</div>
2018-09-28 13:10:02 +00:00
</td>
</tr>
</tbody>
<tbody v-else>
<tr>
<td :colspan="columns.length + 1" class="text-center">
<div class="table-cell">No Data</div>
2018-09-28 13:10:02 +00:00
</td>
</tr>
</tbody>
</table>
<div class="table-actions" v-if="!disabled">
<f-button danger @click="removeCheckedRows" v-if="checkedRows.length">Remove</f-button>
<f-button light @click="addRow" v-if="!checkedRows.length">Add Row</f-button>
</div>
2018-06-27 14:38:27 +00:00
</div>
</template>
<script>
import Base from './Base';
2018-09-28 13:10:02 +00:00
import Observable from 'frappejs/utils/observable';
2018-06-27 14:38:27 +00:00
export default {
extends: Base,
2018-09-28 13:10:02 +00:00
data() {
return {
columns: [],
checkedRows: [],
currentlyEditing: {},
currentlyFocused: {}
};
2018-09-28 13:10:02 +00:00
},
mounted() {
this.columns = this.getColumns();
2018-06-27 14:38:27 +00:00
},
methods: {
escOnCell(i, fieldname) {
2018-09-28 13:10:02 +00:00
this.deactivateEditing();
this.activateFocus(i, fieldname);
2018-09-28 13:10:02 +00:00
},
2018-10-05 05:32:52 +00:00
enterPressOnCell() {
const { index, fieldname } = this.currentlyFocused;
if (this.isEditing(index, fieldname)) {
// FIX: enter pressing on a cell with a value throws error.
// this.deactivateEditing();
2018-10-05 05:32:52 +00:00
this.activateFocus(index, fieldname);
} else {
2018-10-05 05:32:52 +00:00
this.activateEditing(index, fieldname);
}
},
focusPreviousCell() {
let { index, fieldname } = this.currentlyFocused;
if (
this.isFocused(index, fieldname) &&
!this.isEditing(index, fieldname)
) {
let pos = this._getColumnIndex(fieldname);
pos -= 1;
if (pos < 0) {
index -= 1;
pos = this.columns.length - 1;
}
if (index < 0) {
index = 0;
pos = 0;
}
this.activateFocus(index, this.columns[pos].fieldname);
2018-09-28 13:10:02 +00:00
}
},
focusNextCell() {
let { index, fieldname } = this.currentlyFocused;
if (
this.isFocused(index, fieldname) &&
!this.isEditing(index, fieldname)
) {
let pos = this._getColumnIndex(fieldname);
pos += 1;
if (pos > this.columns.length - 1) {
index += 1;
pos = 0;
}
if (index > this.rows.length - 1) {
index = this.rows.length - 1;
pos = this.columns.length - 1;
}
this.activateFocus(index, this.columns[pos].fieldname);
2018-09-28 13:10:02 +00:00
}
},
focusAboveCell(i, fieldname) {
if (this.isFocused(i, fieldname) && !this.isEditing(i, fieldname)) {
let pos = this._getColumnIndex(fieldname);
i -= 1;
if (i < 0) {
i = 0;
}
this.activateFocus(i, this.columns[pos].fieldname);
}
},
focusBelowCell(i, fieldname) {
if (this.isFocused(i, fieldname) && !this.isEditing(i, fieldname)) {
let pos = this._getColumnIndex(fieldname);
i += 1;
if (i > this.rows.length - 1) {
i = this.rows.length - 1;
}
this.activateFocus(i, this.columns[pos].fieldname);
}
},
_getColumnIndex(fieldname) {
return this.columns.map(c => c.fieldname).indexOf(fieldname);
},
2018-09-28 13:10:02 +00:00
onOutsideClick(e) {
this.deactivateEditing();
},
onCheck(e, idx) {
if (e.target.checked) {
this.checkedRows.push(idx);
} else {
this.checkedRows = this.checkedRows.filter(i => i !== idx);
}
},
toggleCheckAll() {
if (this.checkedRows.length === this.rows.length) {
this.checkedRows = [];
} else {
this.checkedRows = this.rows.map((row, i) => i);
}
},
2018-09-28 13:10:02 +00:00
getDocfield(fieldname) {
return this.meta.getField(fieldname);
},
isEditing(i, fieldname) {
if (this.disabled) {
return false;
}
return (
this.currentlyEditing.index === i &&
this.currentlyEditing.fieldname === fieldname
);
},
isFocused(i, fieldname) {
return (
this.currentlyFocused.index === i &&
this.currentlyFocused.fieldname === fieldname
);
2018-09-28 13:10:02 +00:00
},
activateEditing(i, fieldname) {
const docfield = this.columns.find(c => c.fieldname === fieldname);
if (docfield.readOnly || docfield.disabled) {
return;
}
this.currentlyEditing = {
index: i,
fieldname
};
},
activateFocus(i, fieldname) {
// FIX: enter pressing on a cell with a value throws error.
// this.deactivateEditing();
const docfield = this.columns.find(c => c.fieldname === fieldname);
this.currentlyFocused = {
index: i,
fieldname
};
this.$refs[fieldname + i][0].focus();
},
2018-09-28 13:10:02 +00:00
deactivateEditing(i, _fieldname) {
const { index, fieldname } = this.currentlyEditing;
if (!(index === i && fieldname === _fieldname)) {
this.currentlyEditing = {};
}
},
deactivateFocus(i, _fieldname) {
const { index, fieldname } = this.currentlyFocused;
if (!(index === i && fieldname === _fieldname)) {
this.currentlyFocused = {};
}
},
2018-09-28 13:10:02 +00:00
addRow() {
const rows = this.rows.slice();
const newRow = {
idx: rows.length
};
for (let column of this.columns) {
newRow[column.fieldname] = null;
}
rows.push(newRow);
this.emitChange(rows, newRow);
},
removeCheckedRows() {
this.removeRows(this.checkedRows);
this.checkedRows = [];
},
removeRows(indices) {
// convert to array
if (!Array.isArray(indices)) {
indices = [indices];
}
// convert string to number
indices = indices.map(i => parseInt(i, 10));
// make a copy
let rows = this.rows.slice();
rows = rows.filter((row, i) => {
return !indices.includes(i);
2018-09-28 13:10:02 +00:00
});
this.emitChange(rows);
},
getRows() {
return (this.docs || []).map((row, i) => {
const doc = new Observable();
doc.set('idx', i);
for (let fieldname in row) {
doc.set(fieldname, row[fieldname]);
}
return doc;
});
},
getColumns() {
const fieldsToShow = this.meta.fields.filter(df => !df.hidden);
return fieldsToShow;
},
onCellChange(idx, fieldname, value) {
const rows = this.value.slice();
rows[idx][fieldname] = value;
this.emitChange(rows, rows[idx]);
},
2018-06-27 14:38:27 +00:00
emitChange(rows, rowDoc) {
this.$emit('change', rows, rowDoc);
}
2018-09-28 13:10:02 +00:00
},
computed: {
meta() {
return frappe.getMeta(this.docfield.childtype);
},
rows() {
return this.value;
}
2018-06-27 14:38:27 +00:00
}
};
2018-06-27 14:38:27 +00:00
</script>
2018-10-15 12:07:54 +00:00
<style lang="scss" scoped>
td {
padding: 0rem;
2018-09-28 13:10:02 +00:00
outline: none;
}
.table-cell {
padding: 0.75rem;
border: 1px solid transparent;
2018-10-15 12:07:54 +00:00
&.active {
border: 1px solid var(--blue);
}
2018-09-28 13:10:02 +00:00
}
2018-10-23 18:12:05 +00:00
.form-control {
padding: 0;
border: none;
box-shadow: none;
outline: none;
}
.form-group /deep/ .form-control {
2018-10-15 12:07:54 +00:00
padding: 0;
border: none;
box-shadow: none;
outline: none;
}
2018-10-15 12:07:54 +00:00
[data-fieldtype='Link'] .input-group-append {
display: none;
}
[data-fieldtype='Currency'],
[data-fieldtype='Float'] {
text-align: right !important;
}
2018-09-28 13:10:02 +00:00
</style>