fix: add imageContainer reference in rte
This commit is contained in:
23
components/ImageContainer/imageContainer.module.css
Normal file
23
components/ImageContainer/imageContainer.module.css
Normal file
@@ -0,0 +1,23 @@
|
|||||||
|
.container {
|
||||||
|
display: grid;
|
||||||
|
gap: var(--Spacing-x2);
|
||||||
|
width: 100%;
|
||||||
|
grid-template-columns: auto;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
max-width: 100%;
|
||||||
|
height: 365px;
|
||||||
|
object-fit: cover;
|
||||||
|
border-radius: var(--Corner-radius-Medium);
|
||||||
|
}
|
||||||
|
|
||||||
|
@media screen and (min-width: 768px) {
|
||||||
|
.container {
|
||||||
|
grid-template-columns: 1fr 1fr;
|
||||||
|
}
|
||||||
|
|
||||||
|
.image {
|
||||||
|
margin: var(--Spacing-x1) var(--Spacing-x0);
|
||||||
|
}
|
||||||
|
}
|
||||||
36
components/ImageContainer/index.tsx
Normal file
36
components/ImageContainer/index.tsx
Normal file
@@ -0,0 +1,36 @@
|
|||||||
|
import Image from "../Image"
|
||||||
|
import Caption from "../TempDesignSystem/Text/Caption"
|
||||||
|
|
||||||
|
import styles from "./imageContainer.module.css"
|
||||||
|
|
||||||
|
import type { ImageContainerProps } from "@/types/components/imageContainer"
|
||||||
|
|
||||||
|
export default function ImageContainer({
|
||||||
|
leftImage,
|
||||||
|
rightImage,
|
||||||
|
}: ImageContainerProps) {
|
||||||
|
return (
|
||||||
|
<section className={styles.container}>
|
||||||
|
<article>
|
||||||
|
<Image
|
||||||
|
className={styles.image}
|
||||||
|
src={leftImage.url}
|
||||||
|
height={365}
|
||||||
|
width={600}
|
||||||
|
alt={leftImage.meta.alt || leftImage.title}
|
||||||
|
/>
|
||||||
|
<Caption>{leftImage.meta.caption}</Caption>
|
||||||
|
</article>
|
||||||
|
<article>
|
||||||
|
<Image
|
||||||
|
className={styles.image}
|
||||||
|
src={rightImage.url}
|
||||||
|
height={365}
|
||||||
|
width={600}
|
||||||
|
alt={rightImage.meta.alt || rightImage.title}
|
||||||
|
/>
|
||||||
|
<Caption>{leftImage.meta.caption}</Caption>
|
||||||
|
</article>
|
||||||
|
</section>
|
||||||
|
)
|
||||||
|
}
|
||||||
@@ -10,7 +10,6 @@ export default function JsonToHtml({
|
|||||||
if (!Array.isArray(nodes) || !nodes.length) {
|
if (!Array.isArray(nodes) || !nodes.length) {
|
||||||
return null
|
return null
|
||||||
}
|
}
|
||||||
console.log({ nodes })
|
|
||||||
return (
|
return (
|
||||||
<section style={{ display: "grid", gap: "var(--Spacing-x3" }}>
|
<section style={{ display: "grid", gap: "var(--Spacing-x3" }}>
|
||||||
{nodesToHtml(nodes, embeds, renderOptions).filter(Boolean)}
|
{nodesToHtml(nodes, embeds, renderOptions).filter(Boolean)}
|
||||||
|
|||||||
@@ -4,5 +4,9 @@
|
|||||||
height: 365px;
|
height: 365px;
|
||||||
object-fit: cover;
|
object-fit: cover;
|
||||||
border-radius: var(--Corner-radius-Medium);
|
border-radius: var(--Corner-radius-Medium);
|
||||||
padding: var(--Spacing-x1) var(--Spacing-x0);
|
margin: var(--Spacing-x1) var(--Spacing-x0);
|
||||||
|
}
|
||||||
|
|
||||||
|
.li {
|
||||||
|
margin-left: var(--Spacing-x3);
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -2,25 +2,33 @@ import Image from "@/components/Image"
|
|||||||
import Link from "@/components/TempDesignSystem/Link"
|
import Link from "@/components/TempDesignSystem/Link"
|
||||||
import { insertResponseToImageVaultAsset } from "@/utils/imageVault"
|
import { insertResponseToImageVaultAsset } from "@/utils/imageVault"
|
||||||
|
|
||||||
|
import ImageContainer from "../ImageContainer"
|
||||||
import Divider from "../TempDesignSystem/Divider"
|
import Divider from "../TempDesignSystem/Divider"
|
||||||
import BiroScript from "../TempDesignSystem/Text/BiroScript"
|
import BiroScript from "../TempDesignSystem/Text/BiroScript"
|
||||||
import Body from "../TempDesignSystem/Text/Body"
|
import Body from "../TempDesignSystem/Text/Body"
|
||||||
import Caption from "../TempDesignSystem/Text/Caption"
|
import Caption from "../TempDesignSystem/Text/Caption"
|
||||||
|
import Footnote from "../TempDesignSystem/Text/Footnote"
|
||||||
import Subtitle from "../TempDesignSystem/Text/Subtitle"
|
import Subtitle from "../TempDesignSystem/Text/Subtitle"
|
||||||
import Title from "../TempDesignSystem/Text/Title"
|
import Title from "../TempDesignSystem/Text/Title"
|
||||||
|
import { hasAvailableFormat } from "./utils"
|
||||||
|
|
||||||
import styles from "./jsontohtml.module.css"
|
import styles from "./jsontohtml.module.css"
|
||||||
|
|
||||||
import type { EmbedByUid } from "@/types/components/jsontohtml"
|
import type { EmbedByUid } from "@/types/components/jsontohtml"
|
||||||
import { EmbedEnum } from "@/types/requests/utils/embeds"
|
import { EmbedEnum } from "@/types/requests/utils/embeds"
|
||||||
import type { Attributes, RTEImageVaultAttrs } from "@/types/rte/attrs"
|
import type { Attributes, RTEImageVaultAttrs } from "@/types/rte/attrs"
|
||||||
import { RTEItemTypeEnum, RTETypeEnum } from "@/types/rte/enums"
|
import {
|
||||||
|
AvailableFormatEnum,
|
||||||
|
RTEItemTypeEnum,
|
||||||
|
RTETypeEnum,
|
||||||
|
} from "@/types/rte/enums"
|
||||||
import type {
|
import type {
|
||||||
RTEDefaultNode,
|
RTEDefaultNode,
|
||||||
RTEImageNode,
|
RTEImageNode,
|
||||||
RTENext,
|
RTENext,
|
||||||
RTENode,
|
RTENode,
|
||||||
RTERegularNode,
|
RTERegularNode,
|
||||||
|
RTETextNode,
|
||||||
} from "@/types/rte/node"
|
} from "@/types/rte/node"
|
||||||
import { RTEMarkType } from "@/types/rte/node"
|
import { RTEMarkType } from "@/types/rte/node"
|
||||||
import type { RenderOptions } from "@/types/rte/option"
|
import type { RenderOptions } from "@/types/rte/option"
|
||||||
@@ -57,14 +65,16 @@ export const renderOptions: RenderOptions = {
|
|||||||
if (node.attrs.url) {
|
if (node.attrs.url) {
|
||||||
const props = extractPossibleAttributes(node.attrs)
|
const props = extractPossibleAttributes(node.attrs)
|
||||||
return (
|
return (
|
||||||
<a
|
<Link
|
||||||
{...props}
|
{...props}
|
||||||
href={node.attrs.url}
|
href={node.attrs.url}
|
||||||
target={node.attrs.target ?? "_blank"}
|
|
||||||
key={node.uid}
|
key={node.uid}
|
||||||
|
target={node.attrs.target ?? "_blank"}
|
||||||
|
variant="underscored"
|
||||||
|
color="burgundy"
|
||||||
>
|
>
|
||||||
{next(node.children, embeds, fullRenderOptions)}
|
{next(node.children, embeds, fullRenderOptions)}
|
||||||
</a>
|
</Link>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
return null
|
return null
|
||||||
@@ -217,7 +227,7 @@ export const renderOptions: RenderOptions = {
|
|||||||
) => {
|
) => {
|
||||||
const props = extractPossibleAttributes(node.attrs)
|
const props = extractPossibleAttributes(node.attrs)
|
||||||
return (
|
return (
|
||||||
<li key={node.uid} {...props}>
|
<li key={node.uid} {...props} className={styles.li}>
|
||||||
{next(node.children, embeds, fullRenderOptions)}
|
{next(node.children, embeds, fullRenderOptions)}
|
||||||
</li>
|
</li>
|
||||||
)
|
)
|
||||||
@@ -244,6 +254,21 @@ export const renderOptions: RenderOptions = {
|
|||||||
fullRenderOptions: RenderOptions
|
fullRenderOptions: RenderOptions
|
||||||
) => {
|
) => {
|
||||||
const props = extractPossibleAttributes(node.attrs)
|
const props = extractPossibleAttributes(node.attrs)
|
||||||
|
|
||||||
|
const hasFormat = node.children.some((item) =>
|
||||||
|
hasAvailableFormat((item as RTETextNode).classname)
|
||||||
|
)
|
||||||
|
|
||||||
|
// If a child node has an available format as className, we wrap it in a
|
||||||
|
// span and render the children with the correct component
|
||||||
|
if (hasFormat) {
|
||||||
|
return (
|
||||||
|
<span {...props} key={node.uid}>
|
||||||
|
{next(node.children, embeds, fullRenderOptions)}
|
||||||
|
</span>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Body {...props} key={node.uid}>
|
<Body {...props} key={node.uid}>
|
||||||
{next(node.children, embeds, fullRenderOptions)}
|
{next(node.children, embeds, fullRenderOptions)}
|
||||||
@@ -264,11 +289,11 @@ export const renderOptions: RenderOptions = {
|
|||||||
if (image?.node.__typename === EmbedEnum.SysAsset) {
|
if (image?.node.__typename === EmbedEnum.SysAsset) {
|
||||||
const alt = image?.node?.title ?? node.attrs.alt
|
const alt = image?.node?.title ?? node.attrs.alt
|
||||||
const props = extractPossibleAttributes(node.attrs)
|
const props = extractPossibleAttributes(node.attrs)
|
||||||
|
props.className = styles.image
|
||||||
return (
|
return (
|
||||||
<Image
|
<Image
|
||||||
key={node.uid}
|
key={node.uid}
|
||||||
alt={alt}
|
alt={alt}
|
||||||
className={styles.image}
|
|
||||||
height={image.node.dimension.height}
|
height={image.node.dimension.height}
|
||||||
src={image?.node?.url}
|
src={image?.node?.url}
|
||||||
width={image.node.dimension.width}
|
width={image.node.dimension.width}
|
||||||
@@ -276,18 +301,39 @@ export const renderOptions: RenderOptions = {
|
|||||||
/>
|
/>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
} else if (type === RTEItemTypeEnum.entry) {
|
||||||
|
const entry = embeds?.[node?.attrs?.["entry-uid"]]
|
||||||
|
|
||||||
|
if (entry?.node.__typename === EmbedEnum.ImageContainer) {
|
||||||
|
const leftImage = insertResponseToImageVaultAsset(
|
||||||
|
entry.node.image_left
|
||||||
|
)
|
||||||
|
const rightImage = insertResponseToImageVaultAsset(
|
||||||
|
entry.node.image_right
|
||||||
|
)
|
||||||
|
return (
|
||||||
|
<ImageContainer leftImage={leftImage} rightImage={rightImage} />
|
||||||
|
)
|
||||||
} else {
|
} else {
|
||||||
|
// If entry is not an ImageContainer, it is a page and we return it as a link
|
||||||
const props = extractPossibleAttributes(node.attrs)
|
const props = extractPossibleAttributes(node.attrs)
|
||||||
const href = node.attrs?.locale
|
const href = node.attrs?.locale
|
||||||
? `/${node.attrs.locale}${node.attrs.href}`
|
? `/${node.attrs.locale}${node.attrs.href}`
|
||||||
: node.attrs.href
|
: node.attrs.href
|
||||||
return (
|
return (
|
||||||
<Link {...props} href={href} key={node.uid}>
|
<Link
|
||||||
|
{...props}
|
||||||
|
href={href}
|
||||||
|
key={node.uid}
|
||||||
|
variant="underscored"
|
||||||
|
color="burgundy"
|
||||||
|
>
|
||||||
{next(node.children, embeds, fullRenderOptions)}
|
{next(node.children, embeds, fullRenderOptions)}
|
||||||
</Link>
|
</Link>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return null
|
return null
|
||||||
},
|
},
|
||||||
@@ -300,7 +346,6 @@ export const renderOptions: RenderOptions = {
|
|||||||
const image = insertResponseToImageVaultAsset(attrs)
|
const image = insertResponseToImageVaultAsset(attrs)
|
||||||
const alt = image.meta.alt ?? image.title
|
const alt = image.meta.alt ?? image.title
|
||||||
|
|
||||||
const height = parseInt(attrs.height.replaceAll("px", ""))
|
|
||||||
const width = parseInt(attrs.width.replaceAll("px", ""))
|
const width = parseInt(attrs.width.replaceAll("px", ""))
|
||||||
const props = extractPossibleAttributes(attrs)
|
const props = extractPossibleAttributes(attrs)
|
||||||
return (
|
return (
|
||||||
@@ -308,7 +353,7 @@ export const renderOptions: RenderOptions = {
|
|||||||
<Image
|
<Image
|
||||||
alt={alt}
|
alt={alt}
|
||||||
className={styles.image}
|
className={styles.image}
|
||||||
height={height}
|
height={365}
|
||||||
src={image.url}
|
src={image.url}
|
||||||
width={width}
|
width={width}
|
||||||
{...props}
|
{...props}
|
||||||
@@ -487,6 +532,53 @@ export const renderOptions: RenderOptions = {
|
|||||||
if (!id) {
|
if (!id) {
|
||||||
delete props.id
|
delete props.id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (className === AvailableFormatEnum.footnote) {
|
||||||
|
return (
|
||||||
|
<Footnote key={id} {...props}>
|
||||||
|
{children}
|
||||||
|
</Footnote>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (className === AvailableFormatEnum.caption) {
|
||||||
|
return (
|
||||||
|
<Caption key={id} {...props}>
|
||||||
|
{children}
|
||||||
|
</Caption>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (className === AvailableFormatEnum["script-1"]) {
|
||||||
|
return (
|
||||||
|
<BiroScript key={id} type="one" {...props}>
|
||||||
|
{children}
|
||||||
|
</BiroScript>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (className === AvailableFormatEnum["script-2"]) {
|
||||||
|
return (
|
||||||
|
<BiroScript key={id} type="two" {...props}>
|
||||||
|
{children}
|
||||||
|
</BiroScript>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
if (className === AvailableFormatEnum["subtitle-1"]) {
|
||||||
|
return (
|
||||||
|
<Subtitle key={id} {...props}>
|
||||||
|
{children}
|
||||||
|
</Subtitle>
|
||||||
|
)
|
||||||
|
}
|
||||||
|
if (className === AvailableFormatEnum["subtitle-2"]) {
|
||||||
|
return (
|
||||||
|
<Subtitle key={id} {...props}>
|
||||||
|
{children}
|
||||||
|
</Subtitle>
|
||||||
|
)
|
||||||
|
}
|
||||||
return (
|
return (
|
||||||
<span key={id} {...props}>
|
<span key={id} {...props}>
|
||||||
{children}
|
{children}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@ import { renderOptions } from "./renderOptions"
|
|||||||
import type { EmbedByUid } from "@/types/components/jsontohtml"
|
import type { EmbedByUid } from "@/types/components/jsontohtml"
|
||||||
import type { Embeds } from "@/types/requests/embeds"
|
import type { Embeds } from "@/types/requests/embeds"
|
||||||
import type { Node } from "@/types/requests/utils/edges"
|
import type { Node } from "@/types/requests/utils/edges"
|
||||||
import { RTETypeEnum } from "@/types/rte/enums"
|
import { AvailableFormatEnum, RTETypeEnum } from "@/types/rte/enums"
|
||||||
import type {
|
import type {
|
||||||
RTENode,
|
RTENode,
|
||||||
RTERenderOptionComponent,
|
RTERenderOptionComponent,
|
||||||
@@ -74,7 +74,6 @@ export function textNodeToHtml(
|
|||||||
if (node.bold) {
|
if (node.bold) {
|
||||||
text = (fullRenderOptions[RTEMarkType.bold] as RTERenderMark)(text)
|
text = (fullRenderOptions[RTEMarkType.bold] as RTERenderMark)(text)
|
||||||
}
|
}
|
||||||
|
|
||||||
return text
|
return text
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -86,6 +85,10 @@ function next(
|
|||||||
return nodeChildrenToHtml(nodes, embeds, fullRenderOptions)
|
return nodeChildrenToHtml(nodes, embeds, fullRenderOptions)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
export function hasAvailableFormat(className?: string) {
|
||||||
|
return className && Object.keys(AvailableFormatEnum).includes(className)
|
||||||
|
}
|
||||||
|
|
||||||
export function nodeToHtml(
|
export function nodeToHtml(
|
||||||
node: RTENode,
|
node: RTENode,
|
||||||
embeds: EmbedByUid,
|
embeds: EmbedByUid,
|
||||||
|
|||||||
@@ -70,6 +70,15 @@ query GetLoyaltyPage($locale: String!, $uid: String!) {
|
|||||||
__typename
|
__typename
|
||||||
...LoyaltyPageLink
|
...LoyaltyPageLink
|
||||||
...ContentPageLink
|
...ContentPageLink
|
||||||
|
...Image
|
||||||
|
... on ImageContainer {
|
||||||
|
title
|
||||||
|
image_left
|
||||||
|
image_right
|
||||||
|
system {
|
||||||
|
uid
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
totalCount
|
totalCount
|
||||||
@@ -223,6 +232,12 @@ query GetLoyaltyPageRefs($locale: String!, $uid: String!) {
|
|||||||
...System
|
...System
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
... on ImageContainer {
|
||||||
|
__typename
|
||||||
|
system {
|
||||||
|
...System
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,7 @@ import {
|
|||||||
} from "@/types/components/loyalty/enums"
|
} from "@/types/components/loyalty/enums"
|
||||||
import { Embeds } from "@/types/requests/embeds"
|
import { Embeds } from "@/types/requests/embeds"
|
||||||
import { PageLinkEnum } from "@/types/requests/pageLinks"
|
import { PageLinkEnum } from "@/types/requests/pageLinks"
|
||||||
|
import { RTEEmbedsEnum } from "@/types/requests/rte"
|
||||||
import { EdgesWithTotalCount } from "@/types/requests/utils/edges"
|
import { EdgesWithTotalCount } from "@/types/requests/utils/edges"
|
||||||
import { RTEDocument } from "@/types/rte/node"
|
import { RTEDocument } from "@/types/rte/node"
|
||||||
|
|
||||||
@@ -272,6 +273,20 @@ const pageConnectionRefs = z.object({
|
|||||||
),
|
),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
const rteConnectionRefs = z.object({
|
||||||
|
edges: z.array(
|
||||||
|
z.object({
|
||||||
|
node: z.object({
|
||||||
|
__typename: z.nativeEnum(RTEEmbedsEnum),
|
||||||
|
system: z.object({
|
||||||
|
content_type_uid: z.string(),
|
||||||
|
uid: z.string(),
|
||||||
|
}),
|
||||||
|
}),
|
||||||
|
})
|
||||||
|
),
|
||||||
|
})
|
||||||
|
|
||||||
const cardBlockRefs = z.object({
|
const cardBlockRefs = z.object({
|
||||||
__typename: z.literal(LoyaltyCardsGridEnum.Card),
|
__typename: z.literal(LoyaltyCardsGridEnum.Card),
|
||||||
primary_button: z
|
primary_button: z
|
||||||
@@ -349,7 +364,7 @@ const loyaltyPageBlockTextContentRefs = z.object({
|
|||||||
__typename: z.literal(LoyaltyBlocksTypenameEnum.LoyaltyPageBlocksContent),
|
__typename: z.literal(LoyaltyBlocksTypenameEnum.LoyaltyPageBlocksContent),
|
||||||
content: z.object({
|
content: z.object({
|
||||||
content: z.object({
|
content: z.object({
|
||||||
embedded_itemsConnection: pageConnectionRefs,
|
embedded_itemsConnection: rteConnectionRefs,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
@@ -365,7 +380,7 @@ const loyaltyPageSidebarTextContentRef = z.object({
|
|||||||
__typename: z.literal(SidebarTypenameEnum.LoyaltyPageSidebarContent),
|
__typename: z.literal(SidebarTypenameEnum.LoyaltyPageSidebarContent),
|
||||||
content: z.object({
|
content: z.object({
|
||||||
content: z.object({
|
content: z.object({
|
||||||
embedded_itemsConnection: pageConnectionRefs,
|
embedded_itemsConnection: rteConnectionRefs,
|
||||||
}),
|
}),
|
||||||
}),
|
}),
|
||||||
})
|
})
|
||||||
|
|||||||
6
types/components/imageContainer.ts
Normal file
6
types/components/imageContainer.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
import type { ImageVaultAsset } from "./imageVaultImage"
|
||||||
|
|
||||||
|
export type ImageContainerProps = {
|
||||||
|
leftImage: ImageVaultAsset
|
||||||
|
rightImage: ImageVaultAsset
|
||||||
|
}
|
||||||
@@ -1,3 +1,4 @@
|
|||||||
|
import type { ImageContainer } from "./imageContainer"
|
||||||
import type { SysAsset } from "./utils/asset"
|
import type { SysAsset } from "./utils/asset"
|
||||||
|
|
||||||
export type Embeds = SysAsset
|
export type Embeds = SysAsset | ImageContainer
|
||||||
|
|||||||
14
types/requests/imageContainer.ts
Normal file
14
types/requests/imageContainer.ts
Normal file
@@ -0,0 +1,14 @@
|
|||||||
|
import { InsertResponse } from "../components/imageVaultImage"
|
||||||
|
import { EmbedEnum } from "./utils/embeds"
|
||||||
|
import { Typename } from "./utils/typename"
|
||||||
|
|
||||||
|
export type ImageContainer = Typename<
|
||||||
|
{
|
||||||
|
image_left: InsertResponse
|
||||||
|
image_right: InsertResponse
|
||||||
|
system: {
|
||||||
|
uid: string
|
||||||
|
}
|
||||||
|
},
|
||||||
|
EmbedEnum.ImageContainer
|
||||||
|
>
|
||||||
6
types/requests/rte.ts
Normal file
6
types/requests/rte.ts
Normal file
@@ -0,0 +1,6 @@
|
|||||||
|
export enum RTEEmbedsEnum {
|
||||||
|
AccountPage = "AccountPage",
|
||||||
|
ContentPage = "ContentPage",
|
||||||
|
LoyaltyPage = "LoyaltyPage",
|
||||||
|
ImageContainer = "ImageContainer",
|
||||||
|
}
|
||||||
@@ -1,6 +1,10 @@
|
|||||||
export enum EmbedEnum {
|
export enum EmbedEnum {
|
||||||
CurrentBlocksPage = "CurrentBlocksPage",
|
CurrentBlocksPage = "CurrentBlocksPage",
|
||||||
SysAsset = "SysAsset",
|
SysAsset = "SysAsset",
|
||||||
|
ImageContainer = "ImageContainer",
|
||||||
|
LoyaltyPage = "LoyaltyPage",
|
||||||
|
AccountPage = "AccountPage",
|
||||||
|
ContentPage = "ContentPage",
|
||||||
}
|
}
|
||||||
|
|
||||||
export type Embed = keyof typeof EmbedEnum
|
export type Embed = keyof typeof EmbedEnum
|
||||||
|
|||||||
@@ -47,3 +47,12 @@ export enum RTEItemTypeEnum {
|
|||||||
}
|
}
|
||||||
|
|
||||||
export type RTEItemType = keyof typeof RTEItemTypeEnum
|
export type RTEItemType = keyof typeof RTEItemTypeEnum
|
||||||
|
|
||||||
|
export enum AvailableFormatEnum {
|
||||||
|
"script-1" = "script-1",
|
||||||
|
"script-2" = "script-2",
|
||||||
|
"footnote" = "footnote",
|
||||||
|
"caption" = "caption",
|
||||||
|
"subtitle-1" = "subtitle-1",
|
||||||
|
"subtitle-2" = "subtitle-2",
|
||||||
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user