{"version":3,"file":"static/chunks/pages/mypage/stores/products-7bf7dd5beaeeffbb.js","mappings":"AACA","sources":["webpack://_N_E/?3a1f","webpack://_N_E/./src/modules/products/components/SmallTypeSelect.tsx","webpack://_N_E/./src/pages/mypage/index.tsx","webpack://_N_E/./src/modules/mypages/products/stores/MyStoreProductModel.tsx","webpack://_N_E/./src/modules/handouts/commands/changePublicHandoutWithProductCommand.ts","webpack://_N_E/./src/modules/handouts/commands/deleteHandoutWithProductCommand.ts","webpack://_N_E/./src/modules/mypages/products/commands/checkCanUpdateHandoutCommand.ts","webpack://_N_E/./src/modules/mypages/payouts/commands/getMySellingCommand.ts","webpack://_N_E/./src/modules/mypages/payouts/commands/index.ts","webpack://_N_E/./src/modules/mypages/products/viewModels/MyStoreProductListViewModel.tsx","webpack://_N_E/./src/modules/mypages/products/components/MyStoreProductFilter.tsx","webpack://_N_E/./src/modules/mypages/products/components/MyStoreProductList.tsx","webpack://_N_E/./src/modules/mypages/licenses/stores/MyStoreProductForm.tsx","webpack://_N_E/./src/modules/mypages/products/views/MyStoreProductListView.tsx","webpack://_N_E/./src/modules/mypages/products/pages/MyStoreProductListPage.tsx","webpack://_N_E/./src/pages/mypage/stores/products/index.tsx","webpack://_N_E/"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/mypage/stores/products\",\n function () {\n return require(\"private-next-pages/mypage/stores/products/index.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/mypage/stores/products\"])\n });\n }\n ","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n &,\\n &.ant-select-single:not(.ant-select-customize-input) {\\n width: 136px;\\n\\n .ant-select-selector,\\n .ant-input {\\n height: 42px;\\n border: 0;\\n border-radius: 0;\\n }\\n\\n .ant-select-selector {\\n padding: 0 16px 0 14px;\\n background-color: transparent;\\n\\n .ant-select-selection-item {\\n font-size: 14px;\\n font-weight: 500;\\n color: #1b1b29;\\n line-height: 42px;\\n padding: 0;\\n\\n @media (max-width: 768px) {\\n font-size: 14px;\\n }\\n }\\n }\\n\\n .ant-select-arrow {\\n inset-inline-end: 0;\\n\\n span {\\n &:before {\\n display: block;\\n content: '';\\n width: 0;\\n height: 0;\\n border-left: 4px solid transparent;\\n border-right: 4px solid transparent;\\n border-top: 4px solid #1b1b29;\\n }\\n\\n svg {\\n display: none;\\n }\\n }\\n }\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nimport styled from \"styled-components\";\nimport { Select } from \"antd\";\nexport const SmallTypeSelect = styled(Select).withConfig({\n componentId: \"sc-b2758e07-0\"\n})(_templateObject());\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n padding: 24px 0;\\n min-height: 80vh;\\n \",\n \"\\n\\n @media (max-width: 1200px) {\\n }\\n @media (max-width: 768px) {\\n padding: 0;\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nimport styled from \"styled-components\";\nconst Moved = ()=>null;\nexport var __N_SSP = true;\nexport default Moved;\nexport const MyPageWrapper = styled.div.withConfig({\n componentId: \"sc-c94a6711-0\"\n})(_templateObject(), (props)=>props.bgcolor ? \"background-color: \".concat(props.bgcolor, \";\") : \"\");\n","import { Page } from \"@/lib/pagination\";\nimport { useLocalObservable } from \"mobx-react-lite\";\nimport { useRef } from \"react\";\n// substringBefore(fileNameWithoutExtension(),\"View\")\nexport const ProductModel = (props)=>{\n return {\n products: props.products || [],\n product: props.product || {},\n pagination: Page({}),\n updateProducts (products) {\n this.products = products;\n },\n addProducts (products) {\n this.products = [\n ...this.products,\n ...products\n ];\n },\n updateProduct (product) {\n this.products = this.products.map((item)=>{\n if (product.id === item.id) {\n return {\n ...item,\n ...product\n };\n }\n return item;\n });\n this.product = product;\n },\n get last () {\n if (this.products.length > 0) {\n return this.products[this.products.length - 1];\n } else {\n return null;\n }\n }\n };\n};\nexport const useProductModelStore = (props)=>{\n return useLocalObservable(()=>ProductModel(props));\n};\nexport const createMyStoreProductStore = function() {\n let props = arguments.length > 0 && arguments[0] !== void 0 ? arguments[0] : {};\n // eslint-disable-next-line react-hooks/rules-of-hooks\n const stores = useRef({\n // eslint-disable-next-line react-hooks/rules-of-hooks\n products: useProductModelStore(props)\n });\n return stores.current;\n};\n","import { api } from \"../../../api\";\nexport class ChangePublicHandoutWithProductCommand {\n execute(query) {\n // 공개는 'active' , 비공개는 'inactive' 스트링 값으로 설정해주세요\n const url = \"/handouts/\".concat(query.id, \"?status=\").concat(query.status);\n return api(url, {\n method: \"PUT\"\n }).then((res)=>res.data);\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","import { api } from \"../../../api\";\nexport class DeleteHandoutWithProductCommand {\n execute(query) {\n const url = \"/handouts/\".concat(query.id);\n return api(url, {\n method: \"DELETE\"\n }).then((res)=>res.data);\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","import { api } from \"../../../../api\";\nexport class CheckCanUpdateHandoutCommand {\n execute(dto) {\n const url = \"/mysolvook/sales/check-can-update/\".concat(dto.handout_id);\n return api(url, {\n method: \"GET\"\n }).then((res)=>res.data);\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","import { api } from \"../../../../api\";\n/**\n * GET api/v1/mysolvook/sales\n * @summary 내 자료 판매 관리\n * @description 내가 제작한 자료의 판매 현황을 조회한다.\n * @pathParam {GetMySellingQueryDTO} application/json\n * @response 200 {GetMySellingResponseDTO} application/json\n *\n * orderItem 에서 handoutId를 잡고 총 매출액을 가져옴\n */ export class GetMySellingCommand {\n async execute(param) {\n let { offset , limit , sort , keyword , is_public } = param;\n const url = \"/mysolvook/sales\";\n const params = new URLSearchParams();\n if (offset != undefined) {\n params.append(\"offset\", offset.toString());\n }\n if (limit != undefined) {\n params.append(\"limit\", limit.toString());\n }\n if (keyword != undefined) {\n params.set(\"keyword\", keyword);\n }\n if (sort != undefined) {\n params.set(\"sort\", sort);\n }\n if (is_public != undefined) {\n params.set(\"is_public\", is_public.toString());\n }\n try {\n const response = await api(url, {\n params\n });\n return response.data;\n } catch (error) {\n return null;\n }\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","export * from \"./getPaySettlementCommand\";\nexport * from \"./getPaySettlementExcelCommand\";\nexport * from \"./getMySellingCommand\";\n","import { Page, useUpdateRouterHistory } from \"@/lib/pagination\";\nimport { debounce } from \"debounce\";\nimport { useLocalObservable } from \"mobx-react-lite\";\nimport { useEffect, useMemo } from \"react\";\nimport { ChangePublicHandoutWithProductCommand } from \"@/modules/handouts/commands/changePublicHandoutWithProductCommand\";\nimport { DeleteHandoutWithProductCommand } from \"@/modules/handouts/commands/deleteHandoutWithProductCommand\";\nimport { GetLabByAuthorIdCommand } from \"@/modules/lab/commands/getLabByAuthorIdCommand\";\nimport { CheckCanUpdateHandoutCommand } from \"@/modules/mypages/products/commands/checkCanUpdateHandoutCommand\";\nimport { Modal } from \"antd\";\nimport { toJS } from \"mobx\";\nimport { GetMySellingCommand } from \"../../payouts/commands\";\nconst toSellingListItemData = (product)=>{\n return {\n ...product,\n product: product\n };\n};\nexport const MyStoreProductListViewModel = (param)=>{\n let { apiService , config , router , rootStore , authStore } = param;\n const defaultPageLimit = (config === null || config === void 0 ? void 0 : config.defaultPageLimit) || 10;\n const routerHistory = useUpdateRouterHistory({\n router,\n defaultPageLimit\n });\n const getMySellingListCommand = useMemo(()=>new GetMySellingCommand(apiService), [\n apiService\n ]);\n const deleteHandoutCommand = useMemo(()=>new DeleteHandoutWithProductCommand(apiService), [\n apiService\n ]);\n const changePublicHandoutCommand = useMemo(()=>new ChangePublicHandoutWithProductCommand(apiService), [\n apiService\n ]);\n const checkCanUpdateHandoutCommand = useMemo(()=>new CheckCanUpdateHandoutCommand(apiService), [\n apiService\n ]);\n const getLabByAuthorIdCommand = useMemo(()=>new GetLabByAuthorIdCommand(apiService), [\n apiService\n ]);\n const status = useLocalObservable(()=>{\n var _authStore_user_flags;\n return {\n isEditable: true,\n addingItems: false,\n errors: [],\n initialized: false,\n loading: false,\n refreshing: false,\n searchStatus: false,\n newProductModal: false,\n tab: \"all\",\n initialStatus: {\n apiErrors: {}\n },\n initialValues: {\n keyword: \"\"\n },\n metadata: {\n all: 0,\n public: 0,\n unpublic: 0\n },\n sort: \"new\",\n is_public: undefined,\n keyword: undefined,\n canCheck: undefined,\n is_use_lab: (_authStore_user_flags = authStore.user.flags) === null || _authStore_user_flags === void 0 ? void 0 : _authStore_user_flags.is_use_lab,\n labName: null\n };\n });\n const actions = useLocalObservable(()=>{\n return {\n _items: [],\n paging: Page({\n pageSize: (config === null || config === void 0 ? void 0 : config.defaultPageLimit) || 10\n }),\n selected: undefined,\n async initialize (props) {\n if (router.query) {\n await actions.getMySellingList(router.query);\n if (router.query.is_public) status.tab = router.query.is_public === \"true\" ? \"public\" : \"unpublic\";\n if (router.query.sort) status.sort = router.query.sort;\n if (router.query.keyword) status.keyword = router.query.keyword;\n } else await actions.getMySellingList({\n offset: 0,\n limit: 10\n });\n if (status.is_use_lab) await actions.checkLab();\n status.initialized = true;\n status.loading = false;\n },\n dispose () {},\n async getMySellingList (query) {\n const response = await getMySellingListCommand.execute(query);\n try {\n if (response.success) {\n rootStore.products.updateProducts(response.sales.sales);\n status.metadata = response.sales.metadata;\n actions.paging._total = response.sales.pagination.total;\n actions.paging.setCurrent(response.sales.pagination.offset, response.sales.pagination.limit, response.sales.pagination.total);\n }\n } catch (e) {\n Modal.error({\n title: \"에러\",\n content: e.message\n });\n }\n },\n get items () {\n var _rootStore_products;\n return (rootStore === null || rootStore === void 0 ? void 0 : (_rootStore_products = rootStore.products) === null || _rootStore_products === void 0 ? void 0 : _rootStore_products.products.map((product)=>{\n return {\n ...product\n };\n })) || [];\n // return actions._items\n },\n getPagination () {\n return actions.paging;\n },\n async updatePageChange (pageIndex) {\n const { limit , offset , total } = actions.paging.next(pageIndex);\n actions.paging.setCurrent(offset, limit, total);\n routerHistory.updatePagination(offset, limit);\n let query = {\n offset: offset,\n limit: limit\n };\n if (status.tab !== \"all\") {\n query[\"is_public\"] = status.is_public;\n //@ts-ignore\n routerHistory.updateFilterSearch(\"is_public\", status.is_public);\n }\n if (status.keyword && status.keyword !== \"\") {\n query[\"keyword\"] = status.keyword;\n routerHistory.updateFilterSearch(\"keyword\", status.keyword);\n }\n if (status.sort !== \"new\") {\n query[\"sort\"] = \"price\";\n routerHistory.updateFilterSearch(\"sort\", \"price\");\n }\n routerHistory.invalidate();\n await actions.getMySellingList(query);\n },\n getSelected () {\n return actions.selected;\n },\n async onSubmit (values, formikActions) {\n routerHistory.updateFilterSearch(\"keyword\", values.keyword);\n // if (values.keyword === '') {\n // \tModal.error({\n // \t\ttitle: '에러',\n // \t\tcontent: '검색어를 입력해주세요.',\n // \t})\n // \treturn\n // }\n try {\n status.searchStatus = false;\n status.keyword = values.keyword;\n actions.paging.setCurrent(0, 10);\n const query = {\n keyword: values.keyword,\n offset: 0,\n limit: 10\n };\n routerHistory.updatePagination(0, 10);\n routerHistory.deleteFilterSearch(\"is_public\");\n routerHistory.deleteFilterSearch(\"sort\");\n routerHistory.invalidate();\n status.tab = \"all\";\n status.sort = \"new\";\n await actions.getMySellingList(query);\n } catch (e) {\n Modal.error({\n title: \"에러\",\n content: e.message\n });\n } finally{\n //검색결과가 없다면 없습니다.\n if (actions.items.length === 0) {\n status.searchStatus = true;\n }\n }\n formikActions.setSubmitting(false);\n },\n async onItemClick (param) {\n let { item , metadata } = param;\n alert(JSON.stringify(item));\n },\n onEmptyClick () {},\n onLoadMore: debounce(async ()=>{\n status.addingItems = true;\n try {} catch (e) {}\n status.addingItems = false;\n }, 300, true),\n //탭변경\n async onTabsChange (key) {\n status.tab = key;\n status.sort = \"new\";\n routerHistory.updateFilterSearch(\"is_public\", key);\n let query = {\n offset: 0,\n limit: 10\n };\n actions.paging.setCurrent(0, 10);\n routerHistory.updatePagination(0, 10);\n if (status.tab !== \"all\") {\n query[\"is_public\"] = key === \"public\" ? true : key === \"unpublic\" ? false : undefined;\n if (key === \"public\") {\n status.is_public = true;\n routerHistory.updateFilterSearch(\"is_public\", \"true\");\n } else {\n status.is_public = false;\n routerHistory.updateFilterSearch(\"is_public\", \"false\");\n }\n }\n if (status.keyword && status.keyword !== \"\") {\n query[\"keyword\"] = status.keyword;\n }\n routerHistory.invalidate();\n await actions.getMySellingList(query);\n },\n //정렬변경\n async onSelectChange (key) {\n status.sort = key;\n routerHistory.updateFilterSearch(\"sort\", key);\n let query = {\n offset: actions.paging.offset,\n limit: actions.paging.limit,\n sort: key\n };\n if (status.tab !== \"all\") {\n query[\"is_public\"] = status.is_public;\n //@ts-ignore\n routerHistory.updateFilterSearch(\"is_public\", status.is_public);\n }\n if (status.keyword && status.keyword !== \"\") {\n query[\"keyword\"] = status.keyword;\n routerHistory.updateFilterSearch(\"keyword\", status.keyword);\n }\n routerHistory.invalidate();\n await actions.getMySellingList(query);\n },\n onRefresh: debounce(async ()=>{\n status.refreshing = true;\n try {} catch (e) {}\n // const { success, resultCode } = await new FetchNewsCommand(news).execute()\n status.refreshing = false;\n }, 300, true),\n onDelete (item) {\n const targetId = item.id;\n Modal.confirm({\n title: \"이 수업자료를 삭제하시겠습니까?\",\n onOk: async ()=>{\n try {\n const response = await deleteHandoutCommand.execute({\n id: targetId\n });\n let query = {\n offset: actions.paging.offset,\n limit: actions.paging.limit\n };\n await this.getMySellingList(query);\n } catch (e) {\n Modal.error({\n title: \"상품 삭제 실패\",\n content: e.message\n });\n }\n }\n });\n },\n //@todo : 여기서 진입 막을것\n onUpdate (item) {\n if (status.isEditable) {\n router.push({\n pathname: \"/mypage/stores/products/\".concat(item.product_id, \"/edit\"),\n query: {\n handout: item.id\n }\n });\n } else if (!status.isEditable) {\n status.isEditable = true;\n if (status.canCheck.is_expired) {\n Modal.error({\n title: \"출처교재 라이선스 기한 만료\",\n content: \"출처교재 라이선스를 새로 구매해주세요\"\n });\n } else {\n Modal.error({\n title: \" 출처교재 라이선스 슬롯 소진\",\n content: \"출처교재 라이선스를 새로 구매해주세요\"\n });\n }\n }\n },\n async checkCanUpdateHandout (dto) {\n try {\n const response = await checkCanUpdateHandoutCommand.execute(dto);\n status.isEditable = response.can_update;\n status.canCheck = response;\n } catch (e) {\n ;\n }\n },\n async onShowChange (item, value) {\n const statusValue = value ? \"active\" : \"inactive\";\n let query = {\n id: item.id,\n status: statusValue\n };\n const modifyResponse = await changePublicHandoutCommand.execute(query);\n try {\n if (modifyResponse.success) {\n let listQuery = {\n offset: actions.paging._offset,\n limit: actions.paging._limit\n };\n actions.paging.setCurrent(actions.paging._offset, actions.paging._limit);\n if (status.tab !== \"all\") {\n listQuery[\"is_public\"] = status.tab === \"public\" ? true : status.tab === \"unpublic\" ? false : undefined;\n }\n if (status.keyword && status.keyword !== \"\") {\n listQuery[\"keyword\"] = status.keyword;\n }\n await actions.getMySellingList(listQuery);\n }\n } catch (e) {\n Modal.error({\n title: \"에러\",\n content: e.message\n });\n }\n },\n async checkLab () {\n try {\n const response = await getLabByAuthorIdCommand.execute({\n author_id: authStore.user.id\n });\n status.labName = response.lab.lab_name;\n } catch (e) {\n ;\n }\n },\n navigateToLab () {\n router.push(\"/@\".concat(status.labName));\n }\n };\n });\n useEffect(()=>{\n actions.initialize({});\n ;\n }, []);\n return useLocalObservable(()=>({\n status,\n actions\n }));\n};\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n display: flex;\\n align-items: center;\\n justify-content: space-between;\\n\\n .filterWrapper {\\n display: flex;\\n }\\n\\n .ant-select {\\n &,\\n &.ant-select-single:not(.ant-select-customize-input) {\\n width: 72px;\\n }\\n }\\n\\n @media (max-width: 1200px) {\\n }\\n @media (max-width: 768px) {\\n margin-bottom: 8px;\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\\n display: flex;\\n cursor: pointer;\\n align-items: center;\\n\\n &:not(:nth-of-type(1)) {\\n &:before {\\n display: inline-block;\\n content: '';\\n width: 1px;\\n height: 12px;\\n margin: 0 8px;\\n background-color: \",\n \";\\n }\\n }\\n\\n pointer-events: \",\n \";\\n opacity: \",\n \";\\n\\n @media (max-width: 1200px) {\\n }\\n @media (max-width: 768px) {\\n &:not(:nth-of-type(1)) {\\n &:before {\\n display: none;\\n }\\n }\\n }\\n\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject2() {\n const data = _tagged_template_literal([\n \"\\n font-size: 16px;\\n color: \",\n \";\\n font-weight: \",\n \";\\n margin-left: 4px;\\n\\n @media (max-width: 1200px) {\\n }\\n @media (max-width: 768px) {\\n display: none;\\n }\\n\"\n ]);\n _templateObject2 = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport React from \"react\";\nimport styled from \"styled-components\";\nimport { themeGet } from \"@styled-system/theme-get\";\nimport { StatusTitle } from \"@/components/StatusTitle\";\nimport { SmallTypeSelect } from \"../../../products/components/SmallTypeSelect\";\nconst MyStoreProductFilterWrapper = styled.div.withConfig({\n componentId: \"sc-a70bf495-0\"\n})(_templateObject());\nconst StatusWrapper = styled.div.withConfig({\n componentId: \"sc-a70bf495-1\"\n})(_templateObject1(), themeGet(\"border.1\", \"#E8E8EA\"), (props)=>props.length === 0 ? \"none\" : \"auto\", (props)=>props.length === 0 ? 0.3 : 1);\nconst StatusCount = styled.span.withConfig({\n componentId: \"sc-a70bf495-2\"\n})(_templateObject2(), themeGet(\"text.3\", \"#BBBBBF\"), (param)=>{\n let { active } = param;\n return active ? \"bold\" : \"normal\";\n});\nexport const MyStoreProductFilter = (param)=>{\n let { onTab , activeTab , onSort , items , metadata , activeSort } = param;\n const handleChangeTap = (tap)=>{\n onTab(tap);\n };\n return /*#__PURE__*/ _jsxs(MyStoreProductFilterWrapper, {\n children: [\n /*#__PURE__*/ _jsxs(\"div\", {\n className: \"filterWrapper\",\n children: [\n /*#__PURE__*/ _jsxs(StatusWrapper, {\n onClick: ()=>handleChangeTap(\"all\"),\n children: [\n /*#__PURE__*/ _jsx(StatusTitle, {\n active: activeTab === \"all\",\n children: \"전체\"\n }),\n /*#__PURE__*/ _jsx(StatusCount, {\n active: activeTab === \"all\",\n children: metadata.all || 0\n })\n ]\n }),\n /*#__PURE__*/ _jsxs(StatusWrapper, {\n onClick: ()=>handleChangeTap(\"public\"),\n length: metadata.public,\n className: !metadata.public ? \"disabled\" : \"\",\n children: [\n /*#__PURE__*/ _jsx(StatusTitle, {\n active: activeTab === \"public\",\n children: \"공개\"\n }),\n /*#__PURE__*/ _jsx(StatusCount, {\n active: activeTab === \"public\",\n children: metadata.public || 0\n })\n ]\n }),\n /*#__PURE__*/ _jsxs(StatusWrapper, {\n onClick: ()=>handleChangeTap(\"unpublic\"),\n length: metadata.unpublic,\n className: !metadata.unpublic ? \"disabled\" : \"\",\n children: [\n /*#__PURE__*/ _jsx(StatusTitle, {\n active: activeTab === \"unpublic\",\n children: \"비공개\"\n }),\n /*#__PURE__*/ _jsx(StatusCount, {\n active: activeTab === \"unpublic\",\n children: metadata.unpublic\n })\n ]\n })\n ]\n }),\n /*#__PURE__*/ _jsx(SmallTypeSelect, {\n defaultValue: activeSort,\n onChange: (value)=>onSort(value),\n options: [\n {\n value: \"new\",\n label: \"최신 순\"\n },\n {\n value: \"price\",\n label: \"매출 순\"\n }\n ]\n })\n ]\n });\n};\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n width: 100%;\\n min-height: 240px;\\n text-align: center;\\n border-radius: 2px;\\n\\n & > div {\\n background-color: #fdfdff;\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\\n margin: 0;\\n color: \",\n \";\\n\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject2() {\n const data = _tagged_template_literal([\n \"\\n border-bottom: 1px solid \",\n \";\\n margin-bottom: 8px;\\n\\n .moreBtn {\\n border: none;\\n }\\n\\n .type {\\n font-size: 12px;\\n color: \",\n \";\\n line-height: 14px;\\n border: solid 1px #d9d9d9;\\n border-radius: 2px;\\n background-color: #fafafa;\\n align-items: center;\\n justify-content: center;\\n padding: 1px 6px;\\n }\\n\\n .ant-col {\\n max-height: 72px;\\n }\\n\"\n ]);\n _templateObject2 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject3() {\n const data = _tagged_template_literal([\n \"\\n flex: 3 3 10px;\\n\"\n ]);\n _templateObject3 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject4() {\n const data = _tagged_template_literal([\n \"\\n \",\n \";\\n padding: 6px 4px;\\n background-color: \",\n \";\\n text-align: center;\\n font-size: 14px;\\n line-height: 22px;\\n font-weight: 600;\\n border-top: 1px solid \",\n \";\\n border-bottom: 1px solid \",\n \";\\n\"\n ]);\n _templateObject4 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject5() {\n const data = _tagged_template_literal([\n \"\\n \",\n \";\\n position: relative;\\n display: flex;\\n align-items: center;\\n justify-content: center;\\n text-align: center;\\n padding: 14px 4px;\\n\\n &.title-box {\\n text-align: left;\\n }\\n\\n &.more-box {\\n img {\\n cursor: pointer;\\n }\\n }\\n\\n .thumbImg {\\n display: block;\\n width: 32px;\\n height: 44px;\\n object-fit: contain;\\n margin-right: 12px;\\n border: solid 1px #d9d9d9;\\n }\\n\\n .title {\\n flex: 1;\\n line-height: 1.5;\\n }\\n\\n div,\\n .title {\\n text-overflow: ellipsis;\\n overflow: hidden;\\n display: -webkit-box;\\n -webkit-line-clamp: 2;\\n -webkit-box-orient: vertical;\\n }\\n\\n .ant-select {\\n &,\\n &.ant-select-single:not(.ant-select-customize-input) {\\n width: 68px;\\n height: 28px;\\n\\n .ant-select-selector,\\n .ant-input {\\n height: 28px;\\n border: 0;\\n border-radius: 0;\\n background-color: #fff;\\n }\\n\\n .ant-select-selector {\\n padding: 0;\\n\\n .ant-select-selection-item {\\n font-size: 12px;\\n color: \",\n \";\\n text-align: left;\\n line-height: 26px;\\n border: solid 1px #d9d9d9;\\n border-radius: 2px;\\n padding: 0 8px;\\n }\\n\\n &:hover {\\n .ant-select-selection-item {\\n border-color: \",\n \";\\n }\\n }\\n }\\n\\n .ant-select-arrow {\\n span {\\n &:before {\\n display: block;\\n content: '';\\n width: 12px;\\n height: 12px;\\n background: url('/static/assets/icon_down.svg') no-repeat 50% 50%;\\n background-size: contain;\\n }\\n\\n svg {\\n display: none;\\n }\\n }\\n }\\n }\\n }\\n\\n .inactive-btn {\\n position: absolute;\\n top: 14px;\\n left: 0;\\n width: 100%;\\n height: 28px;\\n font-size: 0;\\n z-index: 1;\\n cursor: not-allowed;\\n border: none;\\n background-color: transparent;\\n\\n @media (hover: hover) {\\n &:hover {\\n border: none;\\n }\\n }\\n }\\n\"\n ]);\n _templateObject5 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject6() {\n const data = _tagged_template_literal([\n \"\\n border: unset;\\n\\n &:hover {\\n color: #002fa8;\\n }\\n\"\n ]);\n _templateObject6 = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { ScrollArea } from \"@/components/ScrollArea\";\nimport { priceFormatter } from \"@/lib/utils\";\nimport { DEFAULT_BOOK_COVER, MYPAGE_STORES_PRODUCTS_NEW_INDEX } from \"@/settings/constant\";\nimport { themeGet } from \"@styled-system/theme-get\";\nimport { Button, Col, Dropdown, Modal, Row, Select } from \"antd\";\nimport dayjs from \"dayjs\";\nimport { observer } from \"mobx-react-lite\";\nimport Image from \"next/image\";\nimport Link from \"next/link\";\nimport * as React from \"react\";\nimport { useCallback, useEffect, useState } from \"react\";\nimport { DataTypesWithString } from \"src/api/product\";\nimport styled, { css } from \"styled-components\";\nimport { LibraryListEmpty } from \"../../libraries/components/LibraryListEmpty\";\nconst MyStoreProductListEmptyWrapper = styled.div.withConfig({\n componentId: \"sc-d6ddb6d3-0\"\n})(_templateObject());\nconst EmptyTitle = styled.p.withConfig({\n componentId: \"sc-d6ddb6d3-1\"\n})(_templateObject1(), themeGet(\"text.2\"));\nexport const MyStoreProductListEmpty = (param)=>{\n let { title , emptyOptions , onEmptyClick } = param;\n const handleEmptyClick = useCallback(()=>{\n if (onEmptyClick) {\n onEmptyClick();\n }\n }, [\n onEmptyClick\n ]);\n return /*#__PURE__*/ _jsx(MyStoreProductListEmptyWrapper, {\n children: /*#__PURE__*/ _jsx(LibraryListEmpty, {\n title: title,\n emptyOptions: emptyOptions,\n onEmptyClick: onEmptyClick,\n children: /*#__PURE__*/ _jsxs(\"div\", {\n className: \"btn-area\",\n children: [\n /*#__PURE__*/ _jsx(Link, {\n href: \"https://solvookguide.oopy.io/guide/8\",\n passHref: true,\n legacyBehavior: true,\n children: /*#__PURE__*/ _jsx(Button, {\n type: \"primary\",\n ghost: true,\n children: \"자료 판매 안내\"\n })\n }),\n /*#__PURE__*/ _jsx(Link, {\n href: \"\".concat(MYPAGE_STORES_PRODUCTS_NEW_INDEX),\n passHref: true,\n legacyBehavior: true,\n children: /*#__PURE__*/ _jsx(Button, {\n type: \"primary\",\n children: \"자료 등록하기\"\n })\n })\n ]\n })\n })\n });\n};\nexport const MyStoreProductListCustomEmpty = (param)=>{\n let { title , children } = param;\n return /*#__PURE__*/ _jsxs(MyStoreProductListEmptyWrapper, {\n children: [\n /*#__PURE__*/ _jsx(EmptyTitle, {\n children: title\n }),\n children\n ]\n });\n};\nconst MyStoreProductListItemWrapper = styled.div.withConfig({\n componentId: \"sc-d6ddb6d3-2\"\n})(_templateObject2(), themeGet(\"border.0\"), themeGet(\"text.2\", \"#5F5F69\"));\nconst defaultColSize = css(_templateObject3());\nconst MyStoreProductListHeaderCol = styled(Col).withConfig({\n componentId: \"sc-d6ddb6d3-3\"\n})(_templateObject4(), defaultColSize, themeGet(\"background.1\", \"#F5F8FB\"), themeGet(\"border.0\", \"#EBEBEB\"), themeGet(\"border.0\", \"#EBEBEB\"));\nconst MyStoreProductListDataCol = styled(Col).withConfig({\n componentId: \"sc-d6ddb6d3-4\"\n})(_templateObject5(), defaultColSize, themeGet(\"text.2\", \"#5F5F69\"), themeGet(\"color.0\", \"#1B1B29\"));\nconst DropdownBtn = styled.div.withConfig({\n componentId: \"sc-d6ddb6d3-5\"\n})(_templateObject6());\nexport const MyStoreProductListHeader = ()=>{\n return /*#__PURE__*/ _jsxs(Row, {\n gutter: 0,\n children: [\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n flex: \"1 1 300px\",\n children: \"자료명\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n flex: \"1 1 70px\",\n children: \"유형\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n flex: \"1 1 30px\",\n children: \"단원\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n children: \"등록일\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n flex: \"1 1 60px\",\n children: \"매출\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n children: \"공개여부\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListHeaderCol, {\n children: \"더보기\"\n })\n ]\n });\n};\nexport const MyStoreProductListItem = observer((param)=>{\n let { item , onClick , onUpdate , onDelete , onShowChange , checkCanUpdate } = param;\n var _item_data_type;\n const selectOptions = [\n {\n value: true,\n label: \"공개\"\n },\n {\n value: false,\n label: \"비공개\"\n }\n ];\n //@todo 잔여슬롯조회\n const items = [\n {\n label: /*#__PURE__*/ _jsx(DropdownBtn, {\n onClick: ()=>onUpdate(item),\n children: \"수정하기\"\n }),\n key: \"edit\"\n },\n {\n label: /*#__PURE__*/ _jsx(DropdownBtn, {\n onClick: ()=>onDelete(item),\n children: \"삭제하기\"\n }),\n key: \"delete\"\n }\n ];\n //이미지 에러시\n const [imageSrc, setImageSrc] = useState(\"\");\n const onError = ()=>{\n setImageSrc(DEFAULT_BOOK_COVER);\n };\n useEffect(()=>{\n setImageSrc(item.thumb_img);\n }, []);\n const defaultValue = item.manual_inactive === true ? false : item.is_published;\n // @ts-ignore\n const itemDataType = (item === null || item === void 0 ? void 0 : (_item_data_type = item.data_type) === null || _item_data_type === void 0 ? void 0 : _item_data_type.length) > 0 ? item.data_type : undefined;\n return /*#__PURE__*/ _jsx(MyStoreProductListItemWrapper, {\n children: /*#__PURE__*/ _jsxs(Row, {\n gutter: 0,\n align: \"middle\",\n children: [\n /*#__PURE__*/ _jsxs(MyStoreProductListDataCol, {\n flex: \"1 1 300px\",\n className: \"title-box\",\n children: [\n /*#__PURE__*/ _jsx(Image, {\n className: \"thumbImg\",\n src: imageSrc,\n alt: \"thumb\",\n width: 32,\n height: 44,\n onError: onError\n }),\n /*#__PURE__*/ _jsx(\"div\", {\n className: \"title\",\n children: /*#__PURE__*/ _jsx(Link, {\n href: \"/products/\".concat(item.product_id),\n target: \"_blank\",\n children: item.title\n })\n })\n ]\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListDataCol, {\n flex: \"1 1 70px\",\n children: /*#__PURE__*/ _jsx(\"div\", {\n className: \"type\",\n children: itemDataType && /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n DataTypesWithString[itemDataType[0]],\n (itemDataType === null || itemDataType === void 0 ? void 0 : itemDataType.length) > 1 && /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n \" 외 \",\n (itemDataType === null || itemDataType === void 0 ? void 0 : itemDataType.length) - 1\n ]\n })\n ]\n })\n })\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListDataCol, {\n flex: \"1 1 30px\",\n children: /*#__PURE__*/ _jsx(\"div\", {\n children: item.base_source_type === \"work\" ? \"-\" : item.unit\n })\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListDataCol, {\n children: /*#__PURE__*/ _jsx(\"div\", {\n children: dayjs(item.created_at).format(\"YY.MM.DD\")\n })\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListDataCol, {\n flex: \"1 1 60px\",\n children: /*#__PURE__*/ _jsxs(\"div\", {\n children: [\n priceFormatter(Number(item.total_sales)),\n \"원\"\n ]\n })\n }),\n /*#__PURE__*/ _jsxs(MyStoreProductListDataCol, {\n children: [\n item.manual_inactive && /*#__PURE__*/ _jsx(Button, {\n className: \"inactive-btn\",\n onClick: ()=>{\n Modal.error({\n title: \"출처교재 라이선스 기한 만료\",\n content: \"출처교재 라이선스를 새로 구매해주세요\"\n });\n },\n children: \"공개/비공개 전환이 불가함 안내 버튼\"\n }),\n /*#__PURE__*/ _jsx(Select, {\n disabled: item.manual_inactive,\n defaultValue: defaultValue,\n onChange: (value)=>onShowChange(item, value),\n options: selectOptions\n })\n ]\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListDataCol, {\n className: \"more-box\",\n children: /*#__PURE__*/ _jsx(Dropdown, {\n menu: {\n items\n },\n trigger: [\n \"click\"\n ],\n onOpenChange: (open)=>{\n if (open) {\n ;\n checkCanUpdate({\n handout_id: item.id.toString()\n });\n }\n },\n placement: \"bottom\",\n children: /*#__PURE__*/ _jsx(Image, {\n src: \"/static/assets/icon_more.svg\",\n alt: \"더보기\",\n width: 32,\n height: 32\n })\n })\n })\n ]\n })\n });\n});\nexport const MyStoreProductList = observer((param)=>{\n let { dataSource , onClick , onEmptyClick , onDelete , onUpdate , onShowChange , searchStatus , checkCanUpdate } = param;\n if (searchStatus) {\n return /*#__PURE__*/ _jsx(\"div\", {\n style: {\n width: \"100%\",\n border: \"0.5px solid #f3f3f3\",\n color: \"#bbbbbf\",\n padding: \"38px 0\",\n textAlign: \"center\",\n fontSize: \"14px\",\n marginTop: \"24px\",\n backgroundColor: \"#fff\"\n },\n children: \"검색결과가 없습니다.\"\n });\n } else if (dataSource.length <= 0) {\n return /*#__PURE__*/ _jsx(MyStoreProductListEmpty, {\n title: /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n \"현재 판매 중인 수업자료가 없어요. \",\n /*#__PURE__*/ _jsx(\"br\", {}),\n /*#__PURE__*/ _jsx(\"span\", {\n children: \"내 수업자료를 등록해보세요\"\n })\n ]\n }),\n emptyOptions: {\n image: \"/static/assets/img_empty.svg\",\n imageStyle: {\n height: 50\n }\n },\n onEmptyClick: onEmptyClick\n });\n }\n return /*#__PURE__*/ _jsx(_Fragment, {\n children: /*#__PURE__*/ _jsxs(ScrollArea, {\n tabletMinWidth: 880,\n children: [\n /*#__PURE__*/ _jsx(MyStoreProductListHeader, {}),\n dataSource.map((item)=>/*#__PURE__*/ _jsx(MyStoreProductListItem, {\n item: item,\n onClick: onClick,\n onDelete: onDelete,\n onUpdate: onUpdate,\n onShowChange: onShowChange,\n checkCanUpdate: checkCanUpdate\n }, item.id))\n ]\n })\n });\n});\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n display: flex;\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport styled from \"styled-components\";\nimport { getError } from \"@/components/Formik\";\nimport { Formik } from \"formik\";\nimport React from \"react\";\nimport * as Yup from \"yup\";\nimport { Form, SubmitButton } from \"formik-antd\";\nimport { SearchInput, SearchInputWrapper } from \"../../libraries/components/LibrarySearch\";\nconst StyleForm = styled(Form).withConfig({\n componentId: \"sc-d11d1ee2-0\"\n})(_templateObject());\nexport const MyStoreProductFormSchema = Yup.object().shape({\n keyword: Yup.string().required(\"검색어를 입력해주세요\")\n});\nconst MyStoreProductFormWrapper = styled.div.withConfig({\n componentId: \"sc-d11d1ee2-1\"\n})(_templateObject1());\nexport const MyStoreProductForm = (param)=>{\n let { name , onSubmit , forwardRef , initialStatus , initialValues } = param;\n return /*#__PURE__*/ _jsx(MyStoreProductFormWrapper, {\n children: /*#__PURE__*/ _jsx(Formik, {\n innerRef: (instance)=>{\n if (forwardRef) {\n forwardRef.current = instance;\n }\n },\n validationSchema: MyStoreProductFormSchema,\n onSubmit: onSubmit,\n initialValues: initialValues,\n initialStatus: initialStatus,\n children: (param)=>{\n let { handleChange , handleBlur , touched , errors , isValid , handleSubmit , setValues , values , isSubmitting , status } = param;\n const emailError = getError(\"email\", {\n touched,\n errors,\n status\n });\n const descriptionError = getError(\"description\", {\n touched,\n errors,\n status\n });\n return /*#__PURE__*/ _jsx(StyleForm, {\n style: {\n position: \"relative\"\n },\n children: /*#__PURE__*/ _jsxs(SearchInputWrapper, {\n children: [\n /*#__PURE__*/ _jsx(SearchInput, {\n name: \"keyword\",\n placeholder: \"자료명을 검색하세요\",\n onChange: handleChange(\"keyword\"),\n onBlur: handleBlur(\"keyword\")\n }),\n /*#__PURE__*/ _jsx(SubmitButton, {\n icon: null,\n type: \"default\",\n onSubmit: handleSubmit,\n loading: isSubmitting\n })\n ]\n })\n });\n }\n })\n });\n};\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\\n display: flex;\\n gap: 8px;\\n justify-content: flex-end;\\n\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs, Fragment as _Fragment } from \"react/jsx-runtime\";\nimport { useViewModel } from \"@/lib/viewModels\";\nimport { MyStoreProductListViewModel } from \"../viewModels/MyStoreProductListViewModel\";\nimport styled from \"styled-components\";\nimport { observer } from \"mobx-react-lite\";\nimport { useStores } from \"@/hooks/useStores\";\nimport { Button, Pagination } from \"antd\";\nimport React from \"react\";\nimport { MyStoreProductFilter } from \"../components/MyStoreProductFilter\";\nimport { MyStoreProductList } from \"../components/MyStoreProductList\";\nimport { useAuthStore } from \"@/lib/auth/AuthStore\";\nimport { useApiService } from \"@/lib/apiService\";\nimport { SearchFormWrapper } from \"@/modules/mypages/libraries/components/LibraryBookList\";\nimport Link from \"next/link\";\nimport { BookManagementWrapper } from \"@/modules/mypages/products/pages/MyStoreProductListPage\";\nimport { useRouter } from \"next/router\";\nimport { MyStoreProductForm } from \"@/modules/mypages/licenses/stores/MyStoreProductForm\";\nimport { DefaultLoadingContainer } from \"@/components/DefaultLoadingContainer\";\nimport { PaginationWrapper } from \"@/components/PaginationWrapper\";\nconst MyStoreProductListViewWrapper = styled.div.withConfig({\n componentId: \"sc-d57fc3ed-0\"\n})(_templateObject());\nconst MyStoreProductBtnWrapper = styled.div.withConfig({\n componentId: \"sc-d57fc3ed-1\"\n})(_templateObject1());\nexport const MyStoreProductListView = observer((props)=>{\n const myStoreProductStore = useStores();\n const authStore = useAuthStore();\n const apiService = useApiService();\n const router = useRouter();\n const { status , actions } = useViewModel({\n rootStore: myStoreProductStore,\n apiService,\n authStore,\n router\n }, MyStoreProductListViewModel);\n const currentPagination = actions.getPagination();\n return /*#__PURE__*/ _jsxs(_Fragment, {\n children: [\n !status.initialized && /*#__PURE__*/ _jsx(DefaultLoadingContainer, {\n title: \"데이터를 불러오는 중입니다.\"\n }),\n status.initialized && /*#__PURE__*/ _jsxs(MyStoreProductListViewWrapper, {\n children: [\n (status.searchStatus || actions.items.length > 0) && /*#__PURE__*/ _jsxs(BookManagementWrapper, {\n children: [\n /*#__PURE__*/ _jsx(SearchFormWrapper, {\n children: /*#__PURE__*/ _jsx(MyStoreProductForm, {\n name: \"MyStoreProductForm\",\n initialStatus: status.initialStatus,\n initialValues: status.initialValues,\n onSubmit: actions.onSubmit\n })\n }),\n /*#__PURE__*/ _jsxs(MyStoreProductBtnWrapper, {\n children: [\n status.labName && /*#__PURE__*/ _jsx(Button, {\n type: \"primary\",\n ghost: true,\n onClick: actions.navigateToLab,\n className: \"lab-btn\",\n children: \"연구소 들어가기\"\n }),\n /*#__PURE__*/ _jsx(Link, {\n href: \"/mypage/stores/products/new\",\n passHref: true,\n legacyBehavior: true,\n children: /*#__PURE__*/ _jsx(Button, {\n type: \"primary\",\n className: \"new-btn\",\n children: \"새 자료 등록\"\n })\n })\n ]\n })\n ]\n }),\n actions.items.length > 0 && /*#__PURE__*/ _jsx(\"div\", {\n children: /*#__PURE__*/ _jsx(MyStoreProductFilter, {\n activeSort: status.sort,\n activeTab: status.tab,\n onTab: actions.onTabsChange,\n onSort: actions.onSelectChange,\n items: actions.items,\n metadata: status.metadata\n })\n }),\n /*#__PURE__*/ _jsx(MyStoreProductList, {\n onDelete: actions.onDelete,\n onUpdate: actions.onUpdate,\n onClick: actions.onItemClick,\n dataSource: actions.items,\n onEmptyClick: actions.onEmptyClick,\n onShowChange: actions.onShowChange,\n searchStatus: status.searchStatus,\n checkCanUpdate: actions.checkCanUpdateHandout\n }),\n actions.items.length > 0 && /*#__PURE__*/ _jsx(PaginationWrapper, {\n children: /*#__PURE__*/ _jsx(Pagination, {\n ...currentPagination.current,\n onChange: actions.updatePageChange\n })\n })\n ]\n })\n ]\n });\n});\n","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\\n display: flex;\\n justify-content: space-between;\\n margin-bottom: 16px;\\n\\n & > span {\\n font-size: 20px;\\n font-weight: bold;\\n }\\n\\n .new-btn,\\n .lab-btn {\\n width: 180px;\\n height: 48px;\\n padding: 0 8px;\\n &.lab-btn > span {\\n font-size: 16px;\\n font-weight: bold;\\n line-height: 46px;\\n }\\n &.new-btn > span {\\n font-size: 16px;\\n font-weight: bold;\\n line-height: 46px;\\n color: #fff;\\n }\\n }\\n\\n @media (max-width: 1200px) {\\n margin-top: 8px;\\n\\n .new-btn {\\n span {\\n font-size: 15px;\\n }\\n }\\n }\\n @media (max-width: 768px) {\\n flex-direction: column;\\n justify-content: flex-end;\\n gap: 8px;\\n .new-btn,\\n .lab-btn {\\n width: 120px;\\n\\n span {\\n font-size: 14px;\\n }\\n }\\n }\\n\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport React from \"react\";\nimport { Provider } from \"mobx-react\";\nimport styled from \"styled-components\";\nimport { createMyStoreProductStore } from \"../stores/MyStoreProductModel\";\nimport { MyStoreProductListView } from \"../views/MyStoreProductListView\";\nimport { CategoryName } from \"../../libraries/components/LibraryBookList\";\nconst MyStoreProductListPageWrapper = styled.div.withConfig({\n componentId: \"sc-fbabe14b-0\"\n})(_templateObject());\nexport const BookManagementWrapper = styled.div.withConfig({\n componentId: \"sc-fbabe14b-1\"\n})(_templateObject1());\nexport const MyStoreProductListPage = (param)=>{\n let { products } = param;\n const store = createMyStoreProductStore({\n products\n });\n return /*#__PURE__*/ _jsx(MyStoreProductListPageWrapper, {\n children: /*#__PURE__*/ _jsxs(Provider, {\n ...store,\n children: [\n /*#__PURE__*/ _jsx(CategoryName, {\n children: \"자료 관리\"\n }),\n /*#__PURE__*/ _jsx(MyStoreProductListView, {})\n ]\n })\n });\n};\n","import { jsx as _jsx } from \"react/jsx-runtime\";\nimport React from \"react\";\nimport { MyPageLayout } from \"@/containers/Layout/MyPage/Layout\";\nimport { MyStoresLayout } from \"@/containers/Layout/MyPage/MyStoresLayout\";\nimport { MyStoreProductListPage } from \"@/modules/mypages/products/pages/MyStoreProductListPage\";\nimport { MyPageWrapper } from \"../..\";\nconst MyStoreProductsNextPage = (param)=>{\n let { products } = param;\n return /*#__PURE__*/ _jsx(MyPageWrapper, {\n children: /*#__PURE__*/ _jsx(MyPageLayout, {\n children: /*#__PURE__*/ _jsx(MyStoresLayout, {\n children: /*#__PURE__*/ _jsx(MyStoreProductListPage, {\n products: products\n })\n })\n })\n });\n};\nexport var __N_SSP = true;\nexport default MyStoreProductsNextPage;\n"],"names":[],"sourceRoot":""}