Files
starface-outlook-sync-addin/node_modules/@fluentui/utilities/lib/customizations/Customizer.test.js
T
Stefan Hacker 37ad745546 first commit
2026-04-03 09:38:48 +02:00

154 lines
7.6 KiB
JavaScript

import { __assign, __decorate, __extends } from "tslib";
/* eslint-disable @typescript-eslint/no-deprecated */
import * as React from 'react';
import { render, screen, act } from '@testing-library/react';
import { customizable } from './customizable';
import { Customizer } from './Customizer';
import { Customizations } from './Customizations';
var Foo = /** @class */ (function (_super) {
__extends(Foo, _super);
function Foo() {
return _super !== null && _super.apply(this, arguments) || this;
}
Foo.prototype.render = function () {
return React.createElement("div", null, this.props.field);
};
Foo = __decorate([
customizable('Foo', ['field'])
], Foo);
return Foo;
}(React.Component));
var Bar = /** @class */ (function (_super) {
__extends(Bar, _super);
function Bar() {
return _super !== null && _super.apply(this, arguments) || this;
}
Bar.prototype.render = function () {
return (React.createElement("div", null,
this.props.field,
this.props.field2,
this.props.field3));
};
Bar = __decorate([
customizable('Bar', ['field', 'field2', 'field3'])
], Bar);
return Bar;
}(React.Component));
describe('Customizer', function () {
beforeEach(function () {
Customizations.reset();
});
it('can provide new defaults', function () {
render(React.createElement(Customizer, { settings: { field: 'customName' } },
React.createElement(Foo, null)));
expect(screen.getByText('customName')).toBeInTheDocument();
});
it('can pass through global settings', function () {
Customizations.applySettings({ field: 'globalName' });
render(React.createElement(Customizer, { settings: { nonMatch: 'customName' } },
React.createElement(Foo, null)));
expect(screen.getByText('globalName')).toBeInTheDocument();
});
it('can override global settings', function () {
Customizations.applySettings({ field: 'globalName' });
render(React.createElement(Customizer, { settings: { field: 'customName' } },
React.createElement(Foo, null)));
expect(screen.getByText('customName')).toBeInTheDocument();
});
it('can scope settings to specific components', function () {
var scopedSettings = {
Foo: { field: 'scopedToFoo' },
Bar: { field: 'scopedToBar' },
};
render(React.createElement(Customizer, { scopedSettings: scopedSettings },
React.createElement("div", null,
React.createElement(Foo, null),
React.createElement(Bar, null))));
expect(screen.getByText('scopedToFoo')).toBeInTheDocument();
expect(screen.getByText('scopedToBar')).toBeInTheDocument();
});
it('can layer global settings', function () {
render(React.createElement(Customizer, { settings: { field: 'field' } },
React.createElement(Customizer, { settings: { field2: 'field2' } },
React.createElement(Bar, null))));
expect(screen.getByText('fieldfield2')).toBeInTheDocument();
});
it('can layer scoped settings', function () {
Customizations.applySettings({ field3: 'field3' });
render(React.createElement(Customizer, { scopedSettings: { Bar: { field: 'field', field2: 'oldfield2' } } },
React.createElement(Customizer, { scopedSettings: { Bar: { field2: 'field2' } } },
React.createElement(Bar, null))));
expect(screen.getByText('fieldfield2field3')).toBeInTheDocument();
});
it('can layer scoped settings with scopedSettingsFunction', function () {
Customizations.applySettings({ field3: 'field3' });
render(React.createElement(Customizer, { scopedSettings: { Bar: { field: 'field' } } },
React.createElement(Customizer, { scopedSettings: function (scopedSettings) { return ({
Bar: __assign(__assign({}, scopedSettings.Bar), { field2: 'field2' }),
}); } },
React.createElement(Bar, null))));
expect(screen.getByText('fieldfield2field3')).toBeInTheDocument();
});
it('it allows scopedSettings to be merged when a function is passed', function () {
render(React.createElement(Customizer, { scopedSettings: { Foo: { field: 'scopedToFoo' } } },
React.createElement(Customizer, { scopedSettings: function (settings) { return (__assign(__assign({}, settings), { Bar: { field: 'scopedToBar' } })); } },
React.createElement("div", null,
React.createElement(Foo, null),
React.createElement(Bar, null)))));
expect(screen.getByText('scopedToFoo')).toBeInTheDocument();
expect(screen.getByText('scopedToBar')).toBeInTheDocument();
});
it('overrides previously set settings', function () {
render(React.createElement(Customizer, { settings: { field: 'field1' } },
React.createElement(Customizer, { settings: { field: 'field2' } },
React.createElement(Bar, null))));
expect(screen.getByText('field2')).toBeInTheDocument();
});
it('overrides the old settings when the parameter is ignored', function () {
render(React.createElement(Customizer, { settings: { field: 'field1' } },
React.createElement(Customizer, { settings: function (settings) { return ({ field: 'field2' }); } },
React.createElement(Bar, null))));
expect(screen.getByText('field2')).toBeInTheDocument();
});
it('can use a function to merge settings', function () {
render(React.createElement(Customizer, { settings: { field: 'field1' } },
React.createElement(Customizer, { settings: function (settings) { return ({ field: settings.field + 'field2' }); } },
React.createElement(Bar, null))));
expect(screen.getByText('field1field2')).toBeInTheDocument();
});
it('can suppress updates', function () {
Customizations.applySettings({ field: 'globalName' });
render(React.createElement(Customizer, { settings: { nonMatch: 'customName' } },
React.createElement(Bar, null)));
// verify base state
expect(screen.getByText('globalName')).toBeInTheDocument();
act(function () {
// verify it doesn't update during suppressUpdates(), and it works through errors, and it updates after
Customizations.applyBatchedUpdates(function () {
Customizations.applySettings({ field: 'notGlobalName' });
// it should not update inside
expect(screen.getByText('globalName')).toBeInTheDocument();
throw new Error();
});
});
// afterwards it should have updated
expect(screen.getByText('notGlobalName')).toBeInTheDocument();
act(function () {
// verify it doesn't update during suppressUpdates(), works through errors, and can suppress final update
Customizations.applyBatchedUpdates(function () {
Customizations.applySettings({ field: 'notUpdated' });
// it should not update inside
expect(screen.getByText('notGlobalName')).toBeInTheDocument();
throw new Error();
}, true);
});
// afterwards, it should still be on the old value
expect(screen.getByText('notGlobalName')).toBeInTheDocument();
// verify it updates after suppressUpdates()
act(function () {
Customizations.applySettings({ field2: 'lastGlobalName' });
});
expect(screen.getByText('notUpdatedlastGlobalName')).toBeInTheDocument();
});
});
//# sourceMappingURL=Customizer.test.js.map