This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// API endpoint for social links | |
server.get('/api/social-links', (req, res) => { | |
const params = { | |
type: 'social-links', | |
}; | |
return bucket.getObjects(params) | |
.then(objects => res.send(objects)) | |
.catch(err => res.status(404).json({ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const fetchPost = slug => fetch(`${API_URL}/post/${slug}`) | |
.then(res => res.json()) | |
.then(json => console.log(json)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* eslint-disable no-console */ | |
require('dotenv').config({ path: './.env.production' }); | |
const express = require('express'); | |
const bodyParser = require('body-parser'); | |
const corser = require('corser'); | |
const next = require('next'); | |
const routes = require('./routes'); | |
const algoliasearch = require('algoliasearch'); | |
const convertDataToAlgoliaObject = require('./utils/convertDataToAlgoliaObject'); | |
const fetch = require('isomorphic-fetch'); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const convertDataToAlgoliaObject = (data) => { | |
let asin; | |
let brand; | |
let categories; | |
let featured; | |
let price; | |
let thumbnail; | |
data.metafields.forEach((metafield) => { | |
switch (metafield.key) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Your init script | |
# | |
# Atom will evaluate this file each time a new window is opened. It is run | |
# after packages are loaded/activated and after the previous editor state | |
# has been restored. | |
# | |
# An example hack to log to the console when each text editor is saved. | |
# | |
# atom.workspace.observeTextEditors (editor) -> | |
# editor.onDidSave -> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import PropTypes from 'prop-types'; | |
import React from 'react'; | |
import { connect } from 'react-redux'; | |
import { useApolloClient } from '@apollo/react-hooks'; | |
import type { Dispatch } from 'redux'; | |
import consumerRequestActions from './consumerRequestActionsMap'; | |
import jobActions from './jobActionsMap'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const html = require('pa11y-reporter-html'); | |
const pa11y = require('pa11y'); | |
const fs = require('fs'); | |
const open = require('open'); | |
const [, , url] = process.argv; | |
(async () => { | |
console.log(`Signing in as admin user...`); | |
const results = await pa11y('https://workshop.dev.homee.com/login/internal', { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
import React from 'react'; | |
import css from 'styled-jsx/css'; | |
import classnames from 'classnames'; | |
import { useDispatch, useSelector } from 'react-redux'; | |
import { useApolloClient } from '@apollo/react-hooks'; | |
import pluralize from 'pluralize'; | |
import PropTypes from 'prop-types'; | |
import userHasLoginRole from '../../utils/userHasLoginRole'; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// @flow | |
// pages/test.jsx | |
import React from 'react'; | |
import Link from 'next/link'; | |
import LinkButton from '../components/homee-ui/LinkButton'; | |
export default () => ( | |
<div> | |
<Link href="/workbench/[bucket]" as="/workbench/active" passHref> |