├── .gitignore ├── .nvmrc ├── CHANGELOG ├── LICENSE ├── README.md ├── code-templates └── ConfigProvider.js ├── config ├── env.js ├── jest │ ├── CSSStub.js │ └── FileStub.js ├── paths.js ├── polyfills.js ├── webpack.config.dev.js └── webpack.config.prod.js ├── deploy.sh ├── deployments └── test-deployment.sh ├── gulpfile.js ├── package.json ├── public ├── favicon.png ├── images │ ├── avatar.png │ ├── category-default-img.jpeg │ └── get-started-slogans.jpg └── index.html ├── scripts ├── build.js ├── start.js └── test.js └── src ├── Admin ├── Admin.js ├── Analytics.js ├── Basics.js ├── Categories.js ├── Components │ ├── CodeEditor.js │ ├── ConfigEdit.js │ ├── LabelEdit.js │ └── WYSIWYGEditor.js ├── CustomPages.js ├── CustomScripts.js ├── Design.js ├── Filters.js ├── GetStarted.js ├── Labels.js ├── LandingPage.js ├── Listing.js ├── Listings.js ├── NewPost.js ├── Orders.js ├── Overview.js ├── Payments.js ├── PostEdit.js ├── Posts.js ├── Pricing.js ├── Registration.js ├── Requests.js ├── SEO.js ├── SubscriptionPlan.js ├── User.js ├── UserConfig.js ├── UserTypes.js └── Users.js ├── App.css ├── App.js ├── App.test.js ├── AppRoutes.js ├── Chat.css ├── Components ├── Address.js ├── Bookings.js ├── DashboardViewTypeChoice.js ├── EditableEntity.js ├── EditableSkill.js ├── EditableText.js ├── FileUploader.js ├── HtmlTextField.js ├── ImageUploader.js ├── ListingHeader.js ├── ListingInProgress.js ├── Loader.js ├── Login.js ├── LoginSignup.js ├── ObjectDialog.js ├── OfferViewTypeChoice.js ├── PaymentConnectors │ ├── Stripe.js │ └── StripeCheckout.js ├── ProfileImage.js ├── RequestDialog.js ├── RequestListItem.js ├── Requests.js ├── Signup.js ├── TaskCard.js ├── TaskComments.js ├── TaskListItem.js ├── TaskMap.js ├── USER_TYPES.js └── ViewTypeChoice.js ├── NewListing ├── NewListing.js ├── NewListingBasics.js ├── NewListingCategory.js ├── NewListingDate.js ├── NewListingDuration.js ├── NewListingImages.js ├── NewListingLocation.js ├── NewListingPricing.js ├── NewListingQuantity.js └── NewListingReview.js ├── Pages ├── Account.js ├── Account │ └── EmailSettings.js ├── BookRequest.js ├── BookingCompleted.js ├── BrowseListings.js ├── ChangePasswordPage.js ├── Chat.js ├── ChatRoom.js ├── Dashboard.js ├── EmailNotVerified.js ├── Imprint.js ├── LoginPage.js ├── MyListings.js ├── NotFound.js ├── Post.js ├── PostPrivacyPolicy.js ├── PostTermsOfService.js ├── PremiumPage.js ├── Profile.js ├── ProfileEdit.js ├── Review.js ├── SignupPage.js ├── Task.js ├── TaskEdit.js ├── UserDocuments.js ├── UserPreferences.js └── UserVerifications.js ├── Partials ├── Footer.js ├── Header.js ├── Logo.js └── TaskCategories.js ├── Task └── ImageUpload.js ├── api ├── admin.js ├── auth.js ├── billing-address.js ├── category.js ├── chat.js ├── config.js ├── dashboard.js ├── media.js ├── message.js ├── order.js ├── orderActions.js ├── payment.js ├── post.js ├── request.js ├── requestOrder.js ├── review.js ├── skills.js ├── subscription.js ├── task-category.js ├── task-comment.js ├── task-image.js ├── task-location.js ├── task-timing.js ├── task.js ├── user-preference.js ├── user-property.js ├── user.js └── vq-services.js ├── constants ├── COUNTRIES.js ├── DEFAULTS.js ├── FILTER_DEFAULTS.js ├── LABELS.js ├── LANGUAGES.js ├── ORDER_STATUS.js ├── REQUEST_STATUS.js ├── TASK_CATEGORY_STATUS.js ├── TASK_STATUS.js ├── TASK_TYPES.js ├── USER_STATUS.js ├── USER_TYPES.js └── VIEW_TYPES.js ├── core ├── auth.js ├── categories.js ├── communication.js ├── config.js ├── error-handler.js ├── format.js ├── i18n.js ├── media.js ├── navigation.js ├── pricing-model-provider.js ├── rest-resource-factory.js ├── style.js ├── tracking.js ├── user-mode.js └── util.js ├── helpers ├── add-payment-method.js ├── confirm-before-action.js ├── create-listing.js ├── display-message.js ├── display-object.js ├── display-task-timing.js ├── get-user-property.js ├── i18n-helpers.js ├── open-message-dialog.js ├── open-requests-dialog.js └── user-checks.js └── index.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.3.0 2 | -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/CHANGELOG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/README.md -------------------------------------------------------------------------------- /code-templates/ConfigProvider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/code-templates/ConfigProvider.js -------------------------------------------------------------------------------- /config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/config/env.js -------------------------------------------------------------------------------- /config/jest/CSSStub.js: -------------------------------------------------------------------------------- 1 | module.exports = {}; 2 | -------------------------------------------------------------------------------- /config/jest/FileStub.js: -------------------------------------------------------------------------------- 1 | module.exports = "test-file-stub"; 2 | -------------------------------------------------------------------------------- /config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/config/paths.js -------------------------------------------------------------------------------- /config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/config/polyfills.js -------------------------------------------------------------------------------- /config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/config/webpack.config.dev.js -------------------------------------------------------------------------------- /config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/config/webpack.config.prod.js -------------------------------------------------------------------------------- /deploy.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/deploy.sh -------------------------------------------------------------------------------- /deployments/test-deployment.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/deployments/test-deployment.sh -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/package.json -------------------------------------------------------------------------------- /public/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/public/favicon.png -------------------------------------------------------------------------------- /public/images/avatar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/public/images/avatar.png -------------------------------------------------------------------------------- /public/images/category-default-img.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/public/images/category-default-img.jpeg -------------------------------------------------------------------------------- /public/images/get-started-slogans.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/public/images/get-started-slogans.jpg -------------------------------------------------------------------------------- /public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/public/index.html -------------------------------------------------------------------------------- /scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/scripts/build.js -------------------------------------------------------------------------------- /scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/scripts/start.js -------------------------------------------------------------------------------- /scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/scripts/test.js -------------------------------------------------------------------------------- /src/Admin/Admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Admin.js -------------------------------------------------------------------------------- /src/Admin/Analytics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Analytics.js -------------------------------------------------------------------------------- /src/Admin/Basics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Basics.js -------------------------------------------------------------------------------- /src/Admin/Categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Categories.js -------------------------------------------------------------------------------- /src/Admin/Components/CodeEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Components/CodeEditor.js -------------------------------------------------------------------------------- /src/Admin/Components/ConfigEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Components/ConfigEdit.js -------------------------------------------------------------------------------- /src/Admin/Components/LabelEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Components/LabelEdit.js -------------------------------------------------------------------------------- /src/Admin/Components/WYSIWYGEditor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Components/WYSIWYGEditor.js -------------------------------------------------------------------------------- /src/Admin/CustomPages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/CustomPages.js -------------------------------------------------------------------------------- /src/Admin/CustomScripts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/CustomScripts.js -------------------------------------------------------------------------------- /src/Admin/Design.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Design.js -------------------------------------------------------------------------------- /src/Admin/Filters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Filters.js -------------------------------------------------------------------------------- /src/Admin/GetStarted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/GetStarted.js -------------------------------------------------------------------------------- /src/Admin/Labels.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Labels.js -------------------------------------------------------------------------------- /src/Admin/LandingPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/LandingPage.js -------------------------------------------------------------------------------- /src/Admin/Listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Listing.js -------------------------------------------------------------------------------- /src/Admin/Listings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Listings.js -------------------------------------------------------------------------------- /src/Admin/NewPost.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/NewPost.js -------------------------------------------------------------------------------- /src/Admin/Orders.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Orders.js -------------------------------------------------------------------------------- /src/Admin/Overview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Overview.js -------------------------------------------------------------------------------- /src/Admin/Payments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Payments.js -------------------------------------------------------------------------------- /src/Admin/PostEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/PostEdit.js -------------------------------------------------------------------------------- /src/Admin/Posts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Posts.js -------------------------------------------------------------------------------- /src/Admin/Pricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Pricing.js -------------------------------------------------------------------------------- /src/Admin/Registration.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/Admin/Requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Requests.js -------------------------------------------------------------------------------- /src/Admin/SEO.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/SEO.js -------------------------------------------------------------------------------- /src/Admin/SubscriptionPlan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/SubscriptionPlan.js -------------------------------------------------------------------------------- /src/Admin/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/User.js -------------------------------------------------------------------------------- /src/Admin/UserConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/UserConfig.js -------------------------------------------------------------------------------- /src/Admin/UserTypes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/UserTypes.js -------------------------------------------------------------------------------- /src/Admin/Users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Admin/Users.js -------------------------------------------------------------------------------- /src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/App.css -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/App.js -------------------------------------------------------------------------------- /src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/App.test.js -------------------------------------------------------------------------------- /src/AppRoutes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/AppRoutes.js -------------------------------------------------------------------------------- /src/Chat.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Chat.css -------------------------------------------------------------------------------- /src/Components/Address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Address.js -------------------------------------------------------------------------------- /src/Components/Bookings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Bookings.js -------------------------------------------------------------------------------- /src/Components/DashboardViewTypeChoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/DashboardViewTypeChoice.js -------------------------------------------------------------------------------- /src/Components/EditableEntity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/EditableEntity.js -------------------------------------------------------------------------------- /src/Components/EditableSkill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/EditableSkill.js -------------------------------------------------------------------------------- /src/Components/EditableText.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/EditableText.js -------------------------------------------------------------------------------- /src/Components/FileUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/FileUploader.js -------------------------------------------------------------------------------- /src/Components/HtmlTextField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/HtmlTextField.js -------------------------------------------------------------------------------- /src/Components/ImageUploader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ImageUploader.js -------------------------------------------------------------------------------- /src/Components/ListingHeader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ListingHeader.js -------------------------------------------------------------------------------- /src/Components/ListingInProgress.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ListingInProgress.js -------------------------------------------------------------------------------- /src/Components/Loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Loader.js -------------------------------------------------------------------------------- /src/Components/Login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Login.js -------------------------------------------------------------------------------- /src/Components/LoginSignup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/LoginSignup.js -------------------------------------------------------------------------------- /src/Components/ObjectDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ObjectDialog.js -------------------------------------------------------------------------------- /src/Components/OfferViewTypeChoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/OfferViewTypeChoice.js -------------------------------------------------------------------------------- /src/Components/PaymentConnectors/Stripe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/PaymentConnectors/Stripe.js -------------------------------------------------------------------------------- /src/Components/PaymentConnectors/StripeCheckout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/PaymentConnectors/StripeCheckout.js -------------------------------------------------------------------------------- /src/Components/ProfileImage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ProfileImage.js -------------------------------------------------------------------------------- /src/Components/RequestDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/RequestDialog.js -------------------------------------------------------------------------------- /src/Components/RequestListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/RequestListItem.js -------------------------------------------------------------------------------- /src/Components/Requests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Requests.js -------------------------------------------------------------------------------- /src/Components/Signup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/Signup.js -------------------------------------------------------------------------------- /src/Components/TaskCard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/TaskCard.js -------------------------------------------------------------------------------- /src/Components/TaskComments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/TaskComments.js -------------------------------------------------------------------------------- /src/Components/TaskListItem.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/TaskListItem.js -------------------------------------------------------------------------------- /src/Components/TaskMap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/TaskMap.js -------------------------------------------------------------------------------- /src/Components/USER_TYPES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/USER_TYPES.js -------------------------------------------------------------------------------- /src/Components/ViewTypeChoice.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Components/ViewTypeChoice.js -------------------------------------------------------------------------------- /src/NewListing/NewListing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListing.js -------------------------------------------------------------------------------- /src/NewListing/NewListingBasics.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingBasics.js -------------------------------------------------------------------------------- /src/NewListing/NewListingCategory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingCategory.js -------------------------------------------------------------------------------- /src/NewListing/NewListingDate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingDate.js -------------------------------------------------------------------------------- /src/NewListing/NewListingDuration.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingDuration.js -------------------------------------------------------------------------------- /src/NewListing/NewListingImages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingImages.js -------------------------------------------------------------------------------- /src/NewListing/NewListingLocation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingLocation.js -------------------------------------------------------------------------------- /src/NewListing/NewListingPricing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingPricing.js -------------------------------------------------------------------------------- /src/NewListing/NewListingQuantity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingQuantity.js -------------------------------------------------------------------------------- /src/NewListing/NewListingReview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/NewListing/NewListingReview.js -------------------------------------------------------------------------------- /src/Pages/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Account.js -------------------------------------------------------------------------------- /src/Pages/Account/EmailSettings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Account/EmailSettings.js -------------------------------------------------------------------------------- /src/Pages/BookRequest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/BookRequest.js -------------------------------------------------------------------------------- /src/Pages/BookingCompleted.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/BookingCompleted.js -------------------------------------------------------------------------------- /src/Pages/BrowseListings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/BrowseListings.js -------------------------------------------------------------------------------- /src/Pages/ChangePasswordPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/ChangePasswordPage.js -------------------------------------------------------------------------------- /src/Pages/Chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Chat.js -------------------------------------------------------------------------------- /src/Pages/ChatRoom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/ChatRoom.js -------------------------------------------------------------------------------- /src/Pages/Dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Dashboard.js -------------------------------------------------------------------------------- /src/Pages/EmailNotVerified.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/EmailNotVerified.js -------------------------------------------------------------------------------- /src/Pages/Imprint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Imprint.js -------------------------------------------------------------------------------- /src/Pages/LoginPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/LoginPage.js -------------------------------------------------------------------------------- /src/Pages/MyListings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/MyListings.js -------------------------------------------------------------------------------- /src/Pages/NotFound.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/NotFound.js -------------------------------------------------------------------------------- /src/Pages/Post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Post.js -------------------------------------------------------------------------------- /src/Pages/PostPrivacyPolicy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/PostPrivacyPolicy.js -------------------------------------------------------------------------------- /src/Pages/PostTermsOfService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/PostTermsOfService.js -------------------------------------------------------------------------------- /src/Pages/PremiumPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/PremiumPage.js -------------------------------------------------------------------------------- /src/Pages/Profile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Profile.js -------------------------------------------------------------------------------- /src/Pages/ProfileEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/ProfileEdit.js -------------------------------------------------------------------------------- /src/Pages/Review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Review.js -------------------------------------------------------------------------------- /src/Pages/SignupPage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/SignupPage.js -------------------------------------------------------------------------------- /src/Pages/Task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/Task.js -------------------------------------------------------------------------------- /src/Pages/TaskEdit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/TaskEdit.js -------------------------------------------------------------------------------- /src/Pages/UserDocuments.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/UserDocuments.js -------------------------------------------------------------------------------- /src/Pages/UserPreferences.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/UserPreferences.js -------------------------------------------------------------------------------- /src/Pages/UserVerifications.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Pages/UserVerifications.js -------------------------------------------------------------------------------- /src/Partials/Footer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Partials/Footer.js -------------------------------------------------------------------------------- /src/Partials/Header.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Partials/Header.js -------------------------------------------------------------------------------- /src/Partials/Logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Partials/Logo.js -------------------------------------------------------------------------------- /src/Partials/TaskCategories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Partials/TaskCategories.js -------------------------------------------------------------------------------- /src/Task/ImageUpload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/Task/ImageUpload.js -------------------------------------------------------------------------------- /src/api/admin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/admin.js -------------------------------------------------------------------------------- /src/api/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/auth.js -------------------------------------------------------------------------------- /src/api/billing-address.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/billing-address.js -------------------------------------------------------------------------------- /src/api/category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/category.js -------------------------------------------------------------------------------- /src/api/chat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/chat.js -------------------------------------------------------------------------------- /src/api/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/config.js -------------------------------------------------------------------------------- /src/api/dashboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/dashboard.js -------------------------------------------------------------------------------- /src/api/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/media.js -------------------------------------------------------------------------------- /src/api/message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/message.js -------------------------------------------------------------------------------- /src/api/order.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/order.js -------------------------------------------------------------------------------- /src/api/orderActions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/orderActions.js -------------------------------------------------------------------------------- /src/api/payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/payment.js -------------------------------------------------------------------------------- /src/api/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/post.js -------------------------------------------------------------------------------- /src/api/request.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/request.js -------------------------------------------------------------------------------- /src/api/requestOrder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/requestOrder.js -------------------------------------------------------------------------------- /src/api/review.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/review.js -------------------------------------------------------------------------------- /src/api/skills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/skills.js -------------------------------------------------------------------------------- /src/api/subscription.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/subscription.js -------------------------------------------------------------------------------- /src/api/task-category.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task-category.js -------------------------------------------------------------------------------- /src/api/task-comment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task-comment.js -------------------------------------------------------------------------------- /src/api/task-image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task-image.js -------------------------------------------------------------------------------- /src/api/task-location.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task-location.js -------------------------------------------------------------------------------- /src/api/task-timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task-timing.js -------------------------------------------------------------------------------- /src/api/task.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/task.js -------------------------------------------------------------------------------- /src/api/user-preference.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/user-preference.js -------------------------------------------------------------------------------- /src/api/user-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/user-property.js -------------------------------------------------------------------------------- /src/api/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/user.js -------------------------------------------------------------------------------- /src/api/vq-services.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/api/vq-services.js -------------------------------------------------------------------------------- /src/constants/COUNTRIES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/COUNTRIES.js -------------------------------------------------------------------------------- /src/constants/DEFAULTS.js: -------------------------------------------------------------------------------- 1 | export const PROFILE_IMG_URL = '/images/avatar.png'; -------------------------------------------------------------------------------- /src/constants/FILTER_DEFAULTS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/FILTER_DEFAULTS.js -------------------------------------------------------------------------------- /src/constants/LABELS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/LABELS.js -------------------------------------------------------------------------------- /src/constants/LANGUAGES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/LANGUAGES.js -------------------------------------------------------------------------------- /src/constants/ORDER_STATUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/ORDER_STATUS.js -------------------------------------------------------------------------------- /src/constants/REQUEST_STATUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/REQUEST_STATUS.js -------------------------------------------------------------------------------- /src/constants/TASK_CATEGORY_STATUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/TASK_CATEGORY_STATUS.js -------------------------------------------------------------------------------- /src/constants/TASK_STATUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/TASK_STATUS.js -------------------------------------------------------------------------------- /src/constants/TASK_TYPES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/TASK_TYPES.js -------------------------------------------------------------------------------- /src/constants/USER_STATUS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/USER_STATUS.js -------------------------------------------------------------------------------- /src/constants/USER_TYPES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/USER_TYPES.js -------------------------------------------------------------------------------- /src/constants/VIEW_TYPES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/constants/VIEW_TYPES.js -------------------------------------------------------------------------------- /src/core/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/auth.js -------------------------------------------------------------------------------- /src/core/categories.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/categories.js -------------------------------------------------------------------------------- /src/core/communication.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/communication.js -------------------------------------------------------------------------------- /src/core/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/config.js -------------------------------------------------------------------------------- /src/core/error-handler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/error-handler.js -------------------------------------------------------------------------------- /src/core/format.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/format.js -------------------------------------------------------------------------------- /src/core/i18n.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/i18n.js -------------------------------------------------------------------------------- /src/core/media.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/media.js -------------------------------------------------------------------------------- /src/core/navigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/navigation.js -------------------------------------------------------------------------------- /src/core/pricing-model-provider.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/pricing-model-provider.js -------------------------------------------------------------------------------- /src/core/rest-resource-factory.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/rest-resource-factory.js -------------------------------------------------------------------------------- /src/core/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/style.js -------------------------------------------------------------------------------- /src/core/tracking.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/tracking.js -------------------------------------------------------------------------------- /src/core/user-mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/user-mode.js -------------------------------------------------------------------------------- /src/core/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/core/util.js -------------------------------------------------------------------------------- /src/helpers/add-payment-method.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/add-payment-method.js -------------------------------------------------------------------------------- /src/helpers/confirm-before-action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/confirm-before-action.js -------------------------------------------------------------------------------- /src/helpers/create-listing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/create-listing.js -------------------------------------------------------------------------------- /src/helpers/display-message.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/display-message.js -------------------------------------------------------------------------------- /src/helpers/display-object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/display-object.js -------------------------------------------------------------------------------- /src/helpers/display-task-timing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/display-task-timing.js -------------------------------------------------------------------------------- /src/helpers/get-user-property.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/get-user-property.js -------------------------------------------------------------------------------- /src/helpers/i18n-helpers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/i18n-helpers.js -------------------------------------------------------------------------------- /src/helpers/open-message-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/open-message-dialog.js -------------------------------------------------------------------------------- /src/helpers/open-requests-dialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/open-requests-dialog.js -------------------------------------------------------------------------------- /src/helpers/user-checks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/helpers/user-checks.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/vq-labs/vq-marketplace-web-app/HEAD/src/index.js --------------------------------------------------------------------------------