├── .babelrc ├── LICENSE.md ├── README.md ├── __init__.py ├── admin.py ├── apps.py ├── models.py ├── package.json ├── src ├── components │ ├── AppContext.js │ ├── BlockContextMenu.js │ ├── BlockEditorSlate.js │ ├── CapturedContentASResult.js │ ├── CardContextMenu.js │ ├── ClickHandler.js │ ├── CollectionResults.js │ ├── CollectionSection.js │ ├── CollectionsDropdown.js │ ├── ContentASDropdown.js │ ├── CustomCollectionResults.js │ ├── DateElement.js │ ├── EditorContextMenu.js │ ├── ExplorerPage.tsx │ ├── FieldsForm.js │ ├── HeaderSection.js │ ├── HomePage.js │ ├── IconMenu.js │ ├── LeftPaneSlim.js │ ├── LinkDropdown.js │ ├── LinkElement.js │ ├── ListItemAction.js │ ├── MainApp │ │ └── App.tsx │ ├── MentionDropdown.js │ ├── NewNodeDropdown.js │ ├── PageTabContent.js │ ├── PageTabs.js │ ├── RelatedSectionCard.js │ ├── ResultFilters.js │ ├── SpaceASResult.js │ ├── SpaceModal.tsx │ ├── SpaceOverviewSection.js │ ├── SpacePage.js │ ├── SuggestionCard.js │ ├── SuggestionsSection.js │ ├── TopBar.js │ └── Utils │ │ └── IRuminWindow.ts ├── index.tsx └── utils │ ├── date_utils.js │ └── params_utils.js ├── static └── frontend │ ├── Block.css │ ├── main.js │ ├── main.js.LICENSE.txt │ ├── main2.js │ ├── main_dev.js │ ├── react-datepicker.css │ └── style.css ├── templates └── frontend │ ├── about_validate.html │ ├── activity_detail.html │ ├── coding_lookup_article.html │ ├── coding_utility.html │ ├── coding_utility_header.html │ ├── demo_collection_block.html │ ├── demo_graph.html │ ├── demo_grid_board.html │ ├── demo_log.html │ ├── demo_log_list.html │ ├── demo_mood_board.html │ ├── demo_writer.html │ ├── explorer.html │ ├── index.html │ ├── ka_article.html │ ├── ka_articles.html │ ├── ka_articles_data.html │ ├── ka_future_of_search.html │ ├── ka_header.html │ ├── ka_more_articles.html │ ├── ka_share.html │ ├── knowledge_artist.html │ ├── new_short_link.html │ ├── space_detail.html │ ├── vaas_header.html │ └── validate_aas.html ├── tests.py ├── tsconfig.json ├── urls.py ├── views.py ├── webpack.common.js ├── webpack.config.js ├── webpack.dev.js └── webpack.prod.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/.babelrc -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/README.md -------------------------------------------------------------------------------- /__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/admin.py -------------------------------------------------------------------------------- /apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/apps.py -------------------------------------------------------------------------------- /models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/models.py -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/package.json -------------------------------------------------------------------------------- /src/components/AppContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/AppContext.js -------------------------------------------------------------------------------- /src/components/BlockContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/BlockContextMenu.js -------------------------------------------------------------------------------- /src/components/BlockEditorSlate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/BlockEditorSlate.js -------------------------------------------------------------------------------- /src/components/CapturedContentASResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CapturedContentASResult.js -------------------------------------------------------------------------------- /src/components/CardContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CardContextMenu.js -------------------------------------------------------------------------------- /src/components/ClickHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/ClickHandler.js -------------------------------------------------------------------------------- /src/components/CollectionResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CollectionResults.js -------------------------------------------------------------------------------- /src/components/CollectionSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CollectionSection.js -------------------------------------------------------------------------------- /src/components/CollectionsDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CollectionsDropdown.js -------------------------------------------------------------------------------- /src/components/ContentASDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/ContentASDropdown.js -------------------------------------------------------------------------------- /src/components/CustomCollectionResults.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/CustomCollectionResults.js -------------------------------------------------------------------------------- /src/components/DateElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/DateElement.js -------------------------------------------------------------------------------- /src/components/EditorContextMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/EditorContextMenu.js -------------------------------------------------------------------------------- /src/components/ExplorerPage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/ExplorerPage.tsx -------------------------------------------------------------------------------- /src/components/FieldsForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/FieldsForm.js -------------------------------------------------------------------------------- /src/components/HeaderSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/HeaderSection.js -------------------------------------------------------------------------------- /src/components/HomePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/HomePage.js -------------------------------------------------------------------------------- /src/components/IconMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/IconMenu.js -------------------------------------------------------------------------------- /src/components/LeftPaneSlim.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/LeftPaneSlim.js -------------------------------------------------------------------------------- /src/components/LinkDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/LinkDropdown.js -------------------------------------------------------------------------------- /src/components/LinkElement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/LinkElement.js -------------------------------------------------------------------------------- /src/components/ListItemAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/ListItemAction.js -------------------------------------------------------------------------------- /src/components/MainApp/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/MainApp/App.tsx -------------------------------------------------------------------------------- /src/components/MentionDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/MentionDropdown.js -------------------------------------------------------------------------------- /src/components/NewNodeDropdown.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/NewNodeDropdown.js -------------------------------------------------------------------------------- /src/components/PageTabContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/PageTabContent.js -------------------------------------------------------------------------------- /src/components/PageTabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/PageTabs.js -------------------------------------------------------------------------------- /src/components/RelatedSectionCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/RelatedSectionCard.js -------------------------------------------------------------------------------- /src/components/ResultFilters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/ResultFilters.js -------------------------------------------------------------------------------- /src/components/SpaceASResult.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SpaceASResult.js -------------------------------------------------------------------------------- /src/components/SpaceModal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SpaceModal.tsx -------------------------------------------------------------------------------- /src/components/SpaceOverviewSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SpaceOverviewSection.js -------------------------------------------------------------------------------- /src/components/SpacePage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SpacePage.js -------------------------------------------------------------------------------- /src/components/SuggestionCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SuggestionCard.js -------------------------------------------------------------------------------- /src/components/SuggestionsSection.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/SuggestionsSection.js -------------------------------------------------------------------------------- /src/components/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/TopBar.js -------------------------------------------------------------------------------- /src/components/Utils/IRuminWindow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/components/Utils/IRuminWindow.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/utils/date_utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/src/utils/date_utils.js -------------------------------------------------------------------------------- /src/utils/params_utils.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static/frontend/Block.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/Block.css -------------------------------------------------------------------------------- /static/frontend/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/main.js -------------------------------------------------------------------------------- /static/frontend/main.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/main.js.LICENSE.txt -------------------------------------------------------------------------------- /static/frontend/main2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/main2.js -------------------------------------------------------------------------------- /static/frontend/main_dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/main_dev.js -------------------------------------------------------------------------------- /static/frontend/react-datepicker.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/react-datepicker.css -------------------------------------------------------------------------------- /static/frontend/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/static/frontend/style.css -------------------------------------------------------------------------------- /templates/frontend/about_validate.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/about_validate.html -------------------------------------------------------------------------------- /templates/frontend/activity_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/activity_detail.html -------------------------------------------------------------------------------- /templates/frontend/coding_lookup_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/coding_lookup_article.html -------------------------------------------------------------------------------- /templates/frontend/coding_utility.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/coding_utility.html -------------------------------------------------------------------------------- /templates/frontend/coding_utility_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/coding_utility_header.html -------------------------------------------------------------------------------- /templates/frontend/demo_collection_block.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_collection_block.html -------------------------------------------------------------------------------- /templates/frontend/demo_graph.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_graph.html -------------------------------------------------------------------------------- /templates/frontend/demo_grid_board.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_grid_board.html -------------------------------------------------------------------------------- /templates/frontend/demo_log.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_log.html -------------------------------------------------------------------------------- /templates/frontend/demo_log_list.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_log_list.html -------------------------------------------------------------------------------- /templates/frontend/demo_mood_board.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_mood_board.html -------------------------------------------------------------------------------- /templates/frontend/demo_writer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/demo_writer.html -------------------------------------------------------------------------------- /templates/frontend/explorer.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/explorer.html -------------------------------------------------------------------------------- /templates/frontend/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/index.html -------------------------------------------------------------------------------- /templates/frontend/ka_article.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_article.html -------------------------------------------------------------------------------- /templates/frontend/ka_articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_articles.html -------------------------------------------------------------------------------- /templates/frontend/ka_articles_data.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_articles_data.html -------------------------------------------------------------------------------- /templates/frontend/ka_future_of_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_future_of_search.html -------------------------------------------------------------------------------- /templates/frontend/ka_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_header.html -------------------------------------------------------------------------------- /templates/frontend/ka_more_articles.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_more_articles.html -------------------------------------------------------------------------------- /templates/frontend/ka_share.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/ka_share.html -------------------------------------------------------------------------------- /templates/frontend/knowledge_artist.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/knowledge_artist.html -------------------------------------------------------------------------------- /templates/frontend/new_short_link.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/new_short_link.html -------------------------------------------------------------------------------- /templates/frontend/space_detail.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/space_detail.html -------------------------------------------------------------------------------- /templates/frontend/vaas_header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/vaas_header.html -------------------------------------------------------------------------------- /templates/frontend/validate_aas.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/templates/frontend/validate_aas.html -------------------------------------------------------------------------------- /tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/tests.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/tsconfig.json -------------------------------------------------------------------------------- /urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/urls.py -------------------------------------------------------------------------------- /views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/views.py -------------------------------------------------------------------------------- /webpack.common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/webpack.common.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/webpack.config.js -------------------------------------------------------------------------------- /webpack.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/webpack.dev.js -------------------------------------------------------------------------------- /webpack.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LayBacc/rumin-frontend/HEAD/webpack.prod.js --------------------------------------------------------------------------------