af93366fb0
* V3-2076 Do not allow users to type more than the allowed number of characters in the create project name field
278 lines
9.2 KiB
Vue
278 lines
9.2 KiB
Vue
// Copyright (C) 2019 Storj Labs, Inc.
|
|
// See LICENSE for copying information.
|
|
|
|
<template>
|
|
<div class="new-project-popup-container" v-on:keyup.enter="createProjectClick" v-on:keyup.esc="onCloseClick">
|
|
<div class="new-project-popup" id="newProjectPopup" >
|
|
<div class="new-project-popup__info-panel-container">
|
|
<h2 class="new-project-popup__info-panel-container__main-label-text">Create a Project</h2>
|
|
<img src="@/../static/images/dashboard/CreateNewProject.png" alt="">
|
|
</div>
|
|
<div class="new-project-popup__form-container">
|
|
<HeaderedInput
|
|
label="Project Name"
|
|
additionalLabel="Up To 20 Characters"
|
|
placeholder="Enter Project Name"
|
|
class="full-input"
|
|
width="100%"
|
|
maxSymbols="20"
|
|
:error="nameError"
|
|
@setData="setProjectName">
|
|
</HeaderedInput>
|
|
<HeaderedInput
|
|
label="Description"
|
|
placeholder="Enter Project Description"
|
|
additional-label="Optional"
|
|
class="full-input"
|
|
isMultiline="true"
|
|
height="100px"
|
|
width="100%"
|
|
@setData="setProjectDescription">
|
|
</HeaderedInput>
|
|
<div class="new-project-popup__form-container__button-container">
|
|
<Button label="Cancel" width="205px" height="48px" :onPress="onCloseClick" isWhite="true"/>
|
|
<Button label="Next" width="205px" height="48px" :onPress="createProjectClick"/>
|
|
</div>
|
|
</div>
|
|
<div class="new-project-popup__close-cross-container" @click="onCloseClick">
|
|
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
<path d="M15.7071 1.70711C16.0976 1.31658 16.0976 0.683417 15.7071 0.292893C15.3166 -0.0976311 14.6834 -0.0976311 14.2929 0.292893L15.7071 1.70711ZM0.292893 14.2929C-0.0976311 14.6834 -0.0976311 15.3166 0.292893 15.7071C0.683417 16.0976 1.31658 16.0976 1.70711 15.7071L0.292893 14.2929ZM1.70711 0.292893C1.31658 -0.0976311 0.683417 -0.0976311 0.292893 0.292893C-0.0976311 0.683417 -0.0976311 1.31658 0.292893 1.70711L1.70711 0.292893ZM14.2929 15.7071C14.6834 16.0976 15.3166 16.0976 15.7071 15.7071C16.0976 15.3166 16.0976 14.6834 15.7071 14.2929L14.2929 15.7071ZM14.2929 0.292893L0.292893 14.2929L1.70711 15.7071L15.7071 1.70711L14.2929 0.292893ZM0.292893 1.70711L14.2929 15.7071L15.7071 14.2929L1.70711 0.292893L0.292893 1.70711Z" fill="#384B65"/>
|
|
</svg>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { Component, Vue } from 'vue-property-decorator';
|
|
import HeaderedInput from '@/components/common/HeaderedInput.vue';
|
|
import Checkbox from '@/components/common/Checkbox.vue';
|
|
import Button from '@/components/common/Button.vue';
|
|
import { APP_STATE_ACTIONS, NOTIFICATION_ACTIONS, PROJETS_ACTIONS } from '@/utils/constants/actionNames';
|
|
import { PM_ACTIONS } from '@/utils/constants/actionNames';
|
|
import { TeamMember } from '../../types/teamMembers';
|
|
import { RequestResponse } from '../../types/response';
|
|
import { CreateProjectModel, Project } from '@/types/projects';
|
|
|
|
@Component({
|
|
components: {
|
|
HeaderedInput,
|
|
Checkbox,
|
|
Button,
|
|
}
|
|
})
|
|
export default class NewProjectPopup extends Vue {
|
|
private projectName: string = '';
|
|
private description: string = '';
|
|
private nameError: string = '';
|
|
private createdProjectId: string = '';
|
|
private isLoading: boolean = false;
|
|
|
|
public setProjectName (value: string): void {
|
|
this.projectName = value;
|
|
this.nameError = '';
|
|
}
|
|
|
|
public setProjectDescription (value: string): void {
|
|
this.description = value;
|
|
}
|
|
|
|
public onCloseClick (): void {
|
|
this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_NEW_PROJ);
|
|
}
|
|
|
|
public async createProjectClick (): Promise<void> {
|
|
if (this.isLoading) {
|
|
return;
|
|
}
|
|
|
|
this.isLoading = true;
|
|
|
|
if (!this.validateProjectName()) {
|
|
this.isLoading = false;
|
|
|
|
return;
|
|
}
|
|
|
|
if (!await this.createProject()) {
|
|
this.isLoading = false;
|
|
|
|
return;
|
|
}
|
|
|
|
this.selectCreatedProject();
|
|
|
|
this.fetchProjectMembers();
|
|
|
|
this.checkIfsFirstProject();
|
|
|
|
this.isLoading = false;
|
|
}
|
|
|
|
private validateProjectName(): boolean {
|
|
this.projectName = this.projectName.trim();
|
|
|
|
const rgx = /^[^/]+$/;
|
|
if (!rgx.test(this.projectName)) {
|
|
this.nameError = 'Name for project is invalid!';
|
|
|
|
return false;
|
|
}
|
|
|
|
if (this.projectName.length > 20) {
|
|
this.nameError = 'Name should be less than 21 character!';
|
|
|
|
return false;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
private async createProject(): Promise<boolean> {
|
|
const project: CreateProjectModel = {
|
|
name: this.projectName,
|
|
description: this.description,
|
|
};
|
|
|
|
let response: RequestResponse<Project> = await this.$store.dispatch(PROJETS_ACTIONS.CREATE, project);
|
|
if (!response.isSuccess) {
|
|
this.notifyError(response.errorMessage);
|
|
|
|
return false;
|
|
}
|
|
this.createdProjectId = response.data.id;
|
|
|
|
return true;
|
|
}
|
|
|
|
private selectCreatedProject(): void {
|
|
this.$store.dispatch(PROJETS_ACTIONS.SELECT, this.createdProjectId);
|
|
|
|
this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_NEW_PROJ);
|
|
}
|
|
|
|
private checkIfsFirstProject(): void {
|
|
let isFirstProject = this.$store.state.projectsModule.projects.length === 1;
|
|
|
|
isFirstProject
|
|
? this.$store.dispatch(APP_STATE_ACTIONS.TOGGLE_SUCCESSFUL_PROJECT_CREATION_POPUP)
|
|
: this.notifySuccess('Project created successfully!');
|
|
}
|
|
|
|
private async fetchProjectMembers(): Promise<any> {
|
|
this.$store.dispatch(PM_ACTIONS.SET_SEARCH_QUERY, '');
|
|
|
|
const response: RequestResponse<TeamMember[]> = await this.$store.dispatch(PM_ACTIONS.FETCH);
|
|
if (!response.isSuccess) {
|
|
this.notifyError(response.errorMessage);
|
|
}
|
|
}
|
|
|
|
private notifyError(message: string): void {
|
|
this.$store.dispatch(NOTIFICATION_ACTIONS.ERROR, message);
|
|
}
|
|
|
|
private notifySuccess(message: string): void {
|
|
this.$store.dispatch(NOTIFICATION_ACTIONS.SUCCESS, message);
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.new-project-popup-container {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background-color: rgba(134, 134, 148, 0.4);
|
|
z-index: 1121;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.input-container.full-input {
|
|
width: 100%;
|
|
}
|
|
|
|
.new-project-popup {
|
|
width: 100%;
|
|
max-width: 845px;
|
|
height: 400px;
|
|
background-color: #FFFFFF;
|
|
border-radius: 6px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
position: relative;
|
|
justify-content: center;
|
|
padding: 100px 100px 100px 80px;
|
|
|
|
&__info-panel-container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: flex-start;
|
|
align-items: center;
|
|
margin-right: 55px;
|
|
height: 535px;
|
|
|
|
&__main-label-text {
|
|
font-family: 'font_bold';
|
|
font-size: 32px;
|
|
line-height: 39px;
|
|
color: #384B65;
|
|
margin-bottom: 60px;
|
|
margin-top: 50px;
|
|
}
|
|
}
|
|
|
|
&__form-container {
|
|
width: 100%;
|
|
max-width: 520px;
|
|
|
|
&__button-container {
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
margin-top: 30px;
|
|
}
|
|
}
|
|
|
|
&__close-cross-container {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
position: absolute;
|
|
right: 30px;
|
|
top: 40px;
|
|
height: 24px;
|
|
width: 24px;
|
|
cursor: pointer;
|
|
|
|
&:hover svg path {
|
|
fill: #2683FF;
|
|
}
|
|
}
|
|
}
|
|
|
|
@media screen and (max-width: 720px) {
|
|
.new-project-popup {
|
|
|
|
&__info-panel-container {
|
|
display: none;
|
|
|
|
}
|
|
|
|
&__form-container {
|
|
|
|
&__button-container {
|
|
width: 100%;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
</style>
|