@markprompt/web
A prebuilt version of the Markprompt dialog, based on @markprompt/react
, built with Preact for bundle-size savings. Viable for use from vanilla JavaScript or any framework.
Installation
Install the package from NPM:
npm add @markprompt/web @markprompt/css
Usage
Include the CSS on your page, via a link tag or by importing it in your JavaScript:
<link rel="stylesheet" href="https://esm.sh/@markprompt/css?css" />
import '@markprompt/css';
Call the markprompt
function with your project key:
import { markprompt } from '@markprompt/web';
const markpromptEl = document.querySelector('#markprompt');
markprompt('<project-key>', markpromptEl, {
references: {
transformReferenceId: (referenceId) => ({
text: referenceId.replace('-', ' '),
href: `/docs/${referenceId}`,
}),
},
});
where project-key
can be obtained in your project settings on Markprompt.com.
Options are optional and allow you to configure texts the component to some extent. You will most likely want to pass transformReferenceId
to transform your reference ids into links to your corresponding documentation.
type Options = {
close?: {
label?: string;
};
description?: {
hide?: boolean;
text?: string;
};
prompt?: {
label?: string;
placeholder?: string;
};
references?: {
transformReferenceId?: (referenceId: string) => {
href: string;
text: string;
};
loadingText?: string;
referencesText?: string;
};
trigger?: {
label?: string;
};
title?: {
hide?: boolean;
text?: string;
};
};
Styles are easily overridable for customization via targeting classes. Additionally, see the styling section in our documentation for a full list of variables.
Usage via <script>
tag
Besides initializing the Markprompt component yourselves from JavaScript, you can load the script from a CDN. You can attach the options for the Markprompt component to the window prior to loading our script:
<link
rel="stylesheet"
href="https://unpkg.com/@markprompt/css@0.1.0/markprompt.css"
/>
<script>
window.markprompt = {
projectKey: `<your-project-key>`,
container: `#markprompt`,
options: {
references: {
transformReferenceId: (referenceId) => ({
text: referenceId.replace('-', ' '),
href: `/docs/${referenceId}`,
}),
},
},
};
</script>
<script
async
src="https://unpkg.com/@markprompt/web@0.4.1/dist/init.js"
></script>
Documentation
The full documentation for @markprompt/web
can be found on the Markprompt docs.
Authors
This library is created by the team behind Motif
(@motifland).