mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-22 18:31:57 +03:00
e6998afb40
refs. https://github.com/TryGhost/Ghost/issues/11342 - replaced Zapier and Amp logos for SVGs with transparent background so that there's no white background in night shift - inverted Unsplash icon in night shift (similarly to Mailchimp, Typeform etc.) - replaced ellipsis icon for SVG and handled night shift color change - removed unnecessary icon container drop shadow in integration detail pages for night shift
88 lines
4.5 KiB
Handlebars
88 lines
4.5 KiB
Handlebars
<section class="gh-canvas">
|
|
<GhCanvasHeader class="gh-canvas-header">
|
|
<h2 class="gh-canvas-title" data-test-screen-title>
|
|
<LinkTo @route="settings.integrations" data-test-link="integrations-back">Integrations</LinkTo>
|
|
<span>{{svg-jar "arrow-right"}}</span>
|
|
Zapier
|
|
</h2>
|
|
</GhCanvasHeader>
|
|
|
|
<section class="view-container bt b--lightgrey-d1 pt5">
|
|
<section class="app-grid">
|
|
<div class="app-cell">
|
|
<div class="bg-white mr3 display flex items-center justify-center br-pill shadow-1 pa3 dark-no-shadow">
|
|
<img class="app-icon" src="assets/img/zapier.svg" />
|
|
</div>
|
|
</div>
|
|
<div class="app-cell">
|
|
<h3>Zapier</h3>
|
|
<p>Automation for your favourite apps</p>
|
|
</div>
|
|
</section>
|
|
|
|
<div class="m15 mt4">
|
|
<table class="ma0 shadow-1 bg-grouped-table br3" style="table-layout: fixed">
|
|
<tbody>
|
|
<tr class="bb b--lightgrey">
|
|
<td class="pa3 w50 fw7">Admin API Key</td>
|
|
<td class="pa0">
|
|
<div class="pa3 relative truncate {{unless this.copyAdminKey.isRunning "hide-child-instant"}}">
|
|
<span class="midgrey" data-test-text="admin-key">
|
|
{{this.integration.adminKey.secret}}
|
|
</span>
|
|
<div class="absolute top-1 right-2">
|
|
<div class="pt1 pr3 pb1 pl3 bg-black-70 child br3 f8 nudge-top--4 nudge-right--1">
|
|
<button type="button" {{action (perform this.copyAdminKey)}} class="white fw4 flex items-center">
|
|
{{#if this.copyAdminKey.isRunning}}
|
|
{{svg-jar "check-circle" class="w3 v-mid mr2"}} Copied
|
|
{{else}}
|
|
Copy
|
|
{{/if}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="pa3 w50 fw7">API URL</td>
|
|
<td class="pa0 truncate">
|
|
<div class="pa3 relative truncate {{unless this.copyApiUrl.isRunning "hide-child-instant"}}">
|
|
<span class="midgrey" data-test-text="api-url">
|
|
{{this.apiUrl}}
|
|
</span>
|
|
<div class="absolute top-1 right-2">
|
|
<div class="pt1 pr3 pb1 pl3 bg-black-70 child br3 f8 nudge-top--4 nudge-right--1">
|
|
<button type="button" {{action (perform this.copyApiUrl)}} class="white fw4 flex items-center">
|
|
{{#if this.copyApiUrl.isRunning}}
|
|
{{svg-jar "check-circle" class="w3 v-mid mr2"}} Copied
|
|
{{else}}
|
|
Copy
|
|
{{/if}}
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div class="mt12" id="zapier-toggle">
|
|
<div class="gh-setting-content gh-setting-content--no-action">
|
|
<div class="gh-setting-title">Zapier Templates</div>
|
|
<div class="gh-setting-desc mt1">Explore pre-built templates for common automation tasks</div>
|
|
<div class="gh-setting-content-extended">
|
|
<div id="zapier-templates">
|
|
{{!-- we don't want the script loading during tests because it errors --}}
|
|
{{#unless this.isTesting}}
|
|
<script src="https://zapier.com/apps/embed/widget.js?services=ghost&container=true&limit=10&html_id=zapier-templates"></script>
|
|
{{/unless}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</section>
|