├── .circleci └── config.yml ├── .devcontainer └── devcontainer.json ├── .dockerignore ├── .env.development.sample ├── .eslintrc.js ├── .gitignore ├── .prettierignore ├── Dockerfile ├── LICENSE.md ├── README.md ├── babel.config.js ├── docker-compose.yml ├── factories ├── generalPage.js └── housingCourtPage.js ├── gatsby-browser.js ├── gatsby-config.js ├── gatsby-node.js ├── jest.config.js ├── netlify.toml ├── package.json ├── plugins └── custom-sass-loader │ ├── gatsby-node.js │ └── package.json ├── rollup.config.js ├── run-textbot.js ├── src ├── assets │ └── img │ │ ├── EFNYC_photo.jpg │ │ ├── Justfix_logo.jpg │ │ ├── RTC_logo.png │ │ ├── RTC_logo_scales.svg │ │ ├── attachments.svg │ │ ├── checkbox.svg │ │ ├── checklist.svg │ │ ├── document.svg │ │ ├── family.svg │ │ ├── favicon.ico │ │ ├── fb_black.svg │ │ ├── fb_white.svg │ │ ├── folder.svg │ │ ├── income.svg │ │ ├── individual.svg │ │ ├── link.svg │ │ ├── location.svg │ │ ├── search.svg │ │ ├── twitter.svg │ │ ├── xTwitter_black.svg │ │ └── xTwitter_white.svg ├── components │ ├── Accordion.js │ ├── AddressSearch.js │ ├── ButtonLink.js │ ├── ButtonStep.tsx │ ├── CommunityGroups.js │ ├── ContentfulClient.js │ ├── Footer.js │ ├── GetInvolved.js │ ├── Header.js │ ├── Modal.js │ ├── NychaSearch.js │ ├── ProvidersCard.js │ ├── ProvidersCarousel.js │ ├── SaveToPhone.js │ ├── SelectLanguage.js │ ├── modals │ │ ├── ModalAreaEligible.js │ │ ├── ModalAreaIneligible.js │ │ ├── ModalIncomeEligible.js │ │ └── ModalIncomeIneligible.js │ └── steps │ │ ├── StepCasetype.js │ │ ├── StepIncome.js │ │ ├── StepIntro.js │ │ ├── StepLocation.js │ │ └── StepNychaLocation.js ├── containers │ ├── AdminHearingPage.js │ ├── CourtPage.js │ ├── LandingPage.js │ └── ScreenerPage.js ├── data │ ├── languages.js │ ├── messages │ │ ├── en-US.js │ │ ├── es.js │ │ ├── fr.js │ │ └── ht.js │ ├── nycha.json │ ├── nycha_bbls.json │ └── zipcodes.js ├── example.test.tsx ├── html.js ├── layouts │ └── index.js ├── pages │ ├── admin-hearings.en-US.js │ ├── admin-hearings.es.js │ ├── admin-hearings.fr.js │ ├── admin-hearings.ht.js │ ├── index.en-US.js │ ├── index.es.js │ ├── index.fr.js │ ├── index.ht.js │ ├── index.js │ ├── questions.en-US.js │ ├── questions.es.js │ ├── questions.fr.js │ └── questions.ht.js ├── serverless-functions │ ├── hello-world.test.ts │ ├── hello-world.ts │ ├── send-to-phone.test.ts │ ├── send-to-phone.ts │ └── textbot.ts ├── styles │ ├── Accordion.scss │ ├── AddressSearch.scss │ ├── CommunityGroups.scss │ ├── Footer.scss │ ├── GetInvolved.scss │ ├── Header.scss │ ├── HousingCourtPage.scss │ ├── LandingPage.scss │ ├── Modal.scss │ ├── ProvidersCard.scss │ ├── ProvidersCarousel.scss │ ├── SaveToPhone.scss │ ├── ScreenerPage.scss │ ├── _button.scss │ ├── _print.scss │ ├── _util.scss │ ├── _vars.scss │ └── main.scss ├── templates │ ├── housingCourtPage.js │ └── page.js ├── textbot │ ├── base-conversation-handlers.ts │ ├── console-io.ts │ ├── conversation.ts │ ├── efnyc │ │ ├── conversation-handlers.tsx │ │ ├── nycha.ts │ │ └── rtc.ts │ ├── parsing.test.ts │ ├── parsing.ts │ ├── run-as-serverless-function.ts │ ├── run-in-console.ts │ ├── sample-rapidpro-textbot-flow.json │ ├── text-type.test.tsx │ └── text-type.ts └── utils │ ├── browser.js │ ├── locales.js │ ├── logic.js │ ├── serverless-testing-util.ts │ ├── serverless-util.ts │ └── text.js ├── tsconfig.json └── yarn.lock /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.env.development.sample: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.env.development.sample -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/.prettierignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | FROM node:10 2 | 3 | RUN npm install gatsby-cli 4 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/babel.config.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /factories/generalPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/factories/generalPage.js -------------------------------------------------------------------------------- /factories/housingCourtPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/factories/housingCourtPage.js -------------------------------------------------------------------------------- /gatsby-browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/gatsby-browser.js -------------------------------------------------------------------------------- /gatsby-config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/gatsby-config.js -------------------------------------------------------------------------------- /gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/gatsby-node.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/jest.config.js -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/package.json -------------------------------------------------------------------------------- /plugins/custom-sass-loader/gatsby-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/plugins/custom-sass-loader/gatsby-node.js -------------------------------------------------------------------------------- /plugins/custom-sass-loader/package.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/rollup.config.js -------------------------------------------------------------------------------- /run-textbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/run-textbot.js -------------------------------------------------------------------------------- /src/assets/img/EFNYC_photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/EFNYC_photo.jpg -------------------------------------------------------------------------------- /src/assets/img/Justfix_logo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/Justfix_logo.jpg -------------------------------------------------------------------------------- /src/assets/img/RTC_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/RTC_logo.png -------------------------------------------------------------------------------- /src/assets/img/RTC_logo_scales.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/RTC_logo_scales.svg -------------------------------------------------------------------------------- /src/assets/img/attachments.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/attachments.svg -------------------------------------------------------------------------------- /src/assets/img/checkbox.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/checkbox.svg -------------------------------------------------------------------------------- /src/assets/img/checklist.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/checklist.svg -------------------------------------------------------------------------------- /src/assets/img/document.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/document.svg -------------------------------------------------------------------------------- /src/assets/img/family.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/family.svg -------------------------------------------------------------------------------- /src/assets/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/favicon.ico -------------------------------------------------------------------------------- /src/assets/img/fb_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/fb_black.svg -------------------------------------------------------------------------------- /src/assets/img/fb_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/fb_white.svg -------------------------------------------------------------------------------- /src/assets/img/folder.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/folder.svg -------------------------------------------------------------------------------- /src/assets/img/income.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/income.svg -------------------------------------------------------------------------------- /src/assets/img/individual.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/individual.svg -------------------------------------------------------------------------------- /src/assets/img/link.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/link.svg -------------------------------------------------------------------------------- /src/assets/img/location.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/location.svg -------------------------------------------------------------------------------- /src/assets/img/search.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/search.svg -------------------------------------------------------------------------------- /src/assets/img/twitter.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/twitter.svg -------------------------------------------------------------------------------- /src/assets/img/xTwitter_black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/xTwitter_black.svg -------------------------------------------------------------------------------- /src/assets/img/xTwitter_white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/assets/img/xTwitter_white.svg -------------------------------------------------------------------------------- /src/components/Accordion.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/Accordion.js -------------------------------------------------------------------------------- /src/components/AddressSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/AddressSearch.js -------------------------------------------------------------------------------- /src/components/ButtonLink.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/ButtonLink.js -------------------------------------------------------------------------------- /src/components/ButtonStep.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/ButtonStep.tsx -------------------------------------------------------------------------------- /src/components/CommunityGroups.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/CommunityGroups.js -------------------------------------------------------------------------------- /src/components/ContentfulClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/ContentfulClient.js -------------------------------------------------------------------------------- /src/components/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/Footer.js -------------------------------------------------------------------------------- /src/components/GetInvolved.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/GetInvolved.js -------------------------------------------------------------------------------- /src/components/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/Header.js -------------------------------------------------------------------------------- /src/components/Modal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/Modal.js -------------------------------------------------------------------------------- /src/components/NychaSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/NychaSearch.js -------------------------------------------------------------------------------- /src/components/ProvidersCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/ProvidersCard.js -------------------------------------------------------------------------------- /src/components/ProvidersCarousel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/ProvidersCarousel.js -------------------------------------------------------------------------------- /src/components/SaveToPhone.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/SaveToPhone.js -------------------------------------------------------------------------------- /src/components/SelectLanguage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/SelectLanguage.js -------------------------------------------------------------------------------- /src/components/modals/ModalAreaEligible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/modals/ModalAreaEligible.js -------------------------------------------------------------------------------- /src/components/modals/ModalAreaIneligible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/modals/ModalAreaIneligible.js -------------------------------------------------------------------------------- /src/components/modals/ModalIncomeEligible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/modals/ModalIncomeEligible.js -------------------------------------------------------------------------------- /src/components/modals/ModalIncomeIneligible.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/modals/ModalIncomeIneligible.js -------------------------------------------------------------------------------- /src/components/steps/StepCasetype.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/steps/StepCasetype.js -------------------------------------------------------------------------------- /src/components/steps/StepIncome.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/steps/StepIncome.js -------------------------------------------------------------------------------- /src/components/steps/StepIntro.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/steps/StepIntro.js -------------------------------------------------------------------------------- /src/components/steps/StepLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/steps/StepLocation.js -------------------------------------------------------------------------------- /src/components/steps/StepNychaLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/components/steps/StepNychaLocation.js -------------------------------------------------------------------------------- /src/containers/AdminHearingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/containers/AdminHearingPage.js -------------------------------------------------------------------------------- /src/containers/CourtPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/containers/CourtPage.js -------------------------------------------------------------------------------- /src/containers/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/containers/LandingPage.js -------------------------------------------------------------------------------- /src/containers/ScreenerPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/containers/ScreenerPage.js -------------------------------------------------------------------------------- /src/data/languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/languages.js -------------------------------------------------------------------------------- /src/data/messages/en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/messages/en-US.js -------------------------------------------------------------------------------- /src/data/messages/es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/messages/es.js -------------------------------------------------------------------------------- /src/data/messages/fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/messages/fr.js -------------------------------------------------------------------------------- /src/data/messages/ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/messages/ht.js -------------------------------------------------------------------------------- /src/data/nycha.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/nycha.json -------------------------------------------------------------------------------- /src/data/nycha_bbls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/nycha_bbls.json -------------------------------------------------------------------------------- /src/data/zipcodes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/data/zipcodes.js -------------------------------------------------------------------------------- /src/example.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/example.test.tsx -------------------------------------------------------------------------------- /src/html.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/html.js -------------------------------------------------------------------------------- /src/layouts/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/layouts/index.js -------------------------------------------------------------------------------- /src/pages/admin-hearings.en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/admin-hearings.en-US.js -------------------------------------------------------------------------------- /src/pages/admin-hearings.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/admin-hearings.es.js -------------------------------------------------------------------------------- /src/pages/admin-hearings.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/admin-hearings.fr.js -------------------------------------------------------------------------------- /src/pages/admin-hearings.ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/admin-hearings.ht.js -------------------------------------------------------------------------------- /src/pages/index.en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/index.en-US.js -------------------------------------------------------------------------------- /src/pages/index.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/index.es.js -------------------------------------------------------------------------------- /src/pages/index.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/index.fr.js -------------------------------------------------------------------------------- /src/pages/index.ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/index.ht.js -------------------------------------------------------------------------------- /src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/index.js -------------------------------------------------------------------------------- /src/pages/questions.en-US.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/questions.en-US.js -------------------------------------------------------------------------------- /src/pages/questions.es.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/questions.es.js -------------------------------------------------------------------------------- /src/pages/questions.fr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/questions.fr.js -------------------------------------------------------------------------------- /src/pages/questions.ht.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/pages/questions.ht.js -------------------------------------------------------------------------------- /src/serverless-functions/hello-world.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/serverless-functions/hello-world.test.ts -------------------------------------------------------------------------------- /src/serverless-functions/hello-world.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/serverless-functions/hello-world.ts -------------------------------------------------------------------------------- /src/serverless-functions/send-to-phone.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/serverless-functions/send-to-phone.test.ts -------------------------------------------------------------------------------- /src/serverless-functions/send-to-phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/serverless-functions/send-to-phone.ts -------------------------------------------------------------------------------- /src/serverless-functions/textbot.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/serverless-functions/textbot.ts -------------------------------------------------------------------------------- /src/styles/Accordion.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/Accordion.scss -------------------------------------------------------------------------------- /src/styles/AddressSearch.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/AddressSearch.scss -------------------------------------------------------------------------------- /src/styles/CommunityGroups.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/CommunityGroups.scss -------------------------------------------------------------------------------- /src/styles/Footer.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/Footer.scss -------------------------------------------------------------------------------- /src/styles/GetInvolved.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/GetInvolved.scss -------------------------------------------------------------------------------- /src/styles/Header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/Header.scss -------------------------------------------------------------------------------- /src/styles/HousingCourtPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/HousingCourtPage.scss -------------------------------------------------------------------------------- /src/styles/LandingPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/LandingPage.scss -------------------------------------------------------------------------------- /src/styles/Modal.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/Modal.scss -------------------------------------------------------------------------------- /src/styles/ProvidersCard.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/ProvidersCard.scss -------------------------------------------------------------------------------- /src/styles/ProvidersCarousel.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/ProvidersCarousel.scss -------------------------------------------------------------------------------- /src/styles/SaveToPhone.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/SaveToPhone.scss -------------------------------------------------------------------------------- /src/styles/ScreenerPage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/ScreenerPage.scss -------------------------------------------------------------------------------- /src/styles/_button.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/_button.scss -------------------------------------------------------------------------------- /src/styles/_print.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/_print.scss -------------------------------------------------------------------------------- /src/styles/_util.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/_util.scss -------------------------------------------------------------------------------- /src/styles/_vars.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/_vars.scss -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/styles/main.scss -------------------------------------------------------------------------------- /src/templates/housingCourtPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/templates/housingCourtPage.js -------------------------------------------------------------------------------- /src/templates/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/templates/page.js -------------------------------------------------------------------------------- /src/textbot/base-conversation-handlers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/base-conversation-handlers.ts -------------------------------------------------------------------------------- /src/textbot/console-io.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/console-io.ts -------------------------------------------------------------------------------- /src/textbot/conversation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/conversation.ts -------------------------------------------------------------------------------- /src/textbot/efnyc/conversation-handlers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/efnyc/conversation-handlers.tsx -------------------------------------------------------------------------------- /src/textbot/efnyc/nycha.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/efnyc/nycha.ts -------------------------------------------------------------------------------- /src/textbot/efnyc/rtc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/efnyc/rtc.ts -------------------------------------------------------------------------------- /src/textbot/parsing.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/parsing.test.ts -------------------------------------------------------------------------------- /src/textbot/parsing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/parsing.ts -------------------------------------------------------------------------------- /src/textbot/run-as-serverless-function.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/run-as-serverless-function.ts -------------------------------------------------------------------------------- /src/textbot/run-in-console.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/run-in-console.ts -------------------------------------------------------------------------------- /src/textbot/sample-rapidpro-textbot-flow.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/sample-rapidpro-textbot-flow.json -------------------------------------------------------------------------------- /src/textbot/text-type.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/text-type.test.tsx -------------------------------------------------------------------------------- /src/textbot/text-type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/textbot/text-type.ts -------------------------------------------------------------------------------- /src/utils/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/browser.js -------------------------------------------------------------------------------- /src/utils/locales.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/locales.js -------------------------------------------------------------------------------- /src/utils/logic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/logic.js -------------------------------------------------------------------------------- /src/utils/serverless-testing-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/serverless-testing-util.ts -------------------------------------------------------------------------------- /src/utils/serverless-util.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/serverless-util.ts -------------------------------------------------------------------------------- /src/utils/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/src/utils/text.js -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JustFixNYC/eviction-free-nyc/HEAD/yarn.lock --------------------------------------------------------------------------------