mirror of
https://github.com/hcengineering/platform.git
synced 2025-04-23 16:56:07 +00:00
Signed-off-by: Sergei Ogorelkov <sergei.ogorelkov@xored.com>
This commit is contained in:
parent
a224a154e5
commit
b1d751e60f
@ -13,49 +13,26 @@
|
|||||||
// limitations under the License.
|
// limitations under the License.
|
||||||
-->
|
-->
|
||||||
<script lang="ts">
|
<script lang="ts">
|
||||||
import { Button } from '@anticrm/ui'
|
|
||||||
import tracker from '../../../plugin'
|
import tracker from '../../../plugin'
|
||||||
|
import CopyToClipboardButton from './CopyToClipboardButton.svelte'
|
||||||
|
|
||||||
export let issueUrl: string | undefined = undefined
|
export let issueUrl: string | undefined = undefined
|
||||||
export let issueId: string | undefined = undefined
|
export let issueId: string | undefined = undefined
|
||||||
export let issueBranch: string | undefined = undefined
|
export let issueBranch: string | undefined = undefined
|
||||||
|
|
||||||
function copy (text?: string): void {
|
|
||||||
if (text) {
|
|
||||||
navigator.clipboard.writeText(text)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
{#if issueUrl}
|
{#if issueUrl}
|
||||||
<Button
|
<CopyToClipboardButton icon={tracker.icon.Issue} title={tracker.string.CopyIssueUrl} text={issueUrl} />
|
||||||
icon={tracker.icon.Issue}
|
|
||||||
title={tracker.string.CopyIssueUrl}
|
|
||||||
width="min-content"
|
|
||||||
size="small"
|
|
||||||
kind="transparent"
|
|
||||||
on:click={() => copy(issueUrl)}
|
|
||||||
/>
|
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if issueId}
|
{#if issueId}
|
||||||
<Button
|
<CopyToClipboardButton icon={tracker.icon.Views} title={tracker.string.CopyIssueId} text={issueId} />
|
||||||
icon={tracker.icon.Views}
|
|
||||||
title={tracker.string.CopyIssueId}
|
|
||||||
width="min-content"
|
|
||||||
size="small"
|
|
||||||
kind="transparent"
|
|
||||||
on:click={() => copy(issueId)}
|
|
||||||
/>
|
|
||||||
{/if}
|
{/if}
|
||||||
|
|
||||||
{#if issueBranch}
|
{#if issueBranch}
|
||||||
<Button
|
<CopyToClipboardButton
|
||||||
icon={tracker.icon.TrackerApplication}
|
icon={tracker.icon.TrackerApplication}
|
||||||
title={tracker.string.CopyIssueBranch}
|
title={tracker.string.CopyIssueBranch}
|
||||||
width="min-content"
|
text={issueBranch}
|
||||||
size="small"
|
|
||||||
kind="transparent"
|
|
||||||
on:click={() => issueBranch}
|
|
||||||
/>
|
/>
|
||||||
{/if}
|
{/if}
|
||||||
|
@ -0,0 +1,32 @@
|
|||||||
|
<!--
|
||||||
|
// Copyright © 2022 Hardcore Engineering Inc.
|
||||||
|
//
|
||||||
|
// Licensed under the Eclipse Public License, Version 2.0 (the "License");
|
||||||
|
// you may not use this file except in compliance with the License. You may
|
||||||
|
// obtain a copy of the License at https://www.eclipse.org/legal/epl-2.0
|
||||||
|
//
|
||||||
|
// Unless required by applicable law or agreed to in writing, software
|
||||||
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
//
|
||||||
|
// See the License for the specific language governing permissions and
|
||||||
|
// limitations under the License.
|
||||||
|
-->
|
||||||
|
<script lang="ts">
|
||||||
|
import { Asset, IntlString } from '@anticrm/platform'
|
||||||
|
import { Button, Tooltip } from '@anticrm/ui'
|
||||||
|
|
||||||
|
export let icon: Asset
|
||||||
|
export let title: IntlString
|
||||||
|
export let text: string
|
||||||
|
</script>
|
||||||
|
|
||||||
|
<Tooltip label={title} direction="bottom" fill>
|
||||||
|
<Button
|
||||||
|
{icon}
|
||||||
|
width="min-content"
|
||||||
|
size="small"
|
||||||
|
kind="transparent"
|
||||||
|
on:click={() => navigator.clipboard.writeText(text)}
|
||||||
|
/>
|
||||||
|
</Tooltip>
|
Loading…
Reference in New Issue
Block a user