Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
@fluid-topics/ft-case-deflection
Advanced tools
A Web Component that can perform requests from ft portal and possibly create JIRA issues
A Web Component that can perform requests from ft portal or create issues in a JIRA project
The case deflection component requires the Fluid Topics public API and Material Icon font to be imported independently.
npm install @fluid-topics/ft-case-deflection
yarn add @fluid-topics/ft-case-deflection
To be placed at the end of HTML body:
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/dist/fluidtopics.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-case-deflection/build/ft-case-deflection.min.js"></script>
import { html } from "lit"
import "@fluid-topics/ft-case-deflection"
function render() {
return html` <ft-case-deflection
baseUrl="https://tinman-demo-dev.fluidtopics.net"
jiraUrl="https://jira-dr.mrs.antidot.net"
jiraToken="Basic bHp2YXJhOkwxTzJKM1U0eHgq"
projectId="11900"
issueTypeId="10700"
.searchFilters=${ {
key: 'Version_FT',
values: ['latest'],
negative: false
} }
.filteredMetadataKeys=${ [
"FT_Version",
"Product",
"language",
"audience",
"Category",
"ft:lastPublication"
] }
@search=${ (e: CustomEvent<FtSearchRequest>) => console.log("Search launched: ", e.detail) }
@issue-created=${ (e: CustomEvent<string>) => console.log("Issue created: ", e.detail) }
></ft-case-deflection> `
}
<html lang="en">
<head>
<title>My custom integration</title>
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
</head>
<body>
<ft-case-deflection
baseUrl="http://doc.fluidtopics.com"
jiraUrl="<JIRA_URL>"
jiraToken="Basic <token>"
projectId="11900"
issueTypeId="10700"
.filteredMetadataKeys="["FT_Version","Product","language","audience","Category","ft:lastPublication"]"
></ft-case-deflection>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/public-api/dist/fluidtopics.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/@fluid-topics/ft-case-deflection/build/ft-case-deflection.min.js"></script>
<script>
const caseDeflection = document.querySelector('ft-case-deflection');
caseDeflection.setAttribute("searchFilters", JSON.stringify({
key: 'Version_FT',
values: ['latest'],
negative: false
}));
caseDeflection.addEventListener("search", event => console.log("Search launched: ", event.detail));
caseDeflection.addEventListener("issue-created", event => console.log("Issue created: ", event.detail));
</script>
</body>
</html>
FAQs
A Web Component that can perform requests from ft portal and possibly create JIRA issues
The npm package @fluid-topics/ft-case-deflection receives a total of 7 weekly downloads. As such, @fluid-topics/ft-case-deflection popularity was classified as not popular.
We found that @fluid-topics/ft-case-deflection demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers 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.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.