Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: Zendesk #2780

Draft
wants to merge 13 commits into
base: main
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Empty file.
1,031 changes: 1,031 additions & 0 deletions website/docs/connect-data/reference/zendesk.md

Large diffs are not rendered by default.

8,323 changes: 5,747 additions & 2,576 deletions website/package-lock.json

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions website/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^4.11.0",
"react-markdown": "^7.1.0",
"remark-gfm": "^2.0.0",
"reodotdev": "^1.0.0"
},
"devDependencies": {
Expand Down
4 changes: 3 additions & 1 deletion website/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,9 @@ const sidebars = {
'connect-data/reference/aws-lambda',
'connect-data/reference/querying-google-sheets',
'connect-data/reference/hubspot',
'connect-data/reference/twilio'
'connect-data/reference/salesforce',
'connect-data/reference/twilio',
'connect-data/reference/zendesk',
],
},
//category- AI Integrations
Expand Down
38 changes: 38 additions & 0 deletions website/src/components/Dropdown.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
import React, { useState } from "react";
import ReactMarkdown from "react-markdown";
import remarkGfm from "remark-gfm";

function Dropdown({ label, options, content }) {
const [selected, setSelected] = useState(options[0]);

return (
<div>
{/* Dropdown Menu */}
<select
onChange={(e) => setSelected(e.target.value)}
value={selected}
style={{
padding: "10px",
borderRadius: "5px",
border: "1px solid #ccc",
marginBottom: "10px",
}}
>
{options.map((option, index) => (
<option key={index} value={option}>
{option}
</option>
))}
</select>

{/* Render Markdown Content */}
<div>
<ReactMarkdown remarkPlugins={[remarkGfm]}>
{content[selected]}
</ReactMarkdown>
</div>
</div>
);
}

export default Dropdown;
Binary file added website/static/img/appsmith-salesforce.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added website/static/img/zendesk-appsmith.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.