import { Component } from 'preact'; import { IconClose, GhostLogo } from './icons'; export default class Pages extends Component { constructor(props) { super(props); this.state = this.getStateFromBrowser(); window.addEventListener("hashchange", () => this.onHashChange(), false); this.handleChange = props.onChange || (() => { }); } getStateFromBrowser() { const [fullMatch, hash, query] = window.location.hash.match(/^#([^?]+)\??(.*)$/) || ['#', '', '']; return { hash, query, fullMatch }; } onHashChange() { this.setState(this.getStateFromBrowser()); this.handleChange(); } filterChildren(children, state) { return children.filter((child) => { return child.attributes.hash === state.hash; }).map((child) => { child.attributes.frameLocation = { ...this.state }; return child; }); } render({ children, className, onClick, stripeConfig, siteConfig }, state) { let modalClassName = "gm-modal gm-auth-modal"; if (state.hash === 'signup' && stripeConfig) { modalClassName += " gm-subscribe-modal" } let iconUrl = siteConfig && siteConfig.icon; let title = (siteConfig && siteConfig.title) || "Ghost Publication"; let iconStyle = iconUrl ? { backgroundImage: `url(${iconUrl})`, backgroundSize: `38px` } : {}; return (

{title}

{IconClose}
e.stopPropagation()}> {this.filterChildren(children, state)}
Powered by { GhostLogo }
); } }