@biggive/components 202311211130.0.0 → 202311211133.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/biggive/biggive.esm.js +1 -1
- package/dist/biggive/p-b7d3a791.entry.js +1 -0
- package/dist/cjs/biggive-accordion_42.cjs.entry.js +56 -39
- package/dist/collection/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.js +56 -39
- package/dist/components/biggive-campaign-card-filter-grid.js +56 -39
- package/dist/esm/biggive-accordion_42.entry.js +56 -39
- package/dist/types/components/biggive-campaign-card-filter-grid/biggive-campaign-card-filter-grid.d.ts +0 -1
- package/hydrate/index.js +56 -39
- package/package.json +1 -1
- package/dist/biggive/p-a1a856dd.entry.js +0 -1
package/hydrate/index.js
CHANGED
|
@@ -6821,6 +6821,60 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6821
6821
|
button.remove();
|
|
6822
6822
|
});
|
|
6823
6823
|
}
|
|
6824
|
+
let filters = {
|
|
6825
|
+
beneficiaries: searchAndFilterObj.filterBeneficiary,
|
|
6826
|
+
categories: searchAndFilterObj.filterCategory,
|
|
6827
|
+
funding: searchAndFilterObj.filterFunding,
|
|
6828
|
+
locations: searchAndFilterObj.filterLocation,
|
|
6829
|
+
};
|
|
6830
|
+
const keys = Object.keys(filters);
|
|
6831
|
+
for (const filterKey of keys) {
|
|
6832
|
+
// https://stackoverflow.com/a/69757191/2803757
|
|
6833
|
+
const filterValue = filters[filterKey];
|
|
6834
|
+
if (filterValue === null || filterValue.length === 0) {
|
|
6835
|
+
continue;
|
|
6836
|
+
}
|
|
6837
|
+
let button = document.createElement('span');
|
|
6838
|
+
button.classList.add('button');
|
|
6839
|
+
button.dataset.id = filterKey;
|
|
6840
|
+
button.innerText = filterValue;
|
|
6841
|
+
if (selectedFilters) {
|
|
6842
|
+
selectedFilters.appendChild(button);
|
|
6843
|
+
}
|
|
6844
|
+
button.addEventListener('click', () => {
|
|
6845
|
+
var _a;
|
|
6846
|
+
switch (filterKey) {
|
|
6847
|
+
case 'beneficiaries':
|
|
6848
|
+
this.selectedFilterBeneficiary = null;
|
|
6849
|
+
break;
|
|
6850
|
+
case 'categories':
|
|
6851
|
+
this.selectedFilterCategory = null;
|
|
6852
|
+
break;
|
|
6853
|
+
case 'funding':
|
|
6854
|
+
this.selectedFilterFunding = null;
|
|
6855
|
+
break;
|
|
6856
|
+
case 'locations':
|
|
6857
|
+
this.selectedFilterLocation = null;
|
|
6858
|
+
break;
|
|
6859
|
+
default:
|
|
6860
|
+
// This asks the compiler to check that we are in dead code, i.e. we covered all the possible filter keys
|
|
6861
|
+
// above. If we missed one we would get a compile error trying to assign a string to a never.
|
|
6862
|
+
const exhaustiveSwitch = filterKey;
|
|
6863
|
+
console.error(exhaustiveSwitch);
|
|
6864
|
+
}
|
|
6865
|
+
button.remove();
|
|
6866
|
+
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
6867
|
+
if (button.dataset.id === undefined) {
|
|
6868
|
+
return;
|
|
6869
|
+
}
|
|
6870
|
+
const selectEl = (_a = this.el.shadowRoot) === null || _a === void 0 ? void 0 : _a.getElementById(button.dataset.id);
|
|
6871
|
+
if (!selectEl) {
|
|
6872
|
+
return;
|
|
6873
|
+
}
|
|
6874
|
+
selectEl.selectedLabel = null;
|
|
6875
|
+
selectEl.selectedValue = null;
|
|
6876
|
+
});
|
|
6877
|
+
}
|
|
6824
6878
|
this.filtersApplied =
|
|
6825
6879
|
typeof searchAndFilterObj.filterBeneficiary === 'string' ||
|
|
6826
6880
|
typeof searchAndFilterObj.filterCategory === 'string' ||
|
|
@@ -6908,35 +6962,6 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6908
6962
|
filterLocation: this.selectedFilterLocation,
|
|
6909
6963
|
};
|
|
6910
6964
|
}
|
|
6911
|
-
removeFilter(filterKey) {
|
|
6912
|
-
var _a;
|
|
6913
|
-
switch (filterKey) {
|
|
6914
|
-
case 'beneficiaries':
|
|
6915
|
-
this.selectedFilterBeneficiary = null;
|
|
6916
|
-
break;
|
|
6917
|
-
case 'categories':
|
|
6918
|
-
this.selectedFilterCategory = null;
|
|
6919
|
-
break;
|
|
6920
|
-
case 'funding':
|
|
6921
|
-
this.selectedFilterFunding = null;
|
|
6922
|
-
break;
|
|
6923
|
-
case 'locations':
|
|
6924
|
-
this.selectedFilterLocation = null;
|
|
6925
|
-
break;
|
|
6926
|
-
default:
|
|
6927
|
-
// This asks the compiler to check that we are in dead code, i.e. we covered all the possible filter keys
|
|
6928
|
-
// above. If we missed one we would get a compile error trying to assign a string to a never.
|
|
6929
|
-
const exhaustiveSwitch = filterKey;
|
|
6930
|
-
console.error(exhaustiveSwitch);
|
|
6931
|
-
}
|
|
6932
|
-
const selectEl = (_a = this.el.shadowRoot) === null || _a === void 0 ? void 0 : _a.getElementById(filterKey);
|
|
6933
|
-
if (!selectEl) {
|
|
6934
|
-
return;
|
|
6935
|
-
}
|
|
6936
|
-
selectEl.selectedLabel = null;
|
|
6937
|
-
selectEl.selectedValue = null;
|
|
6938
|
-
this.doSearchAndFilterUpdate.emit(this.getSearchAndFilterObject());
|
|
6939
|
-
}
|
|
6940
6965
|
componentWillRender() {
|
|
6941
6966
|
this.filtersApplied =
|
|
6942
6967
|
this.selectedFilterCategory !== null || this.selectedFilterBeneficiary !== null || this.selectedFilterFunding !== null || this.selectedFilterLocation !== null;
|
|
@@ -6944,18 +6969,10 @@ class BiggiveCampaignCardFilterGrid {
|
|
|
6944
6969
|
}
|
|
6945
6970
|
render() {
|
|
6946
6971
|
var _a;
|
|
6947
|
-
return (hAsync("div", { class: 'container space-below-' + this.spaceBelow }, hAsync("div", { class: "sleeve" }, hAsync("div", { class: "search-wrap" }, hAsync("h4", null, this.intro), hAsync("div", { class: "field-wrap" }, hAsync("div", { class: "input-wrap" }, hAsync("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, hAsync("path", { d: faMagnifyingGlass.icon[4].toString() })), hAsync("input", { type: "text", value: (_a = this.searchText) !== null && _a !== void 0 ? _a : '', class: "input-text", placeholder: this.placeholderText, onInput: this.handleSearchTextChanged, onKeyDown: this.handleEnterPressed })), hAsync("biggive-button", { onClick: this.handleSearchButtonPressed, label: this.buttonText }))), hAsync("div", { class: "sort-filter-wrap" }, hAsync("div", { class: "filter-wrap" }, hAsync("biggive-button", { class: "filter", colourScheme: "primary", onClick: this.handleFilterButtonClick, label: "Filter", fullWidth: true, "space-below": "0" }), hAsync("biggive-popup", { id: "filter-popup" }, hAsync("h4", { class: "space-above-0 space-below-3 text-colour-primary" }, "Filters"), hAsync("div", { class: "select-wrapper-1" }, hAsync("biggive-form-field-select", { backgroundColour: "white", prompt: "Category", placeholder: this.categoriesPlaceHolderText, selectedLabel: this.selectedFilterCategory,
|
|
6972
|
+
return (hAsync("div", { class: 'container space-below-' + this.spaceBelow }, hAsync("div", { class: "sleeve" }, hAsync("div", { class: "search-wrap" }, hAsync("h4", null, this.intro), hAsync("div", { class: "field-wrap" }, hAsync("div", { class: "input-wrap" }, hAsync("svg", { xmlns: "http://www.w3.org/2000/svg", class: "icon", viewBox: "0 0 512 512" }, hAsync("path", { d: faMagnifyingGlass.icon[4].toString() })), hAsync("input", { type: "text", value: (_a = this.searchText) !== null && _a !== void 0 ? _a : '', class: "input-text", placeholder: this.placeholderText, onInput: this.handleSearchTextChanged, onKeyDown: this.handleEnterPressed })), hAsync("biggive-button", { onClick: this.handleSearchButtonPressed, label: this.buttonText }))), hAsync("div", { class: "sort-filter-wrap" }, hAsync("div", { class: "filter-wrap" }, hAsync("biggive-button", { class: "filter", colourScheme: "primary", onClick: this.handleFilterButtonClick, label: "Filter", fullWidth: true, "space-below": "0" }), hAsync("biggive-popup", { id: "filter-popup" }, hAsync("h4", { class: "space-above-0 space-below-3 text-colour-primary" }, "Filters"), hAsync("div", { class: "select-wrapper-1" }, hAsync("biggive-form-field-select", { backgroundColour: "white", prompt: "Category", placeholder: this.categoriesPlaceHolderText, selectedLabel: this.selectedFilterCategory, options: this.optionsToArray(this.categoryOptions || []), selectionChanged: this.categoryFilterSelectionChanged, id: "categories", "space-below": "2" })), hAsync("div", { class: "select-wrapper-2" }, hAsync("biggive-form-field-select", { backgroundColour: "white", prompt: "Beneficiary", placeholder: this.beneficiariesPlaceHolderText, selectedLabel: this.selectedFilterBeneficiary, options: this.optionsToArray(this.beneficiaryOptions || []), selectionChanged: this.beneficiarySelectionChanged, id: "beneficiaries", "space-below": "2" })), hAsync("div", { class: "select-wrapper-3" }, hAsync("biggive-form-field-select", { backgroundColour: "white", prompt: "Location", placeholder: this.locationsPlaceHolderText, selectedLabel: this.selectedFilterLocation, options: this.optionsToArray(this.locationOptions || []), selectionChanged: this.locationSelectionChanged, id: "locations", "space-below": "2" })), hAsync("div", { class: "select-wrapper-4" }, hAsync("biggive-form-field-select", { backgroundColour: "white", prompt: "Funding", placeholder: this.fundingPlaceHolderText, selectedLabel: this.selectedFilterFunding, options: this.optionsToArray(this.fundingOptions || []), selectionChanged: this.fundingSelectionChanged, id: "funding", "space-below": "2" })), hAsync("div", { class: "align-right" }, hAsync("biggive-button", { label: "Apply filters", onClick: this.handleApplyFilterButtonClick })))), hAsync("div", { class: "sort-wrap" }, hAsync("biggive-form-field-select", { options: [
|
|
6948
6973
|
{ value: 'amountRaised', label: 'Most raised' },
|
|
6949
6974
|
{ value: 'matchFundsRemaining', label: 'Match funds remaining' },
|
|
6950
|
-
], prompt: null, "select-style": "underlined", placeholder: this.sortByPlaceholderText, selectedLabel: this.selectedSortByOption, selectionChanged: this.sortBySelectionChanged, id: "sort-by" }, hAsync("biggive-form-field-select-option", { value: "amountRaised", label: "Most raised" }), hAsync("biggive-form-field-select-option", { value: "matchFundsRemaining", label: "Match funds remaining" }), (this.searchText || '').length > 0 ? hAsync("biggive-form-field-select-option", { value: "Relevance", label: "Relevance" }) : null))), hAsync("div", { class: "selected-filter-wrap" }, hAsync("div", { class: "selected-filters" }, this.
|
|
6951
|
-
this.removeFilter('categories');
|
|
6952
|
-
} }, this.selectedFilterCategory)), this.selectedFilterBeneficiary && (hAsync("span", { class: "button", onClick: () => {
|
|
6953
|
-
this.removeFilter('beneficiaries');
|
|
6954
|
-
} }, this.selectedFilterBeneficiary)), this.selectedFilterLocation && (hAsync("span", { class: "button", onClick: () => {
|
|
6955
|
-
this.removeFilter('locations');
|
|
6956
|
-
} }, this.selectedFilterLocation)), this.selectedFilterFunding && (hAsync("span", { class: "button", onClick: () => {
|
|
6957
|
-
this.removeFilter('funding');
|
|
6958
|
-
} }, this.selectedFilterFunding))), hAsync("div", { class: "clear-all" }, hAsync("a", { onClick: this.handleClearAll }, "Clear all"))), hAsync("div", { class: "campaign-grid" }, hAsync("slot", { name: "campaign-grid" })))));
|
|
6975
|
+
], prompt: null, "select-style": "underlined", placeholder: this.sortByPlaceholderText, selectedLabel: this.selectedSortByOption, selectionChanged: this.sortBySelectionChanged, id: "sort-by" }, hAsync("biggive-form-field-select-option", { value: "amountRaised", label: "Most raised" }), hAsync("biggive-form-field-select-option", { value: "matchFundsRemaining", label: "Match funds remaining" }), (this.searchText || '').length > 0 ? hAsync("biggive-form-field-select-option", { value: "Relevance", label: "Relevance" }) : null))), hAsync("div", { class: "selected-filter-wrap" }, hAsync("div", { class: "selected-filters" }), hAsync("div", { class: "clear-all" }, hAsync("a", { onClick: this.handleClearAll }, "Clear all"))), hAsync("div", { class: "campaign-grid" }, hAsync("slot", { name: "campaign-grid" })))));
|
|
6959
6976
|
}
|
|
6960
6977
|
optionsToArray(options) {
|
|
6961
6978
|
if (typeof options === 'string') {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@biggive/components",
|
|
3
3
|
"_comment": "Version number below is automatically replaced during CircleCI build.",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "202311211133.0.0",
|
|
5
5
|
"description": "Big Give Components",
|
|
6
6
|
"main": "dist/index.cjs.js",
|
|
7
7
|
"module": "dist/index.js",
|