- Registered `StarWarsTextPageSheet` for handling text-type journal pages with custom settings. - Extended `journalSheets.js` to define `StarWarsTextPageSheet` with specific UI configurations. - Modified CSS to apply the Star Wars style background to `.editor-container` within the journal. - Enhanced overall journal aesthetics while maintaining the existing `StarWarsStyleJournalSheet`.
23 lines
914 B
JavaScript
23 lines
914 B
JavaScript
import {StarWarsStyleJournalSheet, StarWarsTextPageSheet} from "./journalSheets.js"
|
|
// ui.notifications.info
|
|
// Register the custom journal sheet
|
|
|
|
Hooks.once('ready', () => {
|
|
console.log('ASC Star Wars Style Journal | Registering custom sheet...');
|
|
Journal.registerSheet('asc-starwars-style-journal', StarWarsStyleJournalSheet, {
|
|
label: 'Star Wars Style Journal',
|
|
makeDefault: false // Set to true if you want this as the default
|
|
});
|
|
DocumentSheetConfig.registerSheet(JournalEntryPage, "asc-starwars-style-journal", StarWarsTextPageSheet, {
|
|
types: ['text'],
|
|
label: 'Star Wars Text Page',
|
|
makeDefault: false, // Not globally default—used conditionally by the journal sheet
|
|
});
|
|
});
|
|
|
|
Hooks.on("renderChatMessage", (message, html, data) => {
|
|
let customClass = message.getFlag("asc-starwars-style-journal", "customClass");
|
|
if (customClass) {
|
|
html.addClass(customClass);
|
|
}
|
|
}); |