You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Hydro/packages/ui-default/components/table/StyledTable.js

48 lines
1.2 KiB
JavaScript

import 'sticky-kit/dist/sticky-kit';
import _ from 'lodash';
import Navigation from 'vj/components/navigation';
import DOMAttachedObject from 'vj/components/DOMAttachedObject';
export default class StyledTable extends DOMAttachedObject {
static DOMAttachKey = 'vjStyledTableInstance';
static DOMAttachSelector = '.data-table';
constructor($dom) {
if ($dom.closest('.section__body').length === 0) {
super(null);
return;
}
super($dom);
this.$container = $('<div>').addClass('section__table-container');
this.$container.insertBefore(this.$dom);
this.$header = $('<table>');
this.$header.attr('class', `${this.$dom.attr('class')} section__table-header`);
this.$container
.append(this.$header)
.append(this.$dom);
this.$header.empty();
this.$dom.children('colgroup').clone().appendTo(this.$header);
this.$dom.children('thead').appendTo(this.$header);
const stickyOptions = {
parent: this.$container,
offset_top: Navigation.instance.getHeight(),
};
_.defer(() => this.$header.stick_in_parent(stickyOptions));
}
detach() {
super.detach();
this.$header.trigger('sticky_kit:detach');
}
}
_.assign(StyledTable, DOMAttachedObject);