2020-10-02 15:10:00 +00:00
|
|
|
import {fromKoSave} from 'app/client/lib/fromKoSave';
|
|
|
|
import {DataRowModel} from 'app/client/models/DataRowModel';
|
|
|
|
import {ViewFieldRec} from 'app/client/models/entities/ViewFieldRec';
|
|
|
|
import {cssRow} from 'app/client/ui/RightPanel';
|
|
|
|
import {alignmentSelect, makeButtonSelect} from 'app/client/ui2018/buttonSelect';
|
|
|
|
import {testId} from 'app/client/ui2018/cssVars';
|
2021-03-02 12:27:08 +00:00
|
|
|
import {NewAbstractWidget, Options} from 'app/client/widgets/NewAbstractWidget';
|
2020-10-07 21:58:43 +00:00
|
|
|
import {dom, DomContents, fromKo, Observable} from 'grainjs';
|
2020-10-02 15:10:00 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* TextBox - The most basic widget for displaying text information.
|
|
|
|
*/
|
|
|
|
export class NTextBox extends NewAbstractWidget {
|
|
|
|
protected alignment: Observable<string>;
|
|
|
|
protected wrapping: Observable<boolean>;
|
|
|
|
|
2021-03-02 12:27:08 +00:00
|
|
|
constructor(field: ViewFieldRec, options: Options = {}) {
|
|
|
|
super(field, options);
|
2020-10-02 15:10:00 +00:00
|
|
|
|
|
|
|
this.alignment = fromKoSave<string>(this.options.prop('alignment'));
|
2020-10-07 21:58:43 +00:00
|
|
|
this.wrapping = fromKo(this.field.wrapping);
|
2020-10-02 15:10:00 +00:00
|
|
|
|
|
|
|
this.autoDispose(this.wrapping.addListener(() => {
|
|
|
|
this.field.viewSection().events.trigger('rowHeightChange');
|
|
|
|
}));
|
|
|
|
}
|
|
|
|
|
2020-10-07 21:58:43 +00:00
|
|
|
public buildConfigDom(): DomContents {
|
|
|
|
return [
|
2020-10-02 15:10:00 +00:00
|
|
|
cssRow(
|
|
|
|
alignmentSelect(this.alignment),
|
|
|
|
dom('div', {style: 'margin-left: 8px;'},
|
|
|
|
makeButtonSelect(this.wrapping, [{value: true, icon: 'Wrap'}], this._toggleWrap.bind(this), {}),
|
|
|
|
testId('tb-wrap-text')
|
|
|
|
)
|
|
|
|
)
|
2020-10-07 21:58:43 +00:00
|
|
|
];
|
2020-10-02 15:10:00 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public buildDom(row: DataRowModel) {
|
|
|
|
const value = row.cells[this.field.colId.peek()];
|
|
|
|
return dom('div.field_clip',
|
|
|
|
dom.style('text-align', this.alignment),
|
|
|
|
dom.cls('text_wrapping', this.wrapping),
|
|
|
|
dom.text((use) => use(row._isAddRow) ? '' : use(this.valueFormatter).format(use(value))),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
private _toggleWrap(value: boolean) {
|
|
|
|
const newValue = !this.wrapping.get();
|
|
|
|
this.options.update({wrap: newValue});
|
|
|
|
(this.options as any).save();
|
|
|
|
}
|
|
|
|
}
|