2022-03-17 09:39:57 +00:00
|
|
|
<!--
|
|
|
|
// 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">
|
2022-09-21 08:08:25 +00:00
|
|
|
import { Organization } from '@hcengineering/contact'
|
|
|
|
import { Ref } from '@hcengineering/core'
|
|
|
|
import { IntlString } from '@hcengineering/platform'
|
|
|
|
import { UserBox } from '@hcengineering/presentation'
|
|
|
|
import type { ButtonKind, ButtonSize } from '@hcengineering/ui'
|
2022-03-17 09:39:57 +00:00
|
|
|
import contact from '../plugin'
|
|
|
|
|
|
|
|
export let value: Ref<Organization> | undefined
|
|
|
|
export let label: IntlString = contact.string.Organization
|
|
|
|
export let onChange: (value: any) => void
|
2022-06-10 18:25:13 +00:00
|
|
|
|
|
|
|
export let kind: ButtonKind = 'no-border'
|
|
|
|
export let size: ButtonSize = 'small'
|
2022-09-14 04:53:48 +00:00
|
|
|
export let justify: 'left' | 'center' = 'left'
|
2022-06-10 18:25:13 +00:00
|
|
|
export let width: string | undefined = 'min-content'
|
2022-03-17 09:39:57 +00:00
|
|
|
</script>
|
2022-04-29 05:27:17 +00:00
|
|
|
|
2022-09-14 04:53:48 +00:00
|
|
|
<UserBox
|
|
|
|
_class={contact.class.Organization}
|
|
|
|
{label}
|
|
|
|
{value}
|
|
|
|
{kind}
|
|
|
|
{size}
|
2022-06-10 18:25:13 +00:00
|
|
|
{justify}
|
|
|
|
{width}
|
2022-09-14 04:53:48 +00:00
|
|
|
allowDeselect
|
|
|
|
titleDeselect={contact.string.Cancel}
|
|
|
|
on:change={(evt) => {
|
|
|
|
onChange(evt.detail)
|
2022-04-29 05:27:17 +00:00
|
|
|
}}
|
2022-09-14 04:53:48 +00:00
|
|
|
/>
|