@akinon/projectzero 1.37.0-rc.8 ā 1.37.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +1 -57
- package/app-template/CHANGELOG.md +15 -461
- package/app-template/package.json +10 -10
- package/app-template/public/locales/en/account.json +4 -4
- package/app-template/public/locales/tr/account.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/coupons/page.tsx +4 -4
- package/app-template/src/app/[commerce]/[locale]/[currency]/account/profile/page.tsx +0 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx +8 -12
- package/app-template/src/components/checkbox.tsx +2 -2
- package/app-template/src/components/input.tsx +7 -19
- package/app-template/src/components/price.tsx +3 -3
- package/app-template/src/views/account/address-form.tsx +7 -22
- package/app-template/src/views/account/contact-form.tsx +6 -22
- package/app-template/src/views/account/favourite-products/favourite-products-list.tsx +1 -5
- package/app-template/src/views/category/filters/index.tsx +105 -5
- package/app-template/tsconfig.json +4 -14
- package/commands/create.ts +5 -29
- package/dist/commands/create.js +2 -25
- package/package.json +1 -1
- package/app-template/src/app/[commerce]/[locale]/[currency]/[...prettyurl]/page.tsx +0 -8
- package/app-template/src/views/category/filters/filter-item.tsx +0 -131
package/app-template/src/app/[commerce]/[locale]/[currency]/orders/completed/[token]/page.tsx
CHANGED
|
@@ -182,25 +182,21 @@ const CheckoutCompleted = ({
|
|
|
182
182
|
}}
|
|
183
183
|
>
|
|
184
184
|
{data.order.orderitem_set.map((item) => (
|
|
185
|
-
<div
|
|
186
|
-
|
|
187
|
-
className="flex justify-between gap-x-4 w-full"
|
|
188
|
-
>
|
|
189
|
-
<Link
|
|
190
|
-
className="flex justify-between gap-x-4 flex-1 items-center transition-all text-xs text-black-800 hover:text-secondary"
|
|
191
|
-
href={item.product.absolute_url}
|
|
192
|
-
passHref
|
|
193
|
-
>
|
|
185
|
+
<div key={`order-item-${item.id}`} className="flex">
|
|
186
|
+
<Link href={item.product.absolute_url} passHref>
|
|
194
187
|
<Image
|
|
195
188
|
src={item.product.image}
|
|
196
189
|
alt={item.product.name}
|
|
197
190
|
width={64}
|
|
198
191
|
height={96}
|
|
199
192
|
/>
|
|
200
|
-
|
|
201
|
-
<span>{item.product.name}</span>
|
|
202
193
|
</Link>
|
|
203
|
-
<div className="flex justify-
|
|
194
|
+
<div className="flex justify-between flex-1 items-center ml-4">
|
|
195
|
+
<>
|
|
196
|
+
<div className="text-xs text-black-800 transition-all w-full hover:text-secondary">
|
|
197
|
+
{item.product.name}
|
|
198
|
+
</div>
|
|
199
|
+
</>
|
|
204
200
|
<div>
|
|
205
201
|
{item.retail_price !== item.price && (
|
|
206
202
|
<div className="text-black-800 line-through text-xs min-w-max sm:text-sm">
|
|
@@ -3,7 +3,7 @@ import { CheckboxProps } from '@theme/components/types';
|
|
|
3
3
|
import { twMerge } from 'tailwind-merge';
|
|
4
4
|
|
|
5
5
|
const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>((props, ref) => {
|
|
6
|
-
const { children, checked
|
|
6
|
+
const { children, checked, error, ...rest } = props;
|
|
7
7
|
|
|
8
8
|
return (
|
|
9
9
|
<label className={twMerge('flex flex-col text-xs', props.className)}>
|
|
@@ -12,7 +12,7 @@ const Checkbox = forwardRef<HTMLInputElement, CheckboxProps>((props, ref) => {
|
|
|
12
12
|
type="checkbox"
|
|
13
13
|
{...rest}
|
|
14
14
|
ref={ref}
|
|
15
|
-
|
|
15
|
+
checked={checked ?? false}
|
|
16
16
|
className="w-4 h-4 shrink-0"
|
|
17
17
|
/>
|
|
18
18
|
{children && <span className="ml-2">{children}</span>}
|
|
@@ -1,28 +1,17 @@
|
|
|
1
1
|
import clsx from 'clsx';
|
|
2
|
-
import { forwardRef, FocusEvent, useState
|
|
2
|
+
import { forwardRef, FocusEvent, useState } from 'react';
|
|
3
3
|
import { Controller } from 'react-hook-form';
|
|
4
|
-
import {
|
|
4
|
+
import NumberFormat, { NumberFormatProps } from 'react-number-format';
|
|
5
5
|
import { InputProps } from '@theme/components/types';
|
|
6
6
|
import { twMerge } from 'tailwind-merge';
|
|
7
7
|
|
|
8
|
-
const PatternFormatWithRef = forwardRef(
|
|
9
|
-
(props: PatternFormatProps, ref: Ref<HTMLInputElement>) => {
|
|
10
|
-
return <PatternFormat {...props} getInputRef={ref} />;
|
|
11
|
-
}
|
|
12
|
-
);
|
|
13
|
-
PatternFormatWithRef.displayName = 'PatternFormatWithRef';
|
|
14
|
-
|
|
15
8
|
export const Input = forwardRef<
|
|
16
9
|
HTMLInputElement,
|
|
17
10
|
InputProps &
|
|
18
11
|
Pick<
|
|
19
|
-
|
|
20
|
-
'mask' | 'allowEmptyFormatting' | 'onValueChange'
|
|
21
|
-
>
|
|
22
|
-
format?: string;
|
|
23
|
-
defaultValue?: string;
|
|
24
|
-
type?: string;
|
|
25
|
-
}
|
|
12
|
+
NumberFormatProps,
|
|
13
|
+
'format' | 'mask' | 'allowEmptyFormatting' | 'onValueChange'
|
|
14
|
+
>
|
|
26
15
|
>((props, ref) => {
|
|
27
16
|
const [focused, setFocused] = useState(false);
|
|
28
17
|
const [hasValue, setHasValue] = useState(false);
|
|
@@ -48,7 +37,6 @@ export const Input = forwardRef<
|
|
|
48
37
|
),
|
|
49
38
|
props.className
|
|
50
39
|
);
|
|
51
|
-
|
|
52
40
|
const inputProps: any = {
|
|
53
41
|
id,
|
|
54
42
|
ref,
|
|
@@ -91,14 +79,14 @@ export const Input = forwardRef<
|
|
|
91
79
|
<Controller
|
|
92
80
|
name={props.name ?? ''}
|
|
93
81
|
control={props.control}
|
|
82
|
+
defaultValue={false}
|
|
94
83
|
render={({ field }) => (
|
|
95
|
-
<
|
|
84
|
+
<NumberFormat
|
|
96
85
|
format={format}
|
|
97
86
|
mask={mask ?? ''}
|
|
98
87
|
{...rest}
|
|
99
88
|
{...field}
|
|
100
89
|
{...inputProps}
|
|
101
|
-
type={props.type as 'text' | 'password' | 'tel'}
|
|
102
90
|
/>
|
|
103
91
|
)}
|
|
104
92
|
/>
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { useMemo } from 'react';
|
|
2
|
-
import {
|
|
2
|
+
import NumberFormat, { NumberFormatProps } from 'react-number-format';
|
|
3
3
|
import { getCurrency } from '@akinon/next/utils';
|
|
4
4
|
import { PriceProps } from '@theme/types';
|
|
5
5
|
import { useLocalization } from '@akinon/next/hooks';
|
|
6
6
|
|
|
7
|
-
export const Price = (props:
|
|
7
|
+
export const Price = (props: NumberFormatProps & PriceProps) => {
|
|
8
8
|
const {
|
|
9
9
|
value,
|
|
10
10
|
currencyCode,
|
|
@@ -38,7 +38,7 @@ export const Price = (props: NumericFormatProps & PriceProps) => {
|
|
|
38
38
|
);
|
|
39
39
|
|
|
40
40
|
return (
|
|
41
|
-
<
|
|
41
|
+
<NumberFormat
|
|
42
42
|
value={useNegative ? `-${useNegativeSpace}${_value}` : _value}
|
|
43
43
|
{...{
|
|
44
44
|
[useCurrencyAfterPrice ? 'suffix' : 'prefix']: currency
|
|
@@ -31,7 +31,7 @@ interface Props {
|
|
|
31
31
|
onSubmit: (data: any) => void;
|
|
32
32
|
}
|
|
33
33
|
|
|
34
|
-
const makeAddressFormSchema = (t, { phoneNumberLength
|
|
34
|
+
const makeAddressFormSchema = (t, { phoneNumberLength }) =>
|
|
35
35
|
yup.object().shape({
|
|
36
36
|
title: yup.string().required(t('account.address_book.form.error.required')),
|
|
37
37
|
first_name: yup
|
|
@@ -65,9 +65,8 @@ const makeAddressFormSchema = (t, { phoneNumberLength, postCodeLength }) =>
|
|
|
65
65
|
.max(255, t('account.address_book.form.error.line_max')),
|
|
66
66
|
postcode: yup
|
|
67
67
|
.string()
|
|
68
|
-
.
|
|
69
|
-
.
|
|
70
|
-
.max(postCodeLength, t('account.address_book.form.error.postcode_max'))
|
|
68
|
+
.min(5, t('account.address_book.form.error.postcode_min'))
|
|
69
|
+
.max(5, t('account.address_book.form.error.postcode_max'))
|
|
71
70
|
.required(t('account.address_book.form.error.required')),
|
|
72
71
|
company_name: yup.string().nullable(),
|
|
73
72
|
tax_no: yup.string().nullable(),
|
|
@@ -81,8 +80,7 @@ export const AddressForm = (props: Props) => {
|
|
|
81
80
|
const { data, onSubmit } = props;
|
|
82
81
|
const config = useAppSelector((state) => state.config);
|
|
83
82
|
const addressFormSchema = makeAddressFormSchema(t, {
|
|
84
|
-
phoneNumberLength: config.user_phone_format.length
|
|
85
|
-
postCodeLength: config.user_post_code_format.length
|
|
83
|
+
phoneNumberLength: config.user_phone_format.length
|
|
86
84
|
});
|
|
87
85
|
const {
|
|
88
86
|
register,
|
|
@@ -183,22 +181,12 @@ export const AddressForm = (props: Props) => {
|
|
|
183
181
|
if (data && country) {
|
|
184
182
|
reset({
|
|
185
183
|
...data,
|
|
186
|
-
is_corporate:
|
|
184
|
+
is_corporate:
|
|
185
|
+
String(data.is_corporate) === AddressType.company ? 'true' : 'false' // TODO: Fix this! This hack for radio buttons can't be set to boolean value
|
|
187
186
|
});
|
|
188
187
|
}
|
|
189
188
|
}, [data, country, reset]);
|
|
190
189
|
|
|
191
|
-
useEffect(() => {
|
|
192
|
-
if (selectedFormType !== AddressType.company) {
|
|
193
|
-
reset({
|
|
194
|
-
...watch(),
|
|
195
|
-
company_name: '',
|
|
196
|
-
tax_office: '',
|
|
197
|
-
tax_no: ''
|
|
198
|
-
});
|
|
199
|
-
}
|
|
200
|
-
}, [selectedFormType, reset, watch]);
|
|
201
|
-
|
|
202
190
|
return (
|
|
203
191
|
<form
|
|
204
192
|
onSubmit={handleSubmit(onSubmit)}
|
|
@@ -334,15 +322,12 @@ export const AddressForm = (props: Props) => {
|
|
|
334
322
|
)}
|
|
335
323
|
</label>
|
|
336
324
|
<Input
|
|
325
|
+
type="number"
|
|
337
326
|
label={t('account.address_book.form.post_code.placeholder')}
|
|
338
327
|
{...register('postcode')}
|
|
339
328
|
error={errors.postcode}
|
|
340
329
|
data-testid="address-form-post-code"
|
|
341
330
|
required
|
|
342
|
-
format={config.user_post_code_format.replaceAll(/\9/g, '#')}
|
|
343
|
-
control={control}
|
|
344
|
-
mask="_"
|
|
345
|
-
allowEmptyFormatting
|
|
346
331
|
/>
|
|
347
332
|
{selectedFormType === AddressType.company && (
|
|
348
333
|
<>
|
|
@@ -3,9 +3,9 @@ import {
|
|
|
3
3
|
Button,
|
|
4
4
|
FileInput,
|
|
5
5
|
Input,
|
|
6
|
-
Link,
|
|
7
6
|
LoaderSpinner,
|
|
8
|
-
Select
|
|
7
|
+
Select,
|
|
8
|
+
Link
|
|
9
9
|
} from '@theme/components';
|
|
10
10
|
import { useSession } from 'next-auth/react';
|
|
11
11
|
import { useEffect, useState } from 'react';
|
|
@@ -45,8 +45,7 @@ const contactFormSchema = (t) =>
|
|
|
45
45
|
.when('subject', {
|
|
46
46
|
is: (value) => value === '2',
|
|
47
47
|
then: yup.string().required(t('account.contact.form.error.required'))
|
|
48
|
-
})
|
|
49
|
-
file: yup.mixed()
|
|
48
|
+
})
|
|
50
49
|
});
|
|
51
50
|
|
|
52
51
|
const ContactForm = () => {
|
|
@@ -111,18 +110,8 @@ const ContactForm = () => {
|
|
|
111
110
|
resolver: yupResolver(contactFormSchema(t))
|
|
112
111
|
});
|
|
113
112
|
|
|
114
|
-
const onSubmit: SubmitHandler<ContactFormType> = (data
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
Object.keys(data ?? {}).forEach((key) => {
|
|
118
|
-
if (key === "file" && data[key]){
|
|
119
|
-
formData.append(key, data[key][0]);
|
|
120
|
-
} else if (data[key]) {
|
|
121
|
-
formData.append(key, data[key]);
|
|
122
|
-
}
|
|
123
|
-
});
|
|
124
|
-
|
|
125
|
-
sendContact(formData);
|
|
113
|
+
const onSubmit: SubmitHandler<ContactFormType> = (data) => {
|
|
114
|
+
sendContact(data);
|
|
126
115
|
};
|
|
127
116
|
|
|
128
117
|
const handleChange = (e) => {
|
|
@@ -253,12 +242,7 @@ const ContactForm = () => {
|
|
|
253
242
|
<label className="text-xs text-gray-800 mb-2 block">
|
|
254
243
|
{t('account.contact.form.file.title')}
|
|
255
244
|
</label>
|
|
256
|
-
<FileInput
|
|
257
|
-
name="file"
|
|
258
|
-
title="file"
|
|
259
|
-
className="w-full mb-5"
|
|
260
|
-
{...register('file')}
|
|
261
|
-
/>
|
|
245
|
+
<FileInput className="w-full mb-5" title="test" />
|
|
262
246
|
<Button type="submit" className="w-full font-medium">
|
|
263
247
|
{t('account.contact.form.submit_button')}
|
|
264
248
|
</Button>
|
|
@@ -30,11 +30,7 @@ const FavoriteProductsList = () => {
|
|
|
30
30
|
}
|
|
31
31
|
|
|
32
32
|
if (isLoading || isFetching) {
|
|
33
|
-
return
|
|
34
|
-
<div className="flex items-center justify-center h-80">
|
|
35
|
-
<LoaderSpinner />
|
|
36
|
-
</div>
|
|
37
|
-
);
|
|
33
|
+
return <LoaderSpinner />; // TODO: Fix loader spinner position
|
|
38
34
|
}
|
|
39
35
|
|
|
40
36
|
return (
|
|
@@ -1,14 +1,26 @@
|
|
|
1
1
|
'use client';
|
|
2
2
|
|
|
3
|
+
import { WIDGET_TYPE } from '@theme/types';
|
|
3
4
|
import clsx from 'clsx';
|
|
4
5
|
|
|
5
|
-
import { Button, Icon } from '@theme/components';
|
|
6
|
-
import {
|
|
6
|
+
import { Accordion, Button, Checkbox, Icon, Radio } from '@theme/components';
|
|
7
|
+
import { SizeFilter } from './size-filter';
|
|
8
|
+
|
|
9
|
+
import { useLocalization, useRouter } from '@akinon/next/hooks';
|
|
10
|
+
import { Facet, FacetChoice } from '@akinon/next/types';
|
|
7
11
|
import { useAppDispatch, useAppSelector } from '@akinon/next/redux/hooks';
|
|
8
|
-
import {
|
|
12
|
+
import {
|
|
13
|
+
resetSelectedFacets,
|
|
14
|
+
toggleFacet
|
|
15
|
+
} from '@theme/redux/reducers/category';
|
|
9
16
|
import CategoryActiveFilters from '@theme/views/category/category-active-filters';
|
|
10
17
|
import { useMemo } from 'react';
|
|
11
|
-
import {
|
|
18
|
+
import { commonProductAttributes } from '@theme/settings';
|
|
19
|
+
|
|
20
|
+
const COMPONENT_TYPES = {
|
|
21
|
+
[WIDGET_TYPE.category]: Radio,
|
|
22
|
+
[WIDGET_TYPE.multiselect]: Checkbox
|
|
23
|
+
};
|
|
12
24
|
|
|
13
25
|
interface Props {
|
|
14
26
|
isMenuOpen: boolean;
|
|
@@ -16,11 +28,31 @@ interface Props {
|
|
|
16
28
|
}
|
|
17
29
|
|
|
18
30
|
export const Filters = (props: Props) => {
|
|
31
|
+
const router = useRouter();
|
|
19
32
|
const facets = useAppSelector((state) => state.category.facets);
|
|
20
33
|
const dispatch = useAppDispatch();
|
|
21
34
|
const { t } = useLocalization();
|
|
22
35
|
const { isMenuOpen, setIsMenuOpen } = props;
|
|
23
36
|
|
|
37
|
+
const handleSelectFilter = ({
|
|
38
|
+
facet,
|
|
39
|
+
choice
|
|
40
|
+
}: {
|
|
41
|
+
facet: Facet;
|
|
42
|
+
choice: FacetChoice;
|
|
43
|
+
}) => {
|
|
44
|
+
if (facet.key === 'category_ids') {
|
|
45
|
+
router.push(choice.url);
|
|
46
|
+
} else {
|
|
47
|
+
dispatch(
|
|
48
|
+
toggleFacet({
|
|
49
|
+
facet,
|
|
50
|
+
choice
|
|
51
|
+
})
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
};
|
|
55
|
+
|
|
24
56
|
const haveFilter = useMemo(() => {
|
|
25
57
|
return (
|
|
26
58
|
facets.filter(
|
|
@@ -34,6 +66,10 @@ export const Filters = (props: Props) => {
|
|
|
34
66
|
dispatch(resetSelectedFacets());
|
|
35
67
|
};
|
|
36
68
|
|
|
69
|
+
const sizeKey = commonProductAttributes.find(
|
|
70
|
+
(item) => item.translationKey === 'size'
|
|
71
|
+
).key;
|
|
72
|
+
|
|
37
73
|
return (
|
|
38
74
|
<div
|
|
39
75
|
className={clsx(
|
|
@@ -52,7 +88,71 @@ export const Filters = (props: Props) => {
|
|
|
52
88
|
<span>{t('category.filters.ready_to_wear')}</span>
|
|
53
89
|
</div>
|
|
54
90
|
{facets.map((facet) => {
|
|
55
|
-
|
|
91
|
+
let Component = null;
|
|
92
|
+
const choices = [...facet.data.choices];
|
|
93
|
+
|
|
94
|
+
if (facet.key === sizeKey) {
|
|
95
|
+
// If it's a size facet, use the custom size filter component
|
|
96
|
+
Component = SizeFilter;
|
|
97
|
+
|
|
98
|
+
const order = ['xs', 's', 'm', 'l', 'xl'];
|
|
99
|
+
choices.sort((a, b) => {
|
|
100
|
+
return (
|
|
101
|
+
order.indexOf(a.label.toLowerCase()) -
|
|
102
|
+
order.indexOf(b.label.toLowerCase())
|
|
103
|
+
);
|
|
104
|
+
});
|
|
105
|
+
} else {
|
|
106
|
+
Component =
|
|
107
|
+
COMPONENT_TYPES[facet.widget_type] ||
|
|
108
|
+
COMPONENT_TYPES[WIDGET_TYPE.category];
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
return (
|
|
112
|
+
<Accordion
|
|
113
|
+
key={facet.key}
|
|
114
|
+
title={facet.name}
|
|
115
|
+
isCollapse={choices.some((choice) => choice.is_selected)}
|
|
116
|
+
dataTestId={`filter-${facet.name}`}
|
|
117
|
+
>
|
|
118
|
+
<div
|
|
119
|
+
className={clsx(
|
|
120
|
+
'flex gap-4 flex-wrap',
|
|
121
|
+
facet.key === sizeKey ? 'flex-row' : 'flex-col' // TODO: This condition must be refactor to a better way
|
|
122
|
+
)}
|
|
123
|
+
>
|
|
124
|
+
{choices.map((choice, index) => (
|
|
125
|
+
<Component // TODO: This dynamic component can be a hook or higher order component so it props can be standardized
|
|
126
|
+
key={choice.label}
|
|
127
|
+
data={choice}
|
|
128
|
+
name={facet.key}
|
|
129
|
+
onChange={() => {
|
|
130
|
+
if (facet.key !== sizeKey) {
|
|
131
|
+
// TODO: This condition must be refactor to a better way
|
|
132
|
+
handleSelectFilter({ facet, choice });
|
|
133
|
+
}
|
|
134
|
+
}}
|
|
135
|
+
onClick={() => {
|
|
136
|
+
if (facet.key === sizeKey) {
|
|
137
|
+
// TODO: This condition must be refactor to a better way
|
|
138
|
+
handleSelectFilter({ facet, choice });
|
|
139
|
+
}
|
|
140
|
+
}}
|
|
141
|
+
checked={choice.is_selected}
|
|
142
|
+
data-testid={`${choice.label.trim()}`}
|
|
143
|
+
>
|
|
144
|
+
{choice.label} (
|
|
145
|
+
<span
|
|
146
|
+
data-testid={`filter-count-${facet.name.toLowerCase()}-${index}`}
|
|
147
|
+
>
|
|
148
|
+
{choice.quantity}
|
|
149
|
+
</span>
|
|
150
|
+
)
|
|
151
|
+
</Component>
|
|
152
|
+
))}
|
|
153
|
+
</div>
|
|
154
|
+
</Accordion>
|
|
155
|
+
);
|
|
56
156
|
})}
|
|
57
157
|
<div className="lg:hidden">
|
|
58
158
|
<CategoryActiveFilters />
|
|
@@ -3,19 +3,7 @@
|
|
|
3
3
|
"display": "Default",
|
|
4
4
|
"compilerOptions": {
|
|
5
5
|
"baseUrl": "./src",
|
|
6
|
-
"paths": {
|
|
7
|
-
"@theme/*": ["./*"],
|
|
8
|
-
"@root/*": ["./app/[commerce]/[locale]/[currency]/*"],
|
|
9
|
-
"@product/*": ["./app/[commerce]/[locale]/[currency]/product/*"],
|
|
10
|
-
"@group-product/*": [
|
|
11
|
-
"./app/[commerce]/[locale]/[currency]/group-product/*"
|
|
12
|
-
],
|
|
13
|
-
"@category/*": ["./app/[commerce]/[locale]/[currency]/category/*"],
|
|
14
|
-
"@special-page/*": [
|
|
15
|
-
"./app/[commerce]/[locale]/[currency]/special-page/*"
|
|
16
|
-
],
|
|
17
|
-
"@flat-page/*": ["./app/[commerce]/[locale]/[currency]/flat-page/*"]
|
|
18
|
-
},
|
|
6
|
+
"paths": { "@theme/*": ["./*"] },
|
|
19
7
|
"allowSyntheticDefaultImports": true,
|
|
20
8
|
"composite": false,
|
|
21
9
|
"declaration": true,
|
|
@@ -52,5 +40,7 @@
|
|
|
52
40
|
".next/types/**/*.ts",
|
|
53
41
|
"../../packages/**/*"
|
|
54
42
|
],
|
|
55
|
-
"exclude": ["node_modules",
|
|
43
|
+
"exclude": ["node_modules",
|
|
44
|
+
"../../packages/projectzero/app-template"
|
|
45
|
+
]
|
|
56
46
|
}
|
package/commands/create.ts
CHANGED
|
@@ -3,7 +3,6 @@ import * as fs from 'fs';
|
|
|
3
3
|
import * as readline from 'readline';
|
|
4
4
|
import { slugify } from '../utils';
|
|
5
5
|
|
|
6
|
-
const { execSync } = require('child_process');
|
|
7
6
|
const loadingSpinner = require('loading-spinner');
|
|
8
7
|
|
|
9
8
|
interface Question {
|
|
@@ -140,8 +139,7 @@ export default async (): Promise<void> => {
|
|
|
140
139
|
const answers = await getAnswers();
|
|
141
140
|
const brandName =
|
|
142
141
|
answers.brandName === '.' ? path.basename(workingDir) : answers.brandName;
|
|
143
|
-
const projectDir =
|
|
144
|
-
const relativeProjectDir = answers.brandName === '.' ? '.' : slugify(brandName);
|
|
142
|
+
const projectDir = path.resolve(workingDir, slugify(brandName));
|
|
145
143
|
|
|
146
144
|
if (!fs.existsSync(projectDir)) {
|
|
147
145
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
@@ -174,34 +172,12 @@ export default async (): Promise<void> => {
|
|
|
174
172
|
name: slugify(brandName)
|
|
175
173
|
});
|
|
176
174
|
|
|
177
|
-
|
|
178
|
-
console.log('\x1b[34m%s\x1b[0m', '\nš Installing packages...\n');
|
|
179
|
-
|
|
180
|
-
execSync(`cd ${relativeProjectDir} && yarn install`, { stdio: 'ignore' });
|
|
181
|
-
|
|
182
175
|
loadingSpinner.stop();
|
|
183
176
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
\x1b[35m$ yarn dev\x1b[0m
|
|
190
|
-
\x1b[32mLaunches the development server.\x1b[0m
|
|
191
|
-
|
|
192
|
-
\x1b[35m$ yarn build\x1b[0m
|
|
193
|
-
\x1b[32mCompiles the app into static files for production.\x1b[0m
|
|
194
|
-
|
|
195
|
-
\x1b[35m$ yarn start\x1b[0m
|
|
196
|
-
\x1b[32mRuns the production server.\x1b[0m
|
|
197
|
-
`;
|
|
198
|
-
|
|
199
|
-
const getStartedMessage = answers.brandName === '.'
|
|
200
|
-
? 'To get started, you can type:\n\n \x1b[35m$ yarn dev\x1b[0m\n'
|
|
201
|
-
: `To get started, you can type:\n\n \x1b[35m$ cd ${relativeProjectDir}\x1b[0m\n \x1b[35m$ yarn dev\x1b[0m\n`;
|
|
177
|
+
console.log(
|
|
178
|
+
'\x1b[32m%s\x1b[0m',
|
|
179
|
+
`\n ā ${answers.brandName} project is ready.\n`
|
|
180
|
+
);
|
|
202
181
|
|
|
203
|
-
console.log('\x1b[32m%s\x1b[0m', successMessage);
|
|
204
|
-
console.log('\x1b[36m%s\x1b[0m', getStartedMessage);
|
|
205
|
-
console.log('\x1b[33m%s\x1b[0m', 'Project setup is complete\n');
|
|
206
182
|
console.log('\x1b[33m%s\x1b[0m', 'Project Zero - Akinon\n');
|
|
207
183
|
};
|
package/dist/commands/create.js
CHANGED
|
@@ -39,7 +39,6 @@ const path_1 = __importDefault(require("path"));
|
|
|
39
39
|
const fs = __importStar(require("fs"));
|
|
40
40
|
const readline = __importStar(require("readline"));
|
|
41
41
|
const utils_1 = require("../utils");
|
|
42
|
-
const { execSync } = require('child_process');
|
|
43
42
|
const loadingSpinner = require('loading-spinner');
|
|
44
43
|
const workingDir = path_1.default.resolve(process.cwd());
|
|
45
44
|
const rl = readline.createInterface({
|
|
@@ -132,8 +131,7 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
132
131
|
}
|
|
133
132
|
const answers = yield getAnswers();
|
|
134
133
|
const brandName = answers.brandName === '.' ? path_1.default.basename(workingDir) : answers.brandName;
|
|
135
|
-
const projectDir =
|
|
136
|
-
const relativeProjectDir = answers.brandName === '.' ? '.' : (0, utils_1.slugify)(brandName);
|
|
134
|
+
const projectDir = path_1.default.resolve(workingDir, (0, utils_1.slugify)(brandName));
|
|
137
135
|
if (!fs.existsSync(projectDir)) {
|
|
138
136
|
fs.mkdirSync(projectDir, { recursive: true });
|
|
139
137
|
}
|
|
@@ -155,28 +153,7 @@ exports.default = () => __awaiter(void 0, void 0, void 0, function* () {
|
|
|
155
153
|
updateFileContents(path_1.default.join(projectDir, 'package.json'), {
|
|
156
154
|
name: (0, utils_1.slugify)(brandName)
|
|
157
155
|
});
|
|
158
|
-
console.log('\x1b[34m%s\x1b[0m', '\nš Installing packages...\n');
|
|
159
|
-
execSync(`cd ${relativeProjectDir} && yarn install`, { stdio: 'ignore' });
|
|
160
156
|
loadingSpinner.stop();
|
|
161
|
-
|
|
162
|
-
⨠${brandName} project is ready at \x1b[4m${projectDir}\x1b[0m
|
|
163
|
-
|
|
164
|
-
Within the directory, the following commands are available:
|
|
165
|
-
|
|
166
|
-
\x1b[35m$ yarn dev\x1b[0m
|
|
167
|
-
\x1b[32mLaunches the development server.\x1b[0m
|
|
168
|
-
|
|
169
|
-
\x1b[35m$ yarn build\x1b[0m
|
|
170
|
-
\x1b[32mCompiles the app into static files for production.\x1b[0m
|
|
171
|
-
|
|
172
|
-
\x1b[35m$ yarn start\x1b[0m
|
|
173
|
-
\x1b[32mRuns the production server.\x1b[0m
|
|
174
|
-
`;
|
|
175
|
-
const getStartedMessage = answers.brandName === '.'
|
|
176
|
-
? 'To get started, you can type:\n\n \x1b[35m$ yarn dev\x1b[0m\n'
|
|
177
|
-
: `To get started, you can type:\n\n \x1b[35m$ cd ${relativeProjectDir}\x1b[0m\n \x1b[35m$ yarn dev\x1b[0m\n`;
|
|
178
|
-
console.log('\x1b[32m%s\x1b[0m', successMessage);
|
|
179
|
-
console.log('\x1b[36m%s\x1b[0m', getStartedMessage);
|
|
180
|
-
console.log('\x1b[33m%s\x1b[0m', 'Project setup is complete\n');
|
|
157
|
+
console.log('\x1b[32m%s\x1b[0m', `\n ā ${answers.brandName} project is ready.\n`);
|
|
181
158
|
console.log('\x1b[33m%s\x1b[0m', 'Project Zero - Akinon\n');
|
|
182
159
|
});
|
package/package.json
CHANGED