
Security News
Vite Releases Technical Preview of Rolldown-Vite, a Rust-Based Bundler
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
simple-screenshot-feedback
Advanced tools
Plug and play screenshot feedback tool that sends to Slack.
A simple plug and play feedback component for your website. Enable users to take screenshots of specific parts of your application and send feedback to a slack channel.
yarn install simple-screenshot-feedback
or
npm install --save simple-screenshot-feedback
import Feedback from "simple-screenshot-feedback"
export default function SomePage() {
return (
<>
...
<Feedback slackToken={...} slackChannel={...} handleSubmitError={...} />
</>
)
}
chat:write
- allows the bot to write in private channels it is added tochat:write.public
- allows the bot to write in public channelsThis is the token that you need to pass in to this component (slackToken
) to start sending feedback to Slack.
With the permissions you gave your new Slack app in Getting your Slack token you can now send feedback to any public channel by passing the channel name (e.g. #feedback
) into the component (slackChannel
).
If you want to post to a private channel you first need to invite the new Slack app to it by typing /invite @[APP NAME]
.
Prop | optional | default | type |
---|---|---|---|
slackToken | false | string | |
slackChannel | false | string | |
handleSubmitError | false | (err: Error) => void | |
location | true | "bottom-right" | "top-left" | "top-middle" | "top-right" | "bottom-left" | "bottom-middle" | "bottom-right" |
This component uses the html2canvas
library which depends on the window
object being available. If you're using server-side rendering you'll want to make sure this component is only imported on client render using dynamic imports.
Here's an example with next/dynamic
:
import dynamic from "next/dynamic";
import React from "react";
const FeedbackImport = dynamic(() => import("simple-screenshot-feedback"), { ssr: false });
export default function Feedback({ slackToken, slackChannel, handleSubmitError }) {
return (
<FeedbackImport
slackToken={slackToken}
slackChannel={slackChannel}
handleSubmitError={handleSubmitError}
/>
);
}
FAQs
Plug and play screenshot feedback tool that sends to Slack.
The npm package simple-screenshot-feedback receives a total of 1 weekly downloads. As such, simple-screenshot-feedback popularity was classified as not popular.
We found that simple-screenshot-feedback demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Vite releases Rolldown-Vite, a Rust-based bundler preview offering faster builds and lower memory usage as a drop-in replacement for Vite.
Research
Security News
A malicious npm typosquat uses remote commands to silently delete entire project directories after a single mistyped install.
Research
Security News
Malicious PyPI package semantic-types steals Solana private keys via transitive dependency installs using monkey patching and blockchain exfiltration.