quintype-toddy-libs
v1.5.0
Published
Libraries to help build Quintype Node.js apps
Downloads
28
Readme
Quintype Toddy Libs
This is a set of libraries that is to be used to build a Quintype Node App. This README servers as documentation of the architecture. Please see malibu for a reference application using this architecture.
Architecture
Isomorphic flow
Server Side Flow
- If no 'regular' route is caught, it goes to the isomorphic handler
- The current route is matched via matchBestRoute (see routing)
- If a route is matched, we load data via the
loadData(pageType)
function. - A redux store is created based on the loaded data
- We render the
IsomorphicComponent
, which determines which page to render based onpageType
, from the store
Client Side Flow
- The
startApp()
function starts as soon as the JS loads (async) - The
startApp()
function calls/route-data.json?route=/current/path
. - The server looks at
/current/path
, matching it against its known routes, and sends back thepageType
, and data fromloadData(pageType)
- A redux store is created based on the loaded data
- We render the
IsomorphicComponent
, which determines which page to render based onpageType
, from the store
Links between pages
- The client is loaded, and you click on a link, there should be no need to reload the page
- Instead, the link should make a call to
/route-data.json?route=/current/path
, and continue from step 2 of client side app
Service Worker
- Service Workers act as a proxy between your browser, and all network requests (including XHR, Assets, etc...). A service worker is registered by the
app.js
- When the service worker gets registered, it downloads a minimum set of files for offline use. Typically, this includes [/shell.html, app.js, app.css] and others
- When you go to a page in the browser, the service worker wakes up. It decides if it can handle the request (by matching against the same routes), and renders the shell.html if possible
- If the shell was rendered, the JS will wake up and continue with the client flow from step 4
- If no shell was rendered, the call will fallback to the server, and proceed normally.
Service Worker - API Caching (not implemented in app)
- TODO - Service workers can also cache API requests, so that your app works totally offline
Routing
This app aims to be a Progressive Web App. Instead of guessing routes, it looks at the config to dynamically generate the required routes. For example, with sections /politics and /politics/karnataka, it will generate the following routes: [/politics, /politics/karnataka, /politics/:storySlug, /politics/*/:storySlug].
These routes are exposed via the generateRoutes
function, and matched using the matchBestRoute
function. This is embedded in three places:
- Server, for server side rendering
- The Service Worker, for deciding which pages are part of the PWA
- The Client js,
Implementing a new page
In your server.js, you will notice something like the following
isomorphicRoutes(app, {
generateRoutes: generateRoutes,
loadData: loadData,
pickComponent: pickComponent,
});
This highlights the three important places to put stuff for an isomorphic app
- Match the route against a
pageType
, typically inapp/server/routes.js
(see the routing section above) - Load the Data Required for that
pageType
, typically inapp/server/load-data.js
. This returns a promise with required data. - Render the correct component for that
pageType
, typically inapp/isomorphic/pick-component.js
. This must be a pure component
Useful Components
BreakingNews
This component will automatically fetch breaking news every 30 seconds, and render the provided view.
import { renderBreakingNews } from 'quintype-toddy-libs/client/start';
const BreakingNewsView = (props) => <ul>{props.breakingNews.map((news) => <li key={news.id}>{news.headline}</li>)}</ul>
renderBreakingNews('breaking-news-container', store, BreakingNewsView);
ClientSideOnly
This component will be loaded by client, and bypassed when doing server side rendering.
const { ClientSideOnly } = require("quintype-toddy-libs/components/client-side-only");
<ClientSideOnly>
This will be shown only on the client side
</ClientSideOnly>
InfiniteScroll
This component can be used to implement InfiniteScroll. This is an internal component.
InfiniteStoryBase
This component can be used to implement InfiniteScroll on the story page. You will need to specify the function which renders the story (which will recieve props.index and props.story), and functions for triggering analytics.
const React = require("react");
const { BlankStory } = require("../story-templates/blank.jsx");
const { InfiniteStoryBase } = require("quintype-toddy-libs/components/infinite-story-base");
function StoryPageBase({index, story, otherProp}) {
// Can switch to a different template based story-template, or only show a spoiler if index > 0
return <BlankStory story={story} />
}
const FIELDS = "id,headline,slug,url,hero-image-s3-key,hero-image-metadata,first-published-at,last-published-at,alternative,published-at,author-name,author-id,sections,story-template,tags,cards";
function storyPageLoadItems(pageNumber) {
return global.superagent
.get("/api/v1/stories", {fields: FIELDS, limit:5, offset:5*pageNumber})
.then(response => response.body.stories.map(story => ({story: story, otherProp: "value"})));
}
function StoryPage(props) {
return <InfiniteStoryBase {...props}
render={StoryPageBase}
loadItems={storyPageLoadItems}
onItemFocus={(item) => console.log(`Story In View: ${item.story.headline}`)}
onInitialItemFocus={(item) => console.log(`Do Analytics ${item.story.headline}`)} />
}
exports.StoryPage = StoryPage;
Link
This component generates an anchor tag. Instead of doing a browser page load, it will go to the next page via AJAX. Analytics scripts will be fired correctly (and if not, it's a bug)
const { Link } = require("quintype-toddy-libs/components/link");
<Link href="/section/story-slug" otherLinkAttribute="value">Text here</Link>
LoadingIndicator
This component renders it's children when the app is moving between pages. It can be used to show a spinner. It always has the class "loading-indicator", and also "loading-indicator-loading" when loading.
const { LoadingIndicator } = require("quintype-toddy-libs/components/loading-indicator");
<LoadingIndicator>
<div className="spinner">Please Wait</div>
</LoadingIndicator>
NavigationComponentBase
This is a base component which must be subclassed, providing a navigateTo function.
class SearchComponent extends require("quintype-toddy-libs/components/navigation-component-base") {
render() { return <a href="#" onClick={() => this.navigateTo("/some-page-here")}>Link</a>}
}
ResponsiveImage
This component takes an image, and resizes it to the correct aspect ratio using imgix or thumbor.
const { ResponsiveImage } = require("quintype-toddy-libs/components/responsive-image");
<figure className="story-grid-item-image qt-image-16x9">
<ResponsiveImage slug={props.story["hero-image-s3-key"]} metadata={props.story["hero-image-metadata"]}
aspectRatio={[16,9]}
defaultWidth={480} widths={[250,480,640]} sizes="(max-width: 500px) 98%, (max-width: 768px) 48%, 23%"
imgParams={{auto:['format', 'compress']}}/>
</figure>
StoryElement
This component renders different types of story elements
const { StoryElement } = require("quintype-toddy-libs/components/story-element");
function StoryCard(props){
return <div>
{props.card['story-elements'].map((element, index) => <StoryElement element={element} key={index} story={props.story}></StoryElement>)}
</div>
}
References
- This architecture is heavily influenced by the method described in this video
- Code for the available video is available here
- I know there is a good tutorial video I've seen. But I can't remember where.
- Great intro to pwa