Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@best-apps/gfx-editor
Advanced tools
Use Best Apps' GFX Editor as a React component or in vanilla JS
npm install @best-apps/gfx-editor
yarn add @best-apps/gfx-editor
staging
branch and check the following: (gfx-editor-staging-best-apps.vercel.app)[gfx-editor-staging-best-apps.vercel.app]import { GFXInstanceProvider, GFXInstance } from "@best-apps/gfx-editor";
function App() {
return (
<GFXInstanceProvider>
<div
style={{
width: 400,
height: 600,
margin: 20,
border: "1px solid black",
position: "relative", // You have to wrap the editor in an element with width/height and position: fixed/relative/absolute
}}
>
<GFXInstance
v1TemplateId={123} // The v1TemplateId for you product and design
/>
</div>
</GFXInstanceProvider>
);
}
That will render the editor in an iframe and give you the full interface for interacting with your design/template/product
Wherever you want to put the Editor you have to put it inside <GFXInstanceProvider />
. This creates a React context so
that every component nested within it has access to gfx
with useGFXInstance()
.
Use <GFXInstance {...props} />
wherever you want to render the Editor in an iframe.
div
with width
, height
, and position
styles so that the editor can fill this container element.gfx
within a GFXInstanceProvider component.gfxRef
. It will get initialized with a gfx
instance object.This hook will get gfx
from context. Here is an example:
import { useGFXInstance } from "@best-app/gfx-editor";
function Button() {
const gfx = useGFXInstance();
return <button onClick={() => gfx?.actions.flipCanvas()}>Flip canvas</button>;
}
If you are attempting to get the parent gfx
from context in a React class component, use GFXInstanceContext
directly. Here is an example:
import { GFXInstanceContext } from "@best-app/gfx-editor";
class ButtonWrapper extends React.Component {
static contextType = GFXInstanceContext;
render() {
const gfx = this.context;
return (
<button onClick={() => gfx?.actions.flipCanvas()}>Flip canvas</button>
);
}
}
You can also use GFXInstanceConsumer with a child render callback to access the parent gfx
from context. Here is an example:
import { GFXInstanceConsumer } from "@best-app/gfx-editor";
function Button() {
return (
<GFXInstanceConsumer>
{(gfx) => {
<button onClick={() => gfx?.actions.flipCanvas()}>Flip canvas</button>;
}}
</GFXInstanceConsumer>
);
}
NOTE: This is only useful if you are creating your own UI for the Editor.
When creating your own toolbars and buttons, you will often need to know exactly what TYPE OF object has been
actively selected. This is where useActiveObjectType
is useful.
This hook will return:
CustomImage
LikeCustomTextbox
Sticker
CustomizableTextSlot
CustomizableImageSlot
null
Here is an example:
function TopToolbar() {
const activeObjectType = useActiveObjectType(gfx?.state);
if (activeObjectType === "LikeCustomTextbox") {
return (
<button
onClick={() =>
gfx?.actions.openMenu({
menuType: "strokeColorOnTextbox",
})
}
>
Open stroke color drawer
</button>
);
}
}
Sort of like ReactDOM.render
, you call this with a config object and an html element where we should insert the
Editor.
import { embedGFX } from '@best-apps/gfx-editor';
const gfx = embedGFX({
v1TemplateId: 1234
}, document.getElementById(#editor - container))
Once you have the gfx
object, you can build a UI that incorporates gfx.actions
and gfx.state
It may be necessary to use our hosted script in some instances
You call these like gfx.actions.flipCanvas()
flipCanvas()
: This flips the canvas (if there is a front and back to the design and product). Wall art, for example,
will not flip.rotateCanvas()
: This will rotate the canvas (only when using wall art or poster printables)openMenu: (activeMenu: ActiveMenuType) => Promise<void>
. This opens a menu/drawer. ActiveMenuType
is one of these:
openMenu({ menuType: 'sticker' })
: to open the sticker draweropenMenu({ menuType: 'printableColor' })
: to open the color selection drawer to change the color on the garment or wall art (what we call "printables")openMenu({ menuType: 'strokeColorOnTextbox' })
: to open the color selection drawer to select the color for the stroke on text in a textboxopenMenu({ menuType: 'fillColorOnTextbox' })
: to open the color selection drawer to select fill color on text in a textboxopenMenu({ menuType: 'fontFamilyOnTextbox' })
: to open the sticker draweropenMenu({ menuType: 'fillColorOnAllTextboxes' })
: to open the color selection drawer to select fill color on ALL text in ALL textboxes and text slotscloseMenu: () => void
: Closes the menu (any menu)setFillColorOnTextbox: (color: string) => void
: This will set the fill color on text in a textboxsetFillColorOnTextboxSlot: (slotId: number, color: string) => void
: Set fill color on text in a text slotsetFillColorOnAllTextboxes: (color: string) => void
: Sets the fill color on ALL text boxessetFontFamilyOnTextbox: (...args: any) => void
: Sets the font family on a textboxsetStrokeColorOnTextbox: (...args: any) => Promise<void>
: Sets the stroke color on a given textboxsetImageOnImageSlot: (...args: any) => Promise<void>
: Sets the image on an image slotsetPrintableColor: (color: string) => void
: Sets the printable color to the specified colornextColor: () => void
: Toggles the color on the "printable"updateDesignOnState: () => void
: This just creates an export of the design and put is on gfx.state.design
debouncedUpdateDesignOnState: () => Promise<void>
: A debounced version of the updateDesignOnState
methodtoggleZoom: () => void
: Toggles the zoom on the editor canvasaddText: () => Promise<void>
: Adds a customizable textbox to the canvasremoveBg: () => Promise<void>
: Removes bg on the currently selected imageaddImage: (urlOrBase64: string, addImageOptions?: AddImageOptions) => Promise<void>
: Adds an image to the canvasrotateActiveObject: (angle: number, animate?: boolean) => void
: Rotates the active objectalignActiveObject: (position: AlignPosition, animate?: boolean) => void
: Aligns the active object depending on the arguments you pass in:
AlignPosition: 'center' | 'centerHorizontally' | 'centerVertically' | 'alignToTop'
shareDesign: (args: { url: string; base64Image: string; title: string }) => void
showAlert: (alertOptions: AlertOptions) => void
: Shows an alert you specify with alertOptions
title: string
: The title of the alertbody?: string
: The body of the alerttimeout?: number
: How long before the alert is dismissed automaticallydismissable: boolean
: Whether or not the alert can be dismisseddismissableButtonLabel?: string
: And what the dismiss button label ishideAlert: () => void
: Hides any active alertgetProofs: (quality?: number) => Promise<GFXProofs>
: Gets proofs and sends back their base64 representationsaveDesign: () => Promise<void>
: Saves the design to our dbhandleImageUpload: (event: any) => Promise<void>
: TBDThese are properties on gfx state. You might access them like gfx.state.isLoading
isLoading: boolean
isAsyncLoading: boolean
isSyncing: boolean
cornerIcons: CornerIcons
canFlip: boolean
canRotate: boolean
canChangeColor: boolean
status: Status
statusCode: StatusCode
orientation: PrintableInfoOrientation
activeObject: GFXCanvasObjectType | null
isZooming: boolean
scale: number
centerPoints: GFXCenterPointsBySection
alert?: AlertOptions | null
activeMenu
design: V2Design
activeSection: SectionType
activeV2Printable: V2Printable
isSupportedBrowser: boolean
productId: number | string | null
designId: number | string | null
designNumber: string | null
v1TemplateId: number | string | null
initialData: GFXInitialDataType
windowWidth: number | null
windowHeight: number | null
stickers: number[]
You call these like gfx.actions.flipCanvas()
onStateChange: (payload: GFXStateType) => void
: your favorite probably, a way to listen for state changesonColorChanged: (color: string) => void
: when the printable/garment color is changedonTextFillColorChanged: (color: string) => void
: when text fill color is changedonObjectRemoved: (obj: GFXCanvasObjectType) => void
:onObjectDoubleClicked: (obj: GFXCanvasObjectType) => void
:onSelectionCleared: (payload: {
:deselected: GFXCanvasObjectType[] | null
:selected: GFXCanvasObjectType[] | null
:}) => void
:onImageSelectedInSlot: (obj: GFXCanvasObjectType) => void
:onBeforeSelectionCleared: (payload: { deselected: GFXCanvasObjectType[] }) => void
:onObjectSelectionUpdated: (payload: {
:onImageIdUpdatedOnSlot: (payload: { slotId: number; imageId: number }) => void
:onUpdatedCustomSlot: (payload: any) => void
:Example usage:
var gfx = window.embedGFX(
{
v1TemplateId: 829, // Just an example v1TemplateId
interfaceType: "full",
},
document.getElementById("gfx-product")
);
gfx.addEventListener("onStateChange", (state) => console.log(state));
designNumber
: the uuid v4 string that represents the users custom design on this product or templatedesign
: the users' custom designWe use BEM style classnames throughout the editor UI, and you can provide a stylehseet as a text string in the gfxConfig.customOptions.css
property in order to override our existing styles.
var gfx = window.embedGFX(
{
v1TemplateId: 829, // Just an example v1TemplateId
interfaceType: "full",
gfxConfig: {
disableTOS: true, // to hide the watermark (only applicable on full interface)
showWatermark: false, // to hide the watermark (only applicable on full interface)
showInitialToast: true, // show the initial toast message by default
customOptions: {
css: `
.AbstractDrawer {
background: #fff !important;
border-top: 1px solid #2b2c2d18;
border-radius: 0;
}
`,
},
},
},
document.getElementById("gfx-product")
);
When integrating your Shopify store with gfx you must
design_number
app_flow: 'embedded'
To get the design_number
, you must call gfx.actions.saveDesign()
which will return a SavedDesign
object
Here is an example of how you would do this with an ajax request with Jquery:
const savedDesign = await gfx.actions.saveDesign();
await $.post(
"/cart/add.js",
{
quantity: parseInt(quantity.value),
id: parseInt(window.currentVariant),
attributes: {
app_flow: "embedded",
},
properties: {
design_number: savedDesign.designNumber,
},
},
null,
"json"
);
This usually requires custom implementation support right now. Please contact your GFX account manager.
Basically, you must add the properties to your form:
<form method="post" action="/cart/add">
<input type="hidden" name="properties[design_number]" value="DESIGN_NUMBER" />
<input type="text" name="id" value="VARIANT_ID" />
<input type="submit" value="submit" />
</form>
Coming soon
Coming soon.
This is a private repo. If you are part of the Best Apps team, see CONTRIBUTING.md
FAQs
GFX editor
The npm package @best-apps/gfx-editor receives a total of 179 weekly downloads. As such, @best-apps/gfx-editor popularity was classified as not popular.
We found that @best-apps/gfx-editor demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 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.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.