2022-03-04 09:01:46 +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-04-06 10:20:35 +00:00
|
|
|
import core, { Doc, DocumentQuery, FindOptions, Ref, Space } from '@anticrm/core'
|
|
|
|
import recruit, { Applicant } from '@anticrm/recruit'
|
2022-03-04 09:01:46 +00:00
|
|
|
import task from '@anticrm/task'
|
|
|
|
import { Table } from '@anticrm/view-resources'
|
|
|
|
|
|
|
|
export let value: Ref<Space>
|
|
|
|
export let resultQuery: DocumentQuery<Doc>
|
|
|
|
|
2022-04-06 10:20:35 +00:00
|
|
|
const options: FindOptions<Applicant> = {
|
|
|
|
lookup: {
|
|
|
|
state: task.class.State,
|
|
|
|
space: core.class.Space,
|
|
|
|
doneState: task.class.DoneState,
|
|
|
|
attachedTo: recruit.mixin.Candidate
|
|
|
|
},
|
|
|
|
limit: 10
|
|
|
|
}
|
2022-03-04 09:01:46 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class='popup-table'>
|
|
|
|
<Table
|
|
|
|
_class={recruit.class.Applicant}
|
|
|
|
config={['', '$lookup.attachedTo', '$lookup.state', '$lookup.doneState', 'modifiedOn']}
|
2022-04-06 10:20:35 +00:00
|
|
|
options={options}
|
2022-03-04 09:01:46 +00:00
|
|
|
query={ { ...(resultQuery ?? {}), space: value } }
|
|
|
|
loadingProps={{ length: 0 }}
|
|
|
|
/>
|
|
|
|
</div>
|
|
|
|
<style lang="scss">
|
|
|
|
.popup-table {
|
|
|
|
overflow: auto;
|
|
|
|
// width: 70rem;
|
|
|
|
// max-width: 70rem !important;
|
|
|
|
max-height: 30rem;
|
|
|
|
}
|
|
|
|
</style>
|