## ✅ Improvements 1-3 Complete: ### 1. Heading/Tag Selector in RichTextEditor **Before:** - No way to set heading levels - Users had to type HTML manually **After:** - Dropdown selector in toolbar - Options: Paragraph, H1, H2, H3, H4 - One-click heading changes - User controls document structure **UI:** ``` [Paragraph ▼] [B] [I] [List] ... ``` ### 2. Styled Buttons in Cards **Problem:** - Buttons in TipTap looked raw - Different from standalone buttons - Not editable (couldn't change text/URL) **Solution:** - Custom TipTap ButtonExtension - Same inline styles as standalone buttons - Solid & Outline styles - Fully editable via dialog **Features:** - Click button icon in toolbar - Dialog opens for text, link, style - Button renders with proper styling - Matches email rendering exactly **Extension:** - `tiptap-button-extension.ts` - Renders with inline styles - `data-` attributes for editing - Non-editable (atomic node) ### 3. Variable Pills for Button Links **Before:** - Users had to type {variable_name} - Easy to make typos - No suggestions **After:** - Variable pills under Button Link input - Click to insert - Works in both: - RichTextEditor button dialog - EmailBuilder button dialog **UI:** ``` Button Link [input field: {order_url}] {order_number} {order_total} {customer_name} ... ↑ Click any pill to insert ``` ## 📦 New Files: **tiptap-button-extension.ts:** - Custom TipTap node for buttons - Inline styles matching email - Atomic (non-editable in editor) - Dialog-based editing ## �� User Experience: **Heading Control:** - Professional document structure - No HTML knowledge needed - Visual feedback (active state) **Button Styling:** - Consistent across editor/preview - Professional appearance - Easy to configure **Variable Insertion:** - No typing errors - Visual discovery - One-click insertion ## Next Steps: 4. WordPress Media Modal for images 5. WordPress Media Modal for Store logos/favicon All improvements working perfectly! 🚀
106 lines
2.2 KiB
TypeScript
106 lines
2.2 KiB
TypeScript
import { Node, mergeAttributes } from '@tiptap/core';
|
|
|
|
export interface ButtonOptions {
|
|
HTMLAttributes: Record<string, any>;
|
|
}
|
|
|
|
declare module '@tiptap/core' {
|
|
interface Commands<ReturnType> {
|
|
button: {
|
|
setButton: (options: { text: string; href: string; style?: 'solid' | 'outline' }) => ReturnType;
|
|
};
|
|
}
|
|
}
|
|
|
|
export const ButtonExtension = Node.create<ButtonOptions>({
|
|
name: 'button',
|
|
|
|
group: 'inline',
|
|
|
|
inline: true,
|
|
|
|
atom: true,
|
|
|
|
addAttributes() {
|
|
return {
|
|
text: {
|
|
default: 'Click Here',
|
|
},
|
|
href: {
|
|
default: '#',
|
|
},
|
|
style: {
|
|
default: 'solid',
|
|
},
|
|
};
|
|
},
|
|
|
|
parseHTML() {
|
|
return [
|
|
{
|
|
tag: 'a.button',
|
|
},
|
|
{
|
|
tag: 'a.button-outline',
|
|
},
|
|
];
|
|
},
|
|
|
|
renderHTML({ HTMLAttributes }) {
|
|
const { text, href, style } = HTMLAttributes;
|
|
const className = style === 'outline' ? 'button-outline' : 'button';
|
|
|
|
const buttonStyle: Record<string, string> = style === 'solid'
|
|
? {
|
|
display: 'inline-block',
|
|
background: '#7f54b3',
|
|
color: '#fff',
|
|
padding: '14px 28px',
|
|
borderRadius: '6px',
|
|
textDecoration: 'none',
|
|
fontWeight: '600',
|
|
cursor: 'pointer',
|
|
}
|
|
: {
|
|
display: 'inline-block',
|
|
background: 'transparent',
|
|
color: '#7f54b3',
|
|
padding: '12px 26px',
|
|
border: '2px solid #7f54b3',
|
|
borderRadius: '6px',
|
|
textDecoration: 'none',
|
|
fontWeight: '600',
|
|
cursor: 'pointer',
|
|
};
|
|
|
|
return [
|
|
'a',
|
|
mergeAttributes(this.options.HTMLAttributes, {
|
|
href,
|
|
class: className,
|
|
style: Object.entries(buttonStyle)
|
|
.map(([key, value]) => `${key.replace(/([A-Z])/g, '-$1').toLowerCase()}: ${value}`)
|
|
.join('; '),
|
|
'data-button': '',
|
|
'data-text': text,
|
|
'data-href': href,
|
|
'data-style': style,
|
|
}),
|
|
text,
|
|
];
|
|
},
|
|
|
|
addCommands() {
|
|
return {
|
|
setButton:
|
|
(options) =>
|
|
({ commands }) => {
|
|
return commands.insertContent({
|
|
type: this.name,
|
|
attrs: options,
|
|
});
|
|
},
|
|
};
|
|
},
|
|
});
|