platform/plugins/contact-resources/src/components/SocialEditor.svelte

107 lines
3.1 KiB
Svelte
Raw Normal View History

<!--
// Copyright © 2020, 2021 Anticrm Platform Contributors.
// Copyright © 2021 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 type { Ref } from '@anticrm/core'
import { createEventDispatcher } from 'svelte'
import { EditBox, Button, ScrollBox } from '@anticrm/ui'
import { getClient } from '@anticrm/presentation'
import { ChannelProvider, Channel } from '@anticrm/contact'
import contact from '../plugin'
export let values: Channel[]
let newValues: Channel[] = []
const dispatch = createEventDispatcher()
let providers: ChannelProvider[] = []
function findValue(provider: Ref<ChannelProvider>): number {
for (let i = 0; i<values.length; i++) {
if (values[i].provider === provider) return i
}
return -1
}
const client = getClient()
client.findAll(contact.class.ChannelProvider, {}).then(result => {
providers = result
for (const provider of providers) {
const i = findValue(provider._id)
if (i !== -1) {
newValues.push({ provider: provider._id, value: values[i].value })
} else {
newValues.push({ provider: provider._id, value: '' })
}
}
})
function filterUndefined(channels: Channel[]): Channel[] {
return channels.filter(channel => channel.value !== undefined && channel.value.length > 0)
}
</script>
<div class="popup">
<ScrollBox vertical stretch>
<div class="popup-block">
<span>Contact Links</span>
{#each providers as provider, i}
<EditBox label={provider.label} placeholder={provider.placeholder} bind:value={newValues[i].value} maxWidth={'14.5rem'}/>
{/each}
</div>
</ScrollBox>
<div class="buttons">
<div class="btn"><Button label={contact.string.Apply} width={'100%'} on:click={() => { dispatch('close', filterUndefined(newValues)) }}/></div>
</div>
</div>
<style lang="scss">
.popup {
display: flex;
flex-direction: column;
padding: 1.5rem 1.25rem 1.25rem;
width: 17rem;
max-width: 17rem;
height: 22rem;
color: var(--theme-caption-color);
background-color: var(--theme-button-bg-hovered);
border: 1px solid var(--theme-button-border-enabled);
border-radius: .75rem;
box-shadow: 0px 1.25rem 3.75rem rgba(0, 0, 0, .6);
&-block {
display: grid;
grid-auto-flow: row;
row-gap: .75rem;
span {
font-weight: 600;
font-size: 0.625rem;
color: var(--theme-caption-color);
text-transform: uppercase;
}
}
}
.buttons {
display: flex;
align-items: center;
margin-top: 1rem;
.btn { flex-grow: 1; }
}
</style>