mirror of
https://github.com/hcengineering/platform.git
synced 2025-02-09 04:18:33 +00:00
62 lines
1.9 KiB
Svelte
62 lines
1.9 KiB
Svelte
![]() |
<!--
|
||
|
// Copyright © 2020, 2021 Anticrm Platform Contributors.
|
||
|
// Copyright © 2021, 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 { Channel } from '@anticrm/contact'
|
||
|
import type { Doc,Ref } from '@anticrm/core'
|
||
|
import presentation,{ Channels } from '@anticrm/presentation'
|
||
|
import { CircleButton,IconAdd,Label,showPopup } from '@anticrm/ui'
|
||
|
import { createEventDispatcher } from 'svelte'
|
||
|
import contact from '../plugin'
|
||
|
|
||
|
export let integrations: Set<Ref<Doc>> | undefined = undefined
|
||
|
|
||
|
export let channels: Channel[] = []
|
||
|
|
||
|
const dispatch = createEventDispatcher()
|
||
|
</script>
|
||
|
|
||
|
{#if !channels.length}
|
||
|
<CircleButton
|
||
|
icon={IconAdd}
|
||
|
size={'small'}
|
||
|
selected
|
||
|
on:click={(ev) =>
|
||
|
showPopup(contact.component.SocialEditor, { values: channels }, ev.target, (result) => {
|
||
|
dispatch('change', result)
|
||
|
})}
|
||
|
/>
|
||
|
<span><Label label={presentation.string.AddSocialLinks} /></span>
|
||
|
{:else}
|
||
|
<Channels value={channels} size={'small'} {integrations} on:click />
|
||
|
<div class="ml-1">
|
||
|
<CircleButton
|
||
|
icon={contact.icon.Edit}
|
||
|
size={'small'}
|
||
|
selected
|
||
|
on:click={(ev) =>
|
||
|
showPopup(contact.component.SocialEditor, { values: channels }, ev.target, (result) => {
|
||
|
dispatch('change', result)
|
||
|
})}
|
||
|
/>
|
||
|
</div>
|
||
|
{/if}
|
||
|
|
||
|
<style lang="scss">
|
||
|
span {
|
||
|
margin-left: 0.5rem;
|
||
|
}
|
||
|
</style>
|