Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: make default oembed panes equal to embed modal #292

Merged
merged 5 commits into from
Oct 31, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/components/Embed.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ import CopyButton from './CopyButton';
import Embedded from './Embedded';
import { SyncIcon, XIcon } from '@primer/octicons-react';

import { defaultPanes } from '../constants';

function TabButton({ children, active, onClick, disabled }) {
return (
<button
Expand Down Expand Up @@ -40,7 +42,7 @@ function Embed({ dispatch, dirty, gistId, gistVersion }) {
dispatch({ type: 'SAVE' });
}, [dirty, gistId, dispatch]);

const [panes, setPanes] = useState(['preview', 'result']);
const [panes, setPanes] = useState(defaultPanes);

const embedUrl =
[location.origin, 'embed', gistId, gistVersion].filter(Boolean).join('/') +
Expand Down
4 changes: 3 additions & 1 deletion src/components/Embedded.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import useParentMessaging from '../hooks/useParentMessaging';
import usePlayground from '../hooks/usePlayground';
import Loader from './Loader';

import { defaultPanes } from '../constants';

const SUPPORTED_PANES = {
markup: true,
preview: true,
Expand Down Expand Up @@ -46,7 +48,7 @@ function Embedded(props) {
.split(',')
.map((x) => x.trim())
.filter((x) => SUPPORTED_PANES[x])
: ['query', 'preview'];
: defaultPanes;

// TODO: we should add tabs to handle > 2 panes
const areaCount = panes.length;
Expand Down
2 changes: 2 additions & 0 deletions src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -113,3 +113,5 @@ export const links = {
url: 'https://testing-library.com/docs/guide-which-query',
},
};

export const defaultPanes = ['query', 'preview'];
23 changes: 15 additions & 8 deletions src/lambda/oembed/oembed.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ function getHostname(event, context) {
return JSON.parse(Buffer.from(netlify, 'base64').toString('utf-8')).site_url;
}

const PROVIDER = 'testing-playground.com';
const allowedPathsRegexp = new RegExp(/^\/(gist|embed)\/.*/);

function handler(event, context, callback) {
Expand All @@ -38,22 +39,28 @@ function handler(event, context, callback) {
);
}

const { hostname, pathname } = new URL(params.url);
const url = new URL(params.url);

// verify if the url is supported, basically we only allow localhost if we're
// running at localhost, and testing-playground.com as host. And either no
// path or /gist and /embed paths.
if (
(!host.includes(hostname) && hostname !== 'testing-playground.com') ||
(pathname && !allowedPathsRegexp.test(pathname))
(!host.includes(url.hostname) && url.hostname !== PROVIDER) ||
(url.pathname !== '/' && !allowedPathsRegexp.test(url.pathname))
) {
return callback(null, incorrectParams('unsupported url provided :/'));
}

// map /gist urls to /embed
const url = pathname.startsWith('/gist/')
? params.url.replace('/gist/', '/embed/')
: params.url;
// map / and /gist to /embed
url.pathname =
url.pathname === '/'
? '/embed'
: url.pathname.replace(/^\/gist\//, '/embed/');

// set default panes if no panes are provided, KEEP IN SYNC WITH /constants#defaultPanes !
if (!url.searchParams.has('panes')) {
url.searchParams.set('panes', 'query,preview');
}

callback(null, {
statusCode: 200,
Expand All @@ -63,7 +70,7 @@ function handler(event, context, callback) {
type: 'rich',
success: true,

provider_name: 'testing-playground.com',
provider_name: PROVIDER,
provider_url: host,

html: `<iframe src="${url}" height="${maxheight}" width="${maxwidth}" scrolling="no" frameBorder="0" allowTransparency="true" title="Testing Playground" style="overflow: hidden; display: block; width: 100%"></iframe>`,
Expand Down