├── .gitignore ├── .storybook ├── addons.js └── config.js ├── README.md ├── bin └── generate_config.js ├── database-rules.json ├── firebase.json ├── firestore.indexes.json ├── firestore.rules ├── functions ├── detailView.js ├── index.js ├── index.template.html ├── package-lock.json ├── package.json └── userView.js ├── gulpfile.js ├── images ├── firebase-logo.png └── profile_placeholder.png ├── manifest.json ├── manifest.webapp ├── package.json ├── public ├── 404.html ├── ServiceWorker.js ├── detailView.hbs ├── firebase-messaging-sw.js ├── gulpfile.js ├── images │ ├── Dennis1.jpg │ ├── Dennis10.jpg │ ├── Dennis11.jpg │ ├── Dennis12.jpg │ ├── Dennis2.jpg │ ├── Dennis3.jpg │ ├── Dennis4.jpg │ ├── Dennis5.jpg │ ├── Dennis6.jpg │ ├── Dennis7.jpg │ ├── Dennis8.jpg │ ├── Dennis9.jpg │ ├── InkedsmallPost_LI.jpg │ ├── SquareLogo.png │ ├── favicon.ico │ ├── firebase-logo.png │ ├── fromPeak.jpg │ ├── icon.png │ ├── profile_placeholder.png │ ├── secret.png │ ├── smallPost.png │ ├── ssp.jpg │ ├── trophy-clipart-5.png │ ├── trophy-emoji-png-1.png │ ├── trophy-emoji-png-4.png │ ├── trophy-emoji-png-6.png │ ├── trophy-emoji-png.png │ ├── 我地市正Logo-01.png │ └── 我地市正Logo-02.png ├── index.html ├── manifest.json ├── package-lock.json ├── package.json ├── styles │ ├── dialog.scss │ ├── header.scss │ ├── homepage.scss │ ├── main.css │ ├── main.min.css │ ├── main.scss │ ├── message.scss │ └── mixin.scss └── userView.hbs ├── sample └── sampledb.zip ├── src ├── AboutDialog.js ├── App.js ├── BookmarkViewSSR.js ├── ChipArray.js ├── CustomizedSnackbars.js ├── Drawer.js ├── EventListDialog.js ├── FavoriteButton.js ├── FilterBar.js ├── FocusMessage.js ├── GeoLocationString.js ├── GlobalDB.js ├── Header.js ├── ImageResizer.js ├── IntegrationReactSelect.js ├── LeaderBoard.js ├── Location.js ├── LocationButton.js ├── LocationDrawer.js ├── Main.js ├── MessageAction.js ├── MessageDB.js ├── MessageDetailView.js ├── MessageDetailViewImage.js ├── MessageDialog.js ├── MessageDialogSSR.js ├── MessageList.js ├── MessageView.js ├── NearbyEventDialog.js ├── NotificationsDialog.js ├── ParseDateButton.js ├── ParseLocationButton.js ├── ParseTimeButton.js ├── Person.js ├── PostMessage.js ├── PostMessageView.js ├── ProgressiveCardImg.js ├── PublicProfile.js ├── PublicProfileSSR.js ├── REventMap.js ├── Ranking.js ├── RegionEventDialog.js ├── SearchEventDialog.js ├── SelectedMenu.js ├── ShareDrawer.js ├── SignInButton.js ├── SignOutButton.js ├── SingleLineMessageList.js ├── SortingDrawer.js ├── Suggestions.js ├── Tag.js ├── TagDrawer.js ├── TimeString.js ├── UploadImageButton.js ├── UserProfile.js ├── UserProfileView.js ├── actions.js ├── actions │ └── types.js ├── address │ ├── AddressDialog.js │ ├── AddressList.js │ └── AddressView.js ├── admin │ ├── FocusDialog.js │ ├── FocusList.js │ ├── FocusToggleButton.js │ ├── FocusView.js │ └── UserList.js ├── bookmark │ ├── BookmarkBoard.js │ ├── BookmarkList.js │ ├── BookmarkToggleButton.js │ └── BookmarkView.js ├── comment │ ├── CommentList.js │ ├── CommentView.js │ └── PostCommentView.js ├── config │ └── default.js ├── index.js ├── mission │ └── MissionView.js ├── polling │ ├── PollingDialog.js │ ├── PollingResultView.js │ └── PollingView.js ├── reducers.js ├── service │ └── PollingDB.js ├── stories │ └── index.js ├── track.js └── util │ ├── Distance.js │ ├── http.js │ ├── messageParser.js │ └── stringHandling.js └── storage.rules /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/README.md -------------------------------------------------------------------------------- /bin/generate_config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/bin/generate_config.js -------------------------------------------------------------------------------- /database-rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/database-rules.json -------------------------------------------------------------------------------- /firebase.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/firebase.json -------------------------------------------------------------------------------- /firestore.indexes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/firestore.indexes.json -------------------------------------------------------------------------------- /firestore.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/firestore.rules -------------------------------------------------------------------------------- /functions/detailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/detailView.js -------------------------------------------------------------------------------- /functions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/index.js -------------------------------------------------------------------------------- /functions/index.template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/index.template.html -------------------------------------------------------------------------------- /functions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/package-lock.json -------------------------------------------------------------------------------- /functions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/package.json -------------------------------------------------------------------------------- /functions/userView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/functions/userView.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/gulpfile.js -------------------------------------------------------------------------------- /images/firebase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/images/firebase-logo.png -------------------------------------------------------------------------------- /images/profile_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/images/profile_placeholder.png -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/manifest.json -------------------------------------------------------------------------------- /manifest.webapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/manifest.webapp -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/package.json -------------------------------------------------------------------------------- /public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/404.html -------------------------------------------------------------------------------- /public/ServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/ServiceWorker.js -------------------------------------------------------------------------------- /public/detailView.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/detailView.hbs -------------------------------------------------------------------------------- /public/firebase-messaging-sw.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/firebase-messaging-sw.js -------------------------------------------------------------------------------- /public/gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/gulpfile.js -------------------------------------------------------------------------------- /public/images/Dennis1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis1.jpg -------------------------------------------------------------------------------- /public/images/Dennis10.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis10.jpg -------------------------------------------------------------------------------- /public/images/Dennis11.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis11.jpg -------------------------------------------------------------------------------- /public/images/Dennis12.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis12.jpg -------------------------------------------------------------------------------- /public/images/Dennis2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis2.jpg -------------------------------------------------------------------------------- /public/images/Dennis3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis3.jpg -------------------------------------------------------------------------------- /public/images/Dennis4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis4.jpg -------------------------------------------------------------------------------- /public/images/Dennis5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis5.jpg -------------------------------------------------------------------------------- /public/images/Dennis6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis6.jpg -------------------------------------------------------------------------------- /public/images/Dennis7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis7.jpg -------------------------------------------------------------------------------- /public/images/Dennis8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis8.jpg -------------------------------------------------------------------------------- /public/images/Dennis9.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/Dennis9.jpg -------------------------------------------------------------------------------- /public/images/InkedsmallPost_LI.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/InkedsmallPost_LI.jpg -------------------------------------------------------------------------------- /public/images/SquareLogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/SquareLogo.png -------------------------------------------------------------------------------- /public/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/favicon.ico -------------------------------------------------------------------------------- /public/images/firebase-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/firebase-logo.png -------------------------------------------------------------------------------- /public/images/fromPeak.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/fromPeak.jpg -------------------------------------------------------------------------------- /public/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/icon.png -------------------------------------------------------------------------------- /public/images/profile_placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/profile_placeholder.png -------------------------------------------------------------------------------- /public/images/secret.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/secret.png -------------------------------------------------------------------------------- /public/images/smallPost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/smallPost.png -------------------------------------------------------------------------------- /public/images/ssp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/ssp.jpg -------------------------------------------------------------------------------- /public/images/trophy-clipart-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/trophy-clipart-5.png -------------------------------------------------------------------------------- /public/images/trophy-emoji-png-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/trophy-emoji-png-1.png -------------------------------------------------------------------------------- /public/images/trophy-emoji-png-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/trophy-emoji-png-4.png -------------------------------------------------------------------------------- /public/images/trophy-emoji-png-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/trophy-emoji-png-6.png -------------------------------------------------------------------------------- /public/images/trophy-emoji-png.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/trophy-emoji-png.png -------------------------------------------------------------------------------- /public/images/我地市正Logo-01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/我地市正Logo-01.png -------------------------------------------------------------------------------- /public/images/我地市正Logo-02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/images/我地市正Logo-02.png -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/index.html -------------------------------------------------------------------------------- /public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/manifest.json -------------------------------------------------------------------------------- /public/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/package-lock.json -------------------------------------------------------------------------------- /public/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/package.json -------------------------------------------------------------------------------- /public/styles/dialog.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/dialog.scss -------------------------------------------------------------------------------- /public/styles/header.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/header.scss -------------------------------------------------------------------------------- /public/styles/homepage.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/homepage.scss -------------------------------------------------------------------------------- /public/styles/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/main.css -------------------------------------------------------------------------------- /public/styles/main.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/main.min.css -------------------------------------------------------------------------------- /public/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/main.scss -------------------------------------------------------------------------------- /public/styles/message.scss: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /public/styles/mixin.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/styles/mixin.scss -------------------------------------------------------------------------------- /public/userView.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/public/userView.hbs -------------------------------------------------------------------------------- /sample/sampledb.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/sample/sampledb.zip -------------------------------------------------------------------------------- /src/AboutDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/AboutDialog.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/App.js -------------------------------------------------------------------------------- /src/BookmarkViewSSR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/BookmarkViewSSR.js -------------------------------------------------------------------------------- /src/ChipArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ChipArray.js -------------------------------------------------------------------------------- /src/CustomizedSnackbars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/CustomizedSnackbars.js -------------------------------------------------------------------------------- /src/Drawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Drawer.js -------------------------------------------------------------------------------- /src/EventListDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/EventListDialog.js -------------------------------------------------------------------------------- /src/FavoriteButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/FavoriteButton.js -------------------------------------------------------------------------------- /src/FilterBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/FilterBar.js -------------------------------------------------------------------------------- /src/FocusMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/FocusMessage.js -------------------------------------------------------------------------------- /src/GeoLocationString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/GeoLocationString.js -------------------------------------------------------------------------------- /src/GlobalDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/GlobalDB.js -------------------------------------------------------------------------------- /src/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Header.js -------------------------------------------------------------------------------- /src/ImageResizer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ImageResizer.js -------------------------------------------------------------------------------- /src/IntegrationReactSelect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/IntegrationReactSelect.js -------------------------------------------------------------------------------- /src/LeaderBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/LeaderBoard.js -------------------------------------------------------------------------------- /src/Location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Location.js -------------------------------------------------------------------------------- /src/LocationButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/LocationButton.js -------------------------------------------------------------------------------- /src/LocationDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/LocationDrawer.js -------------------------------------------------------------------------------- /src/Main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Main.js -------------------------------------------------------------------------------- /src/MessageAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageAction.js -------------------------------------------------------------------------------- /src/MessageDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageDB.js -------------------------------------------------------------------------------- /src/MessageDetailView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageDetailView.js -------------------------------------------------------------------------------- /src/MessageDetailViewImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageDetailViewImage.js -------------------------------------------------------------------------------- /src/MessageDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageDialog.js -------------------------------------------------------------------------------- /src/MessageDialogSSR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageDialogSSR.js -------------------------------------------------------------------------------- /src/MessageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageList.js -------------------------------------------------------------------------------- /src/MessageView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/MessageView.js -------------------------------------------------------------------------------- /src/NearbyEventDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/NearbyEventDialog.js -------------------------------------------------------------------------------- /src/NotificationsDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/NotificationsDialog.js -------------------------------------------------------------------------------- /src/ParseDateButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ParseDateButton.js -------------------------------------------------------------------------------- /src/ParseLocationButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ParseLocationButton.js -------------------------------------------------------------------------------- /src/ParseTimeButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ParseTimeButton.js -------------------------------------------------------------------------------- /src/Person.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Person.js -------------------------------------------------------------------------------- /src/PostMessage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/PostMessage.js -------------------------------------------------------------------------------- /src/PostMessageView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/PostMessageView.js -------------------------------------------------------------------------------- /src/ProgressiveCardImg.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ProgressiveCardImg.js -------------------------------------------------------------------------------- /src/PublicProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/PublicProfile.js -------------------------------------------------------------------------------- /src/PublicProfileSSR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/PublicProfileSSR.js -------------------------------------------------------------------------------- /src/REventMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/REventMap.js -------------------------------------------------------------------------------- /src/Ranking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Ranking.js -------------------------------------------------------------------------------- /src/RegionEventDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/RegionEventDialog.js -------------------------------------------------------------------------------- /src/SearchEventDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SearchEventDialog.js -------------------------------------------------------------------------------- /src/SelectedMenu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SelectedMenu.js -------------------------------------------------------------------------------- /src/ShareDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/ShareDrawer.js -------------------------------------------------------------------------------- /src/SignInButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SignInButton.js -------------------------------------------------------------------------------- /src/SignOutButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SignOutButton.js -------------------------------------------------------------------------------- /src/SingleLineMessageList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SingleLineMessageList.js -------------------------------------------------------------------------------- /src/SortingDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/SortingDrawer.js -------------------------------------------------------------------------------- /src/Suggestions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Suggestions.js -------------------------------------------------------------------------------- /src/Tag.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/Tag.js -------------------------------------------------------------------------------- /src/TagDrawer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/TagDrawer.js -------------------------------------------------------------------------------- /src/TimeString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/TimeString.js -------------------------------------------------------------------------------- /src/UploadImageButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/UploadImageButton.js -------------------------------------------------------------------------------- /src/UserProfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/UserProfile.js -------------------------------------------------------------------------------- /src/UserProfileView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/UserProfileView.js -------------------------------------------------------------------------------- /src/actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/actions.js -------------------------------------------------------------------------------- /src/actions/types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/actions/types.js -------------------------------------------------------------------------------- /src/address/AddressDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/address/AddressDialog.js -------------------------------------------------------------------------------- /src/address/AddressList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/address/AddressList.js -------------------------------------------------------------------------------- /src/address/AddressView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/address/AddressView.js -------------------------------------------------------------------------------- /src/admin/FocusDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/admin/FocusDialog.js -------------------------------------------------------------------------------- /src/admin/FocusList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/admin/FocusList.js -------------------------------------------------------------------------------- /src/admin/FocusToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/admin/FocusToggleButton.js -------------------------------------------------------------------------------- /src/admin/FocusView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/admin/FocusView.js -------------------------------------------------------------------------------- /src/admin/UserList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/admin/UserList.js -------------------------------------------------------------------------------- /src/bookmark/BookmarkBoard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/bookmark/BookmarkBoard.js -------------------------------------------------------------------------------- /src/bookmark/BookmarkList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/bookmark/BookmarkList.js -------------------------------------------------------------------------------- /src/bookmark/BookmarkToggleButton.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/bookmark/BookmarkToggleButton.js -------------------------------------------------------------------------------- /src/bookmark/BookmarkView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/bookmark/BookmarkView.js -------------------------------------------------------------------------------- /src/comment/CommentList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/comment/CommentList.js -------------------------------------------------------------------------------- /src/comment/CommentView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/comment/CommentView.js -------------------------------------------------------------------------------- /src/comment/PostCommentView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/comment/PostCommentView.js -------------------------------------------------------------------------------- /src/config/default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/config/default.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/index.js -------------------------------------------------------------------------------- /src/mission/MissionView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/mission/MissionView.js -------------------------------------------------------------------------------- /src/polling/PollingDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/polling/PollingDialog.js -------------------------------------------------------------------------------- /src/polling/PollingResultView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/polling/PollingResultView.js -------------------------------------------------------------------------------- /src/polling/PollingView.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/polling/PollingView.js -------------------------------------------------------------------------------- /src/reducers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/reducers.js -------------------------------------------------------------------------------- /src/service/PollingDB.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/service/PollingDB.js -------------------------------------------------------------------------------- /src/stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/stories/index.js -------------------------------------------------------------------------------- /src/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/track.js -------------------------------------------------------------------------------- /src/util/Distance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/util/Distance.js -------------------------------------------------------------------------------- /src/util/http.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/util/http.js -------------------------------------------------------------------------------- /src/util/messageParser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/util/messageParser.js -------------------------------------------------------------------------------- /src/util/stringHandling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/src/util/stringHandling.js -------------------------------------------------------------------------------- /storage.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OurLandHK/WebApp/HEAD/storage.rules --------------------------------------------------------------------------------