ar-design 0.4.26 → 0.4.27

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.
@@ -0,0 +1,15 @@
1
+ @import url("./styles.week-view.css");
2
+
3
+ .ar-calendar {
4
+ display: flex;
5
+ flex-direction: column;
6
+ gap: 1rem;
7
+ padding: 0.75rem 0.75rem 0.75rem 2rem;
8
+
9
+ > .header {
10
+ .week-time {
11
+ color: var(--gray-700);
12
+ font-size: 1.5rem;
13
+ }
14
+ }
15
+ }
@@ -0,0 +1,124 @@
1
+ .ar-calendar {
2
+ > .ar-calendar-week-view {
3
+ display: flex;
4
+ flex-direction: column;
5
+ align-items: flex-end;
6
+ background-color: var(--white);
7
+ padding: 0.75rem 0.75rem 0.75rem 2rem;
8
+ border-radius: var(--border-radius-sm);
9
+
10
+ > .head {
11
+ display: flex;
12
+ flex-direction: row;
13
+ width: 100%;
14
+
15
+ > .item {
16
+ display: flex;
17
+ flex-direction: column;
18
+ align-items: center;
19
+ gap: 1rem;
20
+ width: calc(100% / 7);
21
+ padding: 0.5rem 0;
22
+
23
+ > .day-name {
24
+ color: var(--gray-400);
25
+ font-size: 0.75rem;
26
+ }
27
+
28
+ > .date {
29
+ font-size: 1.5rem;
30
+ }
31
+ }
32
+ }
33
+
34
+ > .body {
35
+ display: flex;
36
+ flex-direction: row;
37
+ width: 100%;
38
+
39
+ > .clocks {
40
+ > div {
41
+ height: 60px;
42
+
43
+ > span {
44
+ color: var(--gray-700);
45
+ font-size: 0.75rem;
46
+ }
47
+ }
48
+ }
49
+
50
+ > .grid {
51
+ position: relative;
52
+ width: 100%;
53
+ border: solid 1px transparent;
54
+ border-top-color: var(--gray-200);
55
+
56
+ > .events-layer {
57
+ position: absolute;
58
+ top: 0;
59
+ left: 0;
60
+ right: 0;
61
+ z-index: 1;
62
+
63
+ > .event-box {
64
+ position: absolute;
65
+ background-color: rgba(var(--primary-rgb), 0.75);
66
+ width: calc(100% / 7);
67
+ padding: 0.5rem;
68
+ border-radius: var(--border-radius-sm);
69
+ color: var(--white);
70
+ font-size: 12px;
71
+ }
72
+ }
73
+
74
+ > .row {
75
+ position: relative;
76
+ margin: auto;
77
+
78
+ &:nth-child(2) {
79
+ > .cell {
80
+ &::before {
81
+ content: "";
82
+ position: absolute;
83
+ left: -1px;
84
+ background-color: var(--gray-200);
85
+ width: 1px;
86
+ height: 25px;
87
+ transform: translateY(-25px);
88
+ }
89
+ }
90
+ }
91
+
92
+ &:last-child {
93
+ > .cell {
94
+ border-bottom-color: transparent;
95
+ }
96
+ }
97
+
98
+ > .cell {
99
+ position: relative;
100
+ width: calc(100% / 7);
101
+ height: 60px;
102
+ padding: 0;
103
+ border: solid 1px transparent;
104
+ border-left-color: var(--gray-200);
105
+ border-bottom-color: var(--gray-200);
106
+
107
+ &:first-child {
108
+ &::after {
109
+ content: "";
110
+ position: absolute;
111
+ top: -2px;
112
+ left: 0;
113
+ background-color: var(--gray-200);
114
+ width: 15px;
115
+ height: 1px;
116
+ transform: translateX(-15px);
117
+ }
118
+ }
119
+ }
120
+ }
121
+ }
122
+ }
123
+ }
124
+ }
@@ -0,0 +1,21 @@
1
+ import React from "react";
2
+ import { View } from "../../../libs/types";
3
+ import { CalendarEvent } from "./IProps";
4
+ interface IProps {
5
+ data: CalendarEvent[];
6
+ states: {
7
+ currentDate: {
8
+ get: Date;
9
+ set: React.Dispatch<React.SetStateAction<Date>>;
10
+ };
11
+ view: {
12
+ get: View;
13
+ set: React.Dispatch<React.SetStateAction<View>>;
14
+ };
15
+ };
16
+ config?: {
17
+ locale?: Intl.LocalesArgument;
18
+ };
19
+ }
20
+ declare const Body: ({ data, states, config }: IProps) => React.JSX.Element;
21
+ export default Body;
@@ -0,0 +1,14 @@
1
+ import React from "react";
2
+ import Day from "./views/Day";
3
+ import Week from "./views/Week";
4
+ import Month from "./views/Month";
5
+ const Body = ({ data, states, config }) => {
6
+ if (states.view.get === "Day")
7
+ return React.createElement(Day, null);
8
+ else if (states.view.get === "Week")
9
+ return React.createElement(Week, { data: data, states: { currentDate: states.currentDate }, config: config });
10
+ else if (states.view.get === "Month")
11
+ return React.createElement(Month, null);
12
+ return React.createElement(React.Fragment, null, "...");
13
+ };
14
+ export default Body;
@@ -0,0 +1,20 @@
1
+ import React from "react";
2
+ import { View } from "../../../libs/types";
3
+ interface IProps {
4
+ states: {
5
+ currentDate: {
6
+ get: Date;
7
+ set: React.Dispatch<React.SetStateAction<Date>>;
8
+ };
9
+ view: {
10
+ get: View;
11
+ set: React.Dispatch<React.SetStateAction<View>>;
12
+ };
13
+ };
14
+ config?: {
15
+ locale?: Intl.LocalesArgument;
16
+ weekStartsOn?: number;
17
+ };
18
+ }
19
+ declare const Header: ({ states, config }: IProps) => React.JSX.Element;
20
+ export default Header;
@@ -0,0 +1,26 @@
1
+ import React from "react";
2
+ import Button from "../../form/button";
3
+ import { ARIcon } from "../../icons";
4
+ import Box from "../grid-system/box/Box";
5
+ const Header = ({ states, config }) => {
6
+ // methods
7
+ const changeWeek = (direction) => {
8
+ states.currentDate.set((prev) => {
9
+ if (direction === "today")
10
+ return new Date();
11
+ const newDate = new Date(prev);
12
+ newDate.setDate(prev.getDate() + (direction === "next" ? 7 : -7));
13
+ return newDate;
14
+ });
15
+ };
16
+ return (React.createElement("div", { className: "header" },
17
+ React.createElement(Box, null,
18
+ React.createElement(Button, { variant: "outlined", color: "green", border: { radius: "xxl" }, onClick: () => changeWeek("today") }, "Bug\u00FCn"),
19
+ React.createElement(Button, { variant: "borderless", color: "light", border: { radius: "pill" }, icon: { element: React.createElement(ARIcon, { icon: "ArrowLeft", stroke: "currentColor" }) }, onClick: () => changeWeek("prev") }),
20
+ React.createElement(Button, { variant: "borderless", color: "light", border: { radius: "pill" }, icon: { element: React.createElement(ARIcon, { icon: "ArrowRight", stroke: "currentColor" }) }, onClick: () => changeWeek("next") }),
21
+ React.createElement("span", { className: "week-time" },
22
+ states.currentDate.get.toLocaleString(config?.locale ?? "tr-TR", { month: "long" }),
23
+ " ",
24
+ states.currentDate.get.getFullYear()))));
25
+ };
26
+ export default Header;
@@ -0,0 +1,12 @@
1
+ export type CalendarEvent = {
2
+ start: Date;
3
+ end: Date;
4
+ };
5
+ interface IProps {
6
+ data: CalendarEvent[];
7
+ config?: {
8
+ locale?: Intl.LocalesArgument;
9
+ weekStartsOn?: number;
10
+ };
11
+ }
12
+ export default IProps;
@@ -0,0 +1 @@
1
+ export {};
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import IProps from "./IProps";
3
+ import "../../../assets/css/components/data-display/calendar/styles.css";
4
+ declare const Calendar: React.FC<IProps>;
5
+ export default Calendar;
@@ -0,0 +1,27 @@
1
+ "use client";
2
+ import React, { useState } from "react";
3
+ import Body from "./Body";
4
+ import Header from "./Header";
5
+ import "../../../assets/css/components/data-display/calendar/styles.css";
6
+ const Calendar = ({ data, config }) => {
7
+ // states
8
+ const [currentDate, setCurrentDate] = useState(new Date());
9
+ const [view, setView] = useState("Week");
10
+ return (React.createElement("div", { className: "ar-calendar" },
11
+ React.createElement(Header, { states: {
12
+ currentDate: { get: currentDate, set: setCurrentDate },
13
+ view: {
14
+ get: view,
15
+ set: setView,
16
+ },
17
+ }, config: config }),
18
+ React.createElement(Body, { data: data, states: {
19
+ currentDate: { get: currentDate, set: setCurrentDate },
20
+ view: {
21
+ get: view,
22
+ set: setView,
23
+ },
24
+ }, config: config })));
25
+ };
26
+ Calendar.displayName = "DatePicker";
27
+ export default Calendar;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Day: () => React.JSX.Element;
3
+ export default Day;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ const Day = () => {
3
+ return React.createElement(React.Fragment, null);
4
+ };
5
+ export default Day;
@@ -0,0 +1,3 @@
1
+ import React from "react";
2
+ declare const Month: () => React.JSX.Element;
3
+ export default Month;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ const Month = () => {
3
+ return React.createElement(React.Fragment, null);
4
+ };
5
+ export default Month;
@@ -0,0 +1,17 @@
1
+ import React from "react";
2
+ import { CalendarEvent } from "../IProps";
3
+ interface IProps {
4
+ data: CalendarEvent[];
5
+ states: {
6
+ currentDate: {
7
+ get: Date;
8
+ set: React.Dispatch<React.SetStateAction<Date>>;
9
+ };
10
+ };
11
+ config?: {
12
+ locale?: Intl.LocalesArgument;
13
+ weekStartsOn?: number;
14
+ };
15
+ }
16
+ declare const Week: ({ data, states, config }: IProps) => React.JSX.Element;
17
+ export default Week;
@@ -0,0 +1,99 @@
1
+ import React, { useEffect, useMemo, useState } from "react";
2
+ const Week = ({ data, states, config }) => {
3
+ const startHour = 0;
4
+ const endHour = 24;
5
+ const hours = endHour - startHour;
6
+ const cellHeight = 60;
7
+ // const slotDuration = 15;
8
+ // const slotHeight = cellHeight / (60 / slotDuration);
9
+ // states
10
+ const [events, setEvents] = useState([]);
11
+ // const [tempStart, setTempStart] = useState<{
12
+ // date: Date;
13
+ // minutes: number;
14
+ // } | null>(null);
15
+ // methods
16
+ // const handleClick = (weekDay: Date, hourIndex: number) => (event: React.MouseEvent<HTMLDivElement>) => {
17
+ // const rect = event.currentTarget.getBoundingClientRect();
18
+ // const y = event.clientY - rect.top;
19
+ // const slotIndex = Math.floor(y / slotHeight);
20
+ // const minutes = hourIndex * 60 + slotIndex * slotDuration;
21
+ // if (!tempStart) {
22
+ // setTempStart({ date: weekDay, minutes });
23
+ // return;
24
+ // }
25
+ // const startMinutes = Math.min(tempStart.minutes, minutes);
26
+ // const endMinutes = Math.max(tempStart.minutes, minutes) + slotDuration;
27
+ // const startDate = new Date(weekDay);
28
+ // startDate.setHours(Math.floor(startMinutes / 60), startMinutes % 60, 0, 0);
29
+ // const endDate = new Date(weekDay);
30
+ // endDate.setHours(Math.floor(endMinutes / 60), endMinutes % 60, 0, 0);
31
+ // setEvents((prev) => [...prev, { start: startDate, end: endDate }]);
32
+ // setTempStart(null);
33
+ // };
34
+ const weekDays = useMemo(() => getWeekDays(states.currentDate.get, config?.weekStartsOn ?? 1), [states.currentDate.get, config?.weekStartsOn]);
35
+ // useEffects
36
+ useEffect(() => {
37
+ setEvents(data);
38
+ }, [data]);
39
+ return (React.createElement("div", { className: "ar-calendar-week-view" },
40
+ React.createElement("div", { className: "head" }, weekDays.map((day) => (React.createElement("div", { key: day.toISOString(), className: "item" },
41
+ React.createElement("span", { className: "day-name" }, day
42
+ .toLocaleString(config?.locale ?? "tr", {
43
+ weekday: "short",
44
+ })
45
+ .toUpperCase()),
46
+ React.createElement("span", { className: "date" }, day.getDate()))))),
47
+ React.createElement("div", { className: "body" },
48
+ React.createElement("div", { className: "clocks" }, Array.from({ length: hours }, (_, index) => (React.createElement("div", { key: index },
49
+ React.createElement("span", null,
50
+ String(startHour + index).padStart(2, "0"),
51
+ ":00"))))),
52
+ React.createElement("div", { role: "grid", className: "grid" },
53
+ React.createElement("div", { className: "events-layer" }, events.map((event, index) => {
54
+ const dayIndex = weekDays.findIndex((d) => d.toDateString() === event.start.toDateString());
55
+ if (dayIndex === -1)
56
+ return null;
57
+ const startMinutes = event.start.getHours() * 60 + event.start.getMinutes();
58
+ const durationMinutes = (event.end.getTime() - event.start.getTime()) / 60000;
59
+ const top = (startMinutes / 60) * cellHeight;
60
+ const height = (durationMinutes / 60) * cellHeight;
61
+ return (React.createElement("div", { key: index, className: "event-box", style: {
62
+ top,
63
+ height,
64
+ left: `${(100 / 7) * dayIndex}%`,
65
+ } },
66
+ event.start.toLocaleTimeString(config?.locale ?? "tr-TR", {
67
+ hour: "2-digit",
68
+ minute: "2-digit",
69
+ }),
70
+ " - ",
71
+ event.end.toLocaleTimeString(config?.locale ?? "tr-TR", {
72
+ hour: "2-digit",
73
+ minute: "2-digit",
74
+ })));
75
+ })),
76
+ Array.from({ length: hours }).map((_, rowIndex) => (React.createElement("div", { key: rowIndex, className: "row" }, weekDays.map((_, colIndex) => (
77
+ // <div key={colIndex} className="cell" onClick={handleClick(weekDay, rowIndex)} />
78
+ React.createElement("div", { key: colIndex, className: "cell" }))))))))));
79
+ };
80
+ const getWeekRange = (date, weekStartsOn = 1) => {
81
+ const current = new Date(date);
82
+ const currentDay = current.getDay();
83
+ const diff = (currentDay - weekStartsOn + 7) % 7;
84
+ const start = new Date(current);
85
+ start.setDate(current.getDate() - diff);
86
+ start.setHours(0, 0, 0, 0);
87
+ const end = new Date(start);
88
+ end.setDate(start.getDate() + 6);
89
+ return { start, end };
90
+ };
91
+ const getWeekDays = (date, weekStartsOn = 1) => {
92
+ const { start } = getWeekRange(date, weekStartsOn);
93
+ return Array.from({ length: 7 }, (_, i) => {
94
+ const d = new Date(start);
95
+ d.setDate(start.getDate() + i);
96
+ return d;
97
+ });
98
+ };
99
+ export default Week;
@@ -21,7 +21,7 @@ export type SearchedParam = {
21
21
  [key: string]: FilterValue | FilterValue[];
22
22
  };
23
23
  export type Config<T> = {
24
- locale?: string;
24
+ locale?: Intl.LocalesArgument;
25
25
  isServerSide?: boolean;
26
26
  isProperties?: boolean;
27
27
  isSearchable?: boolean;
@@ -3,6 +3,7 @@ type Props = {
3
3
  label?: string;
4
4
  onChange: (value: string) => void;
5
5
  config?: {
6
+ locale?: Intl.LocalesArgument;
6
7
  isClock?: boolean;
7
8
  isFooterButton?: boolean;
8
9
  };
package/dist/index.d.ts CHANGED
@@ -10,6 +10,7 @@ import Select from "./components/form/select";
10
10
  import Switch from "./components/form/switch";
11
11
  import TextEditor from "./components/form/text-editor";
12
12
  import Upload from "./components/form/upload";
13
+ import Calendar from "./components/data-display/calendar";
13
14
  import Card from "./components/data-display/card";
14
15
  import Chip from "./components/data-display/chip";
15
16
  import Diagram from "./components/data-display/diagram/index";
@@ -33,4 +34,4 @@ import Pagination from "./components/navigation/pagination";
33
34
  import Steps from "./components/navigation/steps";
34
35
  import Grid from "./components/data-display/grid-system";
35
36
  import Layout from "./components/layout";
36
- export { Button, ButtonAction, ButtonGroup, Checkbox, DatePicker, Input, Radio, Select, Switch, TextEditor, Upload, Card, Chip, Diagram, Divider, DnD, KanbanBoard, Paper, SyntaxHighlighter, Table, Tabs, Typography, Alert, Drawer, Modal, Popover, Progress, Tooltip, Breadcrumb, Menu, Pagination, Steps, Grid, Layout, };
37
+ export { Button, ButtonAction, ButtonGroup, Checkbox, DatePicker, Input, Radio, Select, Switch, TextEditor, Upload, Calendar, Card, Chip, Diagram, Divider, DnD, KanbanBoard, Paper, SyntaxHighlighter, Table, Tabs, Typography, Alert, Drawer, Modal, Popover, Progress, Tooltip, Breadcrumb, Menu, Pagination, Steps, Grid, Layout, };
package/dist/index.js CHANGED
@@ -12,6 +12,7 @@ import Switch from "./components/form/switch";
12
12
  import TextEditor from "./components/form/text-editor";
13
13
  import Upload from "./components/form/upload";
14
14
  // Data Display
15
+ import Calendar from "./components/data-display/calendar";
15
16
  import Card from "./components/data-display/card";
16
17
  import Chip from "./components/data-display/chip";
17
18
  import Diagram from "./components/data-display/diagram/index";
@@ -42,7 +43,7 @@ export {
42
43
  // Form Elements
43
44
  Button, ButtonAction, ButtonGroup, Checkbox, DatePicker, Input, Radio, Select, Switch, TextEditor, Upload,
44
45
  // Data Display
45
- Card, Chip, Diagram, Divider, DnD, KanbanBoard, Paper, SyntaxHighlighter, Table, Tabs, Typography,
46
+ Calendar, Card, Chip, Diagram, Divider, DnD, KanbanBoard, Paper, SyntaxHighlighter, Table, Tabs, Typography,
46
47
  // Feedback
47
48
  Alert, Drawer, Modal, Popover, Progress, Tooltip,
48
49
  // Navigation
@@ -111,4 +111,5 @@ export type EdgeData = {
111
111
  port: Port;
112
112
  };
113
113
  };
114
+ export type View = "Day" | "Week" | "Month" | "Year";
114
115
  export {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ar-design",
3
- "version": "0.4.26",
3
+ "version": "0.4.27",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",