├── public ├── BetaIcon.jpg ├── favicon.ico ├── logo192.png ├── logo512.png ├── robots.txt ├── BetaKnesset.jpg ├── manifest.json └── index.html ├── src ├── static │ └── images │ │ ├── Or.jpg │ │ ├── Omer.jpg │ │ ├── Yoav.jpg │ │ ├── Shani.jpg │ │ └── BetaKnesset.jpg ├── setupTests.js ├── pages │ ├── FrameApp.js │ ├── Main │ │ ├── index.js │ │ ├── Search │ │ │ ├── index.js │ │ │ ├── Histogram.js │ │ │ └── Bubble │ │ │ │ └── index.js │ │ ├── index.css │ │ └── PersonProfile │ │ │ ├── PersonQuotes.js │ │ │ ├── index.css │ │ │ ├── PersonBillsStats │ │ │ └── index.js │ │ │ ├── PersonBills │ │ │ └── index.js │ │ │ └── index.js │ ├── Calendar │ │ ├── index.css │ │ └── index.js │ ├── Quotes.js │ └── Document │ │ └── index.js ├── event-utils.js ├── reportWebVitals.js ├── index.js ├── config.json ├── defaultTopics.json ├── theme.js ├── index.css ├── components │ ├── Explainer.js │ ├── ShareButtons.js │ ├── Dialog.js │ ├── DocumentLink.js │ ├── ChatLoader │ │ ├── index.css │ │ └── index.js │ ├── QuoteFooter.js │ ├── QuotesLoader │ │ ├── quotes.json │ │ └── index.js │ ├── NavigationBar │ │ ├── Disclaimer.js │ │ ├── About.js │ │ ├── ContactUs.js │ │ └── index.js │ ├── ScrollableView │ │ └── index.js │ ├── Chat │ │ ├── index.js │ │ └── index.css │ ├── PersonSearch.js │ ├── WordCloud │ │ └── index.js │ └── QuotesSearch.js ├── particles.config.json ├── logo.svg ├── App.js └── utils.js ├── README.md ├── package.json └── .gitignore /public/BetaIcon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/public/BetaIcon.jpg -------------------------------------------------------------------------------- /public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/public/favicon.ico -------------------------------------------------------------------------------- /public/logo192.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/public/logo192.png -------------------------------------------------------------------------------- /public/logo512.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/public/logo512.png -------------------------------------------------------------------------------- /public/robots.txt: -------------------------------------------------------------------------------- 1 | # https://www.robotstxt.org/robotstxt.html 2 | User-agent: * 3 | Disallow: 4 | -------------------------------------------------------------------------------- /public/BetaKnesset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/public/BetaKnesset.jpg -------------------------------------------------------------------------------- /src/static/images/Or.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/src/static/images/Or.jpg -------------------------------------------------------------------------------- /src/static/images/Omer.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/src/static/images/Omer.jpg -------------------------------------------------------------------------------- /src/static/images/Yoav.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/src/static/images/Yoav.jpg -------------------------------------------------------------------------------- /src/static/images/Shani.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/src/static/images/Shani.jpg -------------------------------------------------------------------------------- /src/static/images/BetaKnesset.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SgtTepper/BetaKnessetWeb/HEAD/src/static/images/BetaKnesset.jpg -------------------------------------------------------------------------------- /src/setupTests.js: -------------------------------------------------------------------------------- 1 | // jest-dom adds custom jest matchers for asserting on DOM nodes. 2 | // allows you to do things like: 3 | // expect(element).toHaveTextContent(/react/i) 4 | // learn more: https://github.com/testing-library/jest-dom 5 | import "@testing-library/jest-dom"; 6 | -------------------------------------------------------------------------------- /src/pages/FrameApp.js: -------------------------------------------------------------------------------- 1 | import React from "react"; 2 | 3 | import { ScrollPage } from "../components/ScrollableView"; 4 | 5 | const FrameApp = React.memo(function ({ url, title }) { 6 | return ( 7 | 8 |