diff --git a/lib/ui/package.json b/lib/ui/package.json
index d361fd997e5..19075a73de5 100644
--- a/lib/ui/package.json
+++ b/lib/ui/package.json
@@ -29,6 +29,7 @@
"@storybook/core-events": "5.1.0-rc.4",
"@storybook/router": "5.1.0-rc.4",
"@storybook/theming": "5.1.0-rc.4",
+ "copy-to-clipboard": "^3.0.8",
"core-js": "^3.0.1",
"core-js-pure": "^3.0.1",
"fast-deep-equal": "^2.0.1",
diff --git a/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot b/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot
index 0f95e084a9f..72ce88ac119 100644
--- a/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot
+++ b/lib/ui/src/components/preview/__snapshots__/preview.stories.storyshot
@@ -2,7 +2,7 @@
exports[`Storyshots UI|Preview/Preview no tabs 1`] = `
Array [
- .emotion-22 {
+ .emotion-25 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -39,7 +39,7 @@ Array [
margin-left: 15px;
}
-.emotion-21 {
+.emotion-24 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -54,7 +54,7 @@ Array [
margin-left: 30px;
}
-.emotion-21 > * {
+.emotion-24 > * {
margin-right: 15px;
}
@@ -70,7 +70,7 @@ Array [
fill: currentColor;
}
-.emotion-23 {
+.emotion-26 {
overflow-y: hidden;
overflow-x: auto;
width: 100%;
@@ -134,7 +134,7 @@ Array [
}
@@ -344,7 +358,7 @@ Array [
exports[`Storyshots UI|Preview/Preview with tabs 1`] = `
Array [
- .emotion-28 {
+ .emotion-31 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -479,7 +493,7 @@ Array [
border-bottom-color: #1EA7FD;
}
-.emotion-27 {
+.emotion-30 {
display: -webkit-box;
display: -webkit-flex;
display: -ms-flexbox;
@@ -494,7 +508,7 @@ Array [
margin-left: 30px;
}
-.emotion-27 > * {
+.emotion-30 > * {
margin-right: 15px;
}
@@ -510,7 +524,7 @@ Array [
fill: currentColor;
}
-.emotion-29 {
+.emotion-32 {
overflow-y: hidden;
overflow-x: auto;
width: 100%;
@@ -581,7 +595,7 @@ Array [
}
diff --git a/lib/ui/src/components/preview/preview.js b/lib/ui/src/components/preview/preview.js
index 10405cf549c..16803f7aec3 100644
--- a/lib/ui/src/components/preview/preview.js
+++ b/lib/ui/src/components/preview/preview.js
@@ -2,6 +2,7 @@ import window from 'global';
import React, { Component, Fragment } from 'react';
import PropTypes from 'prop-types';
import memoize from 'memoizerific';
+import copy from 'copy-to-clipboard';
import { styled } from '@storybook/theming';
import { SET_CURRENT_STORY } from '@storybook/core-events';
@@ -160,6 +161,24 @@ const getTools = memoize(10)(
),
},
+ {
+ match: p => p.viewMode === 'story',
+ render: () => (
+
+ copy(
+ `${window.location.origin}${
+ window.location.pathname
+ }${baseUrl}?id=${storyId}${stringifyQueryParams(queryParams)}`
+ )
+ }
+ title="Copy canvas link"
+ >
+
+
+ ),
+ },
]);
const filter = item =>