igniteui-react-grids
Version:
Ignite UI React grid components.
153 lines (152 loc) • 5.76 kB
JavaScript
/*
THIS INFRAGISTICS ULTIMATE SOFTWARE LICENSE AGREEMENT ("AGREEMENT") LOCATED HERE:
https://www.infragistics.com/legal/license/igultimate-la
https://www.infragistics.com/legal/license/igultimate-eula
GOVERNS THE LICENSING, INSTALLATION AND USE OF INFRAGISTICS SOFTWARE. BY DOWNLOADING AND/OR INSTALLING AND USING INFRAGISTICS SOFTWARE: you are indicating that you have read and understand this Agreement, and agree to be legally bound by it on behalf of the yourself and your company.
*/
import { GridColumnOptionsViewBase } from "./GridColumnOptionsViewBase";
import { Size } from "igniteui-react-core";
import { GridColumnOptionsUtilities } from "./GridColumnOptionsUtilities";
import { runOn, delegateCombine, markType } from "igniteui-react-core";
import { GridColumnOptionsSimpleSectionBase } from "./GridColumnOptionsSimpleSectionBase";
/**
* @hidden
*/
export let GridColumnHideOptionsView = /*@__PURE__*/ (() => {
class GridColumnHideOptionsView extends GridColumnOptionsViewBase {
constructor() {
super(...arguments);
this.s = null;
this.p = null;
this.r = null;
this.o = null;
this.t = null;
this.q = false;
}
get n() {
return this.b;
}
x() {
if (null == this.p) {
return;
}
this.q = true;
try {
let a = this.n.b3;
if (a) {
this.p.svgPath = GridColumnHideOptionsView.v;
}
else {
this.p.svgPath = GridColumnHideOptionsView.u;
}
}
finally {
this.q = false;
}
}
k() {
super.k();
if (null == this.g || null == this.e) {
return;
}
let a = this.e;
let b = this.n;
let c = this.g;
this.r = ((() => { let d = GridColumnOptionsUtilities.f(this.n, a, GridColumnHideOptionsView.u, 1, b.p, b.j, new Size(1, 24, 24), this.o, this.p, this.s, this.t, false, true, false); this.o = d.p7; this.p = d.p8; this.s = d.p9; this.t = d.p10; return d.ret; })());
let d = this.o;
d.clicked = delegateCombine(d.clicked, runOn(this, this.w));
c.append(this.r);
}
m() {
super.m();
this.x();
let a = this.n;
if (null != this.s) {
this.s.setRawText(this.n.by);
let b = this.n.bw;
GridColumnOptionsUtilities.j(this.s, b, "inline-block");
if (b) {
this.o.e = 1;
this.o.fb = "stretch";
this.t.setStyleProperty("justify-content", "space-between");
}
else {
this.o.e = 4;
this.o.fb = "center";
this.t.setStyleProperty("justify-content", "center");
}
this.s.setStyleProperty("font", a.aa.fontString);
}
a.bh(this.o);
}
w(a, b) {
if (this.q) {
return;
}
this.n.b3 = !this.n.b3;
}
}
GridColumnHideOptionsView.$t = /*@__PURE__*/ markType(GridColumnHideOptionsView, 'GridColumnHideOptionsView', GridColumnOptionsViewBase.$);
GridColumnHideOptionsView.v = "M12 4.5C7 4.5 2.73 7.61 1 12c1.73 4.39 6 7.5 11 7.5s9.27-3.11 11-7.5c-1.73-4.39-6-7.5-11-7.5zM12 17c-2.76 0-5-2.24-5-5s2.24-5 5-5 5 2.24 5 5-2.24 5-5 5zm0-8c-1.66 0-3 1.34-3 3s1.34 3 3 3 3-1.34 3-3-1.34-3-3-3z";
GridColumnHideOptionsView.u = "M12 7c2.76 0 5 2.24 5 5 0 .65-.13 1.26-.36 1.83l2.92 2.92c1.51-1.26 2.7-2.89 3.43-4.75-1.73-4.39-6-7.5-11-7.5-1.4 0-2.74.25-3.98.7l2.16 2.16C10.74 7.13 11.35 7 12 7zM2 4.27l2.28 2.28.46.46C3.08 8.3 1.78 10.02 1 12c1.73 4.39 6 7.5 11 7.5 1.55 0 3.03-.3 4.38-.84l.42.42L19.73 22 21 20.73 3.27 3 2 4.27zM7.53 9.8l1.55 1.55c-.05.21-.08.43-.08.65 0 1.66 1.34 3 3 3 .22 0 .44-.03.65-.08l1.55 1.55c-.67.33-1.41.53-2.2.53-2.76 0-5-2.24-5-5 0-.79.2-1.53.53-2.2zm4.31-.78l3.15 3.15.02-.16c0-1.66-1.34-3-3-3l-.17.01z";
return GridColumnHideOptionsView;
})();
/**
* @hidden
*/
export let GridColumnHideOptions = /*@__PURE__*/ (() => {
class GridColumnHideOptions extends GridColumnOptionsSimpleSectionBase {
constructor() {
super();
}
f() {
return new GridColumnHideOptionsView();
}
get_b0() {
return "Hide Column";
}
get b0() {
return this.get_b0();
}
bs() {
if (null == this.column) {
return false;
}
return true;
}
a7(a, b) {
super.a7(a, b);
let c = this.column;
if (null == c) {
return;
}
switch (b.propertyName) {
case "IsHidden":
this.b2.m();
break;
}
}
be(a, b, c) {
super.be(a, b, c);
}
get b3() {
let a = this.column;
if (null != a) {
return a.jp;
}
return false;
}
set b3(a) {
let b = this.column;
if (null != b) {
b.jp = a;
b.mz("Hidden");
}
}
get b2() {
return this.e;
}
}
GridColumnHideOptions.$t = /*@__PURE__*/ markType(GridColumnHideOptions, 'GridColumnHideOptions', GridColumnOptionsSimpleSectionBase.$);
return GridColumnHideOptions;
})();