-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Working on tailwind refactor * Move providers to their own file * Update appConfig loader * Update appConfig * Delete tmp after pre-build is complete * Migrate footer to tailwind * Fix types * Change to use lucide icons * Remove mantine from document * Move styles to top of import list * Add HOC for app config * Working on refactor * Add new error pages * Working on search bar redesign * Working on search bar component * Working on search bar * Add jotai * Working on search component * Fix up categories * Working on map adapter * Trying to finish Search components * Working on search layout * Update * Remove geocoding API endpoint * Large update * Update * Update * Add comma * Update * Working on map * Finish up search feature * Rebuild search functionality * Working on resource page * Update * Finish up resource feature * Working on search and resource pages * Fixing tailwind * Fix issues * Fix fonts not rendering * Working on favorites * Update * Fix map rendering issues * Update * Fix issue with printing where font styles were lost * Delete plugins folder * Big change * Update * Updates * Remove unneeded folders * Move short url logic to service * Make category headers not so bold * Fix issue with tailwind config/plugin * Add new taxonomy container for getting currently searched taxonomy terms * Fix layout shift issue * Add clear filters button * Fix several taxonomy issues * Bunch of fixes * fix: appconfig typing issues * chore: Remove remnants of mantine and tabler icons * fix: Change mapbox access token env variable * Remove production tag * fix: fallback radius options * chore: add bottom border to header * feat: Add feature flag support * fix: taxonomy suggestions no longer get lost on search resubmit * 1st value is always highlighted * fix: remove last change. Didn't fix anything * fix: add back map zoom and center configurations * Add user location map marker * Add user location pin to map * Fix issue with map re-rendering when it shouldn't * feat: Add showSearchAndResourceServiceLabel flag * fix: Crashing from user coordinates * fix: State no longer becomes undefined on route changes * fix: api calls are only made when there is a valid session * fix: linting errors * chore: render as false instead of null * chore: add session to search page * feat: add support for "everywhere" location query * flag: add service name feature flag * fix: hide share button for PRIVATE lists * flag: add showTaxonomyBadge support * feat: Prioritize environment variable flags * feat: Add input wrapper className for added customization * fix: Add default error to empty on pages * feat: Start work on required user location * fix: favicon now points to the appConfig url * fix: decodeUriComponent for coords page param * fix: whitespace breaks are handled properly now * fix: Use short description when available * fix: whitespace breaks and distance no longer is 0 at random times * fix(map): Zoomed in too far on * fix(map): Map stutters less now on resize * feat(directions): Clicking on the copy badge for address will now take the user to the google maps directions page * Fix issue with dynamic titles not coming through * fix(theme): Added border radius to theme back in * fix(appConfig): Removed category and suggestion key/value pairs from the OLD config * chore(appConfig): cleanup appConfig and use new values * chore(appConfig): Remove commented out code * feat: Preparing API calls for new API * chore: Use new /term endpoint instead of /taxonomy-term * fix: Don't make an API call when terms is an empty array * fix: Change short_service_description to service_short_description * fix: Add locale to header and query params for resources * fix: Add support for new API * fix: Add background color to tour button * Fix build script * chore: Add deps for translation * feat: Add script for translating from english * chore: Update all locales for client * fix: Add category images for locales other than english * chore: Use location_coordinates field instead of location field from ES to prepare for new updates
- Loading branch information
Showing
307 changed files
with
13,312 additions
and
11,611 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,7 @@ | ||
{ | ||
"singleQuote": true | ||
"singleQuote": true, | ||
"semi": true, | ||
"tabWidth": 2, | ||
"trailingComma": "all", | ||
"plugins": ["prettier-plugin-tailwindcss"] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,7 @@ | ||
{ | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode" | ||
} | ||
"editor.formatOnSave": true, | ||
"editor.defaultFormatter": "esbenp.prettier-vscode", | ||
"files.associations": { | ||
"*.css": "tailwindcss" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.