mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 04:26:41 -04:00
54 lines
1.6 KiB
JavaScript
54 lines
1.6 KiB
JavaScript
import NoSSR from 'react-no-ssr';
|
|
import Router from '../router.js'
|
|
import Core from "meteor/nova:core";
|
|
import { Button } from 'react-bootstrap';
|
|
|
|
const Messages = Core.Messages;
|
|
|
|
const Header = ({currentUser}) => {
|
|
|
|
({Logo, ListContainer, CategoriesList, FlashContainer, FlashMessages, ModalTrigger, NewDocContainer, CanCreatePost, CurrentUserContainer, NewsletterForm, SearchForm} = Telescope.components);
|
|
|
|
const logoUrl = Telescope.settings.get("logoUrl");
|
|
const siteTitle = Telescope.settings.get("title", "Telescope");
|
|
const tagline = Telescope.settings.get("tagline");
|
|
|
|
return (
|
|
<header className="header">
|
|
<div className="logo">
|
|
<Logo logoUrl={logoUrl} siteTitle={siteTitle} />
|
|
{tagline ? <h2 className="tagline">{tagline}</h2> : "" }
|
|
</div>
|
|
<div className="nav">
|
|
<ListContainer collection={Categories} limit={0}><CategoriesList/></ListContainer>
|
|
</div>
|
|
|
|
<LogInButtons />
|
|
|
|
{currentUser ? <p><a href={Router.path("account")}>My Account</a></p> : ""}
|
|
|
|
<CanCreatePost user={currentUser}>
|
|
<ModalTrigger component={<Button bsStyle="primary">New Post</Button>}>
|
|
<NewDocContainer
|
|
collection={Posts}
|
|
label="New Post"
|
|
methodName="posts.new"
|
|
successCallback={(post)=>{
|
|
Messages.flash("Post created.", "success");
|
|
Router.go('posts.single', post);
|
|
}}
|
|
/>
|
|
</ModalTrigger>
|
|
</CanCreatePost>
|
|
|
|
<CurrentUserContainer component={NewsletterForm} />
|
|
|
|
<SearchForm/>
|
|
|
|
<FlashContainer component={FlashMessages}/>
|
|
|
|
</header>
|
|
)
|
|
}
|
|
|
|
module.exports = Header;
|