2021-08-07 17:03:06 +00:00
|
|
|
//
|
|
|
|
// Copyright © 2020 Anticrm Platform Contributors.
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// 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
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// 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.
|
2021-12-15 09:04:43 +00:00
|
|
|
//
|
2021-08-07 17:03:06 +00:00
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
//
|
|
|
|
|
2022-01-06 11:38:40 +00:00
|
|
|
import { Ref, Space } from '@anticrm/core'
|
2021-12-15 09:04:43 +00:00
|
|
|
import type { IntlString, StatusCode } from '@anticrm/platform'
|
2021-08-07 17:03:06 +00:00
|
|
|
import { mergeIds } from '@anticrm/platform'
|
|
|
|
import recruit, { recruitId } from '@anticrm/recruit'
|
2022-02-25 09:02:38 +00:00
|
|
|
import { TagCategory } from '@anticrm/tags'
|
2022-03-04 09:01:46 +00:00
|
|
|
import { AnyComponent } from '@anticrm/ui'
|
2021-08-07 17:03:06 +00:00
|
|
|
|
|
|
|
export default mergeIds(recruitId, recruit, {
|
2021-09-16 09:46:04 +00:00
|
|
|
status: {
|
|
|
|
ApplicationExists: '' as StatusCode,
|
|
|
|
CandidateRequired: '' as StatusCode,
|
2022-03-10 09:04:08 +00:00
|
|
|
VacancyRequired: '' as StatusCode,
|
|
|
|
ReviewCategoryRequired: '' as StatusCode
|
2021-09-16 09:46:04 +00:00
|
|
|
},
|
2021-08-07 17:03:06 +00:00
|
|
|
string: {
|
|
|
|
CreateVacancy: '' as IntlString,
|
|
|
|
VacancyName: '' as IntlString,
|
2022-02-07 09:21:32 +00:00
|
|
|
VacancyPlaceholder: '' as IntlString,
|
2021-08-07 17:03:06 +00:00
|
|
|
VacancyDescription: '' as IntlString,
|
|
|
|
MakePrivate: '' as IntlString,
|
|
|
|
MakePrivateDescription: '' as IntlString,
|
|
|
|
CandidatesDescription: '' as IntlString,
|
2021-11-29 17:19:33 +00:00
|
|
|
CreateAnApplication: '' as IntlString,
|
|
|
|
NoApplicationsForCandidate: '' as IntlString,
|
2021-08-07 17:03:06 +00:00
|
|
|
FirstName: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
LastName: '' as IntlString,
|
|
|
|
Candidates: '' as IntlString,
|
|
|
|
CreateApplication: '' as IntlString,
|
2022-03-14 09:04:41 +00:00
|
|
|
ApplicationCreateLabel: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
Vacancy: '' as IntlString,
|
2022-03-14 09:04:41 +00:00
|
|
|
VacancyCreateLabel: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
SelectVacancy: '' as IntlString,
|
|
|
|
Candidate: '' as IntlString,
|
2022-03-14 09:04:41 +00:00
|
|
|
CandidateCreateLabel: '' as IntlString,
|
2022-01-14 09:06:32 +00:00
|
|
|
CreateCandidate: '' as IntlString,
|
2022-01-06 11:38:40 +00:00
|
|
|
AssignRecruiter: '' as IntlString,
|
|
|
|
Recruiters: '' as IntlString,
|
|
|
|
UnAssignRecruiter: '' as IntlString,
|
2022-01-12 09:18:50 +00:00
|
|
|
Create: '' as IntlString,
|
|
|
|
Applications: '' as IntlString,
|
|
|
|
ThisVacancyIsPrivate: '' as IntlString,
|
|
|
|
Description: '' as IntlString,
|
2022-03-10 09:04:08 +00:00
|
|
|
Verdict: '' as IntlString,
|
2022-01-14 09:06:32 +00:00
|
|
|
Company: '' as IntlString,
|
|
|
|
Edit: '' as IntlString,
|
|
|
|
Delete: '' as IntlString,
|
|
|
|
WorkLocationPreferences: '' as IntlString,
|
|
|
|
Onsite: '' as IntlString,
|
2022-02-16 09:02:31 +00:00
|
|
|
Remote: '' as IntlString,
|
|
|
|
SkillLabel: '' as IntlString,
|
2022-02-23 16:10:11 +00:00
|
|
|
SkillsLabel: '' as IntlString,
|
2022-03-14 09:04:41 +00:00
|
|
|
SkillCreateLabel: '' as IntlString,
|
2022-02-23 16:10:11 +00:00
|
|
|
General: '' as IntlString,
|
|
|
|
Members: '' as IntlString,
|
|
|
|
Yes: '' as IntlString,
|
|
|
|
No: '' as IntlString,
|
|
|
|
NA: '' as IntlString,
|
|
|
|
PersonFirstNamePlaceholder: '' as IntlString,
|
|
|
|
PersonLastNamePlaceholder: '' as IntlString,
|
|
|
|
Location: '' as IntlString,
|
2022-03-04 09:01:46 +00:00
|
|
|
Title: '' as IntlString,
|
2022-03-10 09:04:08 +00:00
|
|
|
Vacancies: '' as IntlString,
|
|
|
|
|
|
|
|
Review: '' as IntlString,
|
2022-03-14 09:04:41 +00:00
|
|
|
ReviewCreateLabel: '' as IntlString,
|
2022-03-10 09:04:08 +00:00
|
|
|
ReviewCategory: '' as IntlString,
|
|
|
|
CreateReviewCategory: '' as IntlString,
|
|
|
|
ReviewCategoryName: '' as IntlString,
|
|
|
|
ReviewCategoryTitle: '' as IntlString,
|
|
|
|
ReviewCategoryPlaceholder: '' as IntlString,
|
|
|
|
ReviewCategoryDescription: '' as IntlString,
|
|
|
|
ThisReviewCategoryIsPrivate: '' as IntlString,
|
|
|
|
CreateReview: '' as IntlString,
|
2022-03-19 16:17:47 +00:00
|
|
|
CreateReviewParams: '' as IntlString,
|
2022-03-10 09:04:08 +00:00
|
|
|
SelectReviewCategory: '' as IntlString,
|
|
|
|
Reviews: '' as IntlString,
|
|
|
|
NoReviewForCandidate: '' as IntlString,
|
|
|
|
CreateAnReview: '' as IntlString,
|
|
|
|
CreateOpinion: '' as IntlString,
|
|
|
|
Opinion: '' as IntlString,
|
|
|
|
OpinionValue: '' as IntlString,
|
|
|
|
OpinionValuePlaceholder: '' as IntlString,
|
|
|
|
OpinionSave: '' as IntlString,
|
|
|
|
Opinions: '' as IntlString,
|
|
|
|
OpinionShortLabel: '' as IntlString,
|
|
|
|
ReviewShortLabel: '' as IntlString,
|
|
|
|
StartDate: '' as IntlString,
|
|
|
|
DueDate: '' as IntlString,
|
2022-03-14 09:05:02 +00:00
|
|
|
CandidateReviews: '' as IntlString,
|
2022-03-18 06:37:49 +00:00
|
|
|
AddDescription: '' as IntlString
|
2022-01-06 11:38:40 +00:00
|
|
|
},
|
|
|
|
space: {
|
|
|
|
CandidatesPublic: '' as Ref<Space>
|
2022-02-25 09:02:38 +00:00
|
|
|
},
|
|
|
|
category: {
|
|
|
|
Other: '' as Ref<TagCategory>,
|
|
|
|
Category: '' as Ref<TagCategory>
|
2022-03-04 09:01:46 +00:00
|
|
|
},
|
|
|
|
component: {
|
|
|
|
VacancyItemPresenter: '' as AnyComponent,
|
2022-03-10 09:04:08 +00:00
|
|
|
VacancyCountPresenter: '' as AnyComponent,
|
2022-03-14 09:05:02 +00:00
|
|
|
OpinionsPresenter: '' as AnyComponent,
|
2022-03-18 09:58:34 +00:00
|
|
|
VacancyModifiedPresenter: '' as AnyComponent,
|
|
|
|
EditReviewCategory: '' as AnyComponent
|
2021-08-07 17:03:06 +00:00
|
|
|
}
|
|
|
|
})
|