PromucFlow_constructor/app/client/src/constants/serverAssets.ts
Aman Agarwal ccbb29d64a
fix: oracle icon path (#22986)
## Description

Oracle Icon was broken so changed the oracle icon path from
`oracle-db.jpg` to `oracle.svg`.

Fixes #22980 
> if no issue exists, please create an issue and ask the maintainers
about this first


Media
> A video or a GIF is preferred. when using Loom, don’t embed because it
looks like it’s a GIF. instead, just link to the video


## Type of change

> Please delete options that are not relevant.

- Bug fix (non-breaking change which fixes an issue)
- New feature (non-breaking change which adds functionality)
- Breaking change (fix or feature that would cause existing
functionality to not work as expected)
- Chore (housekeeping or task changes that don't impact user perception)
- This change requires a documentation update


## How Has This Been Tested?
> Please describe the tests that you ran to verify your changes. Provide
instructions, so we can reproduce.
> Please also list any relevant details for your test configuration.
> Delete anything that is not important

- Manual
- Jest
- Cypress

### Test Plan
> Add Testsmith test cases links that relate to this PR

### Issues raised during DP testing
> Link issues raised during DP testing for better visiblity and tracking
(copy link from comments dropped on this PR)


## Checklist:
### Dev activity
- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my own code
- [ ] I have commented my code, particularly in hard-to-understand areas
- [ ] I have made corresponding changes to the documentation
- [ ] My changes generate no new warnings
- [ ] I have added tests that prove my fix is effective or that my
feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] PR is being merged under a feature flag


### QA activity:
- [ ] Test plan has been approved by relevant developers
- [ ] Test plan has been peer reviewed by QA
- [ ] Cypress test cases have been added and approved by either SDET or
manual QA
- [ ] Organized project review call with relevant stakeholders after
Round 1/2 of QA
- [ ] Added Test Plan Approved label after reveiwing all Cypress test
2023-05-08 12:53:55 +05:30

41 lines
2.3 KiB
TypeScript

import { ASSETS_CDN_URL } from "./ThirdPartyConstants";
/* Since the script download-assets.js actually needs the url to download the assets, we need the urls we get from server response at build time. */
export const postgresqlIcon = `${ASSETS_CDN_URL}/logo/postgresql.svg`;
export const mongodbIcon = `${ASSETS_CDN_URL}/logo/mongodb.svg`;
export const restApiIcon = `${ASSETS_CDN_URL}/RestAPI.png`;
export const mysqlIcon = `${ASSETS_CDN_URL}/logo/mysql.svg`;
export const elasticIcon = `${ASSETS_CDN_URL}/logo/elastic.svg`;
export const dynamoDBIcon = `${ASSETS_CDN_URL}/logo/aws-dynamodb.svg`;
export const redisIcon = `${ASSETS_CDN_URL}/logo/redis.svg`;
export const mssqlIcon = `${ASSETS_CDN_URL}/logo/mssql.svg`;
export const s3Icon = `${ASSETS_CDN_URL}/logo/aws-s3.svg`;
export const googleSheetsIcon = `${ASSETS_CDN_URL}/GoogleSheets.svg`;
export const snowflakeIcon = `${ASSETS_CDN_URL}/logo/snowflake.svg`;
export const arangodbIcon = `${ASSETS_CDN_URL}/logo/arangodb.svg`;
export const jsFileIcon = `${ASSETS_CDN_URL}/JSFile.svg`;
export const smtpIcon = `${ASSETS_CDN_URL}/smtp-icon.svg`;
export const graphqlIcon = `${ASSETS_CDN_URL}/logo/graphql.svg`;
export const oracleIcon = `${ASSETS_CDN_URL}/oracle.svg`;
// Unsupported plugin assets
export const openaiLogo = `${ASSETS_CDN_URL}/integrations/openai-logo-png.jpg`;
export const firestoreIcon = `${ASSETS_CDN_URL}/logo/firestore.svg`;
export const redshiftIcon = `${ASSETS_CDN_URL}/logo/aws-redshift.svg`;
export const hubspotIcon = `${ASSETS_CDN_URL}/integrations/HubSpot.png`;
export const airtableIcon = `${ASSETS_CDN_URL}/integrations/airtable.svg`;
export const twilioIcon = `${ASSETS_CDN_URL}/integrations/twilio_24.png`;
export const twilioIcon1 = `${ASSETS_CDN_URL}/integrations/twilio.png`;
export const sendgridTwilioIcon = `${ASSETS_CDN_URL}/integrations/sendgrid_twilio.jpg`;
export const huggingFaceLogo = `${ASSETS_CDN_URL}/integrations/Hugging-Face-Logo.png`;
export const dropboxIcon = `${ASSETS_CDN_URL}/integrations/dropbox.png`;
export const figmaIcon = `${ASSETS_CDN_URL}/integrations/Figma-1-logo.png`;
// Assets for CRUD page generator
export const sqlWorkflowIcon = `${ASSETS_CDN_URL}/crud/workflow_sql.svg`;
export const s3WorkflowIcon = `${ASSETS_CDN_URL}/crud/workflow_s3.svg`;
// Assets from tenant configuration
export const appsmithFavicon = `${ASSETS_CDN_URL}/appsmith-favicon-orange.ico`;