{"version":3,"file":"static/chunks/pages/mypage/accounts-50dc179035e68c95.js","mappings":"AACA","sources":["webpack://_N_E/?25a7","webpack://_N_E/./src/modules/mypages/libraries/components/LibraryBookList.tsx","webpack://_N_E/./src/modules/mypages/accounts/stores/MyAccountModel.tsx","webpack://_N_E/./src/modules/mypages/accounts/commands/checkNicknameCommand.ts","webpack://_N_E/./src/modules/mypages/accounts/commands/updateUserCommand.ts","webpack://_N_E/./src/modules/accounts/commands/deleteUserCommand.ts","webpack://_N_E/./src/modules/mypages/accounts/viewModels/MyAccountFormViewModel.tsx","webpack://_N_E/./src/modules/mypages/accounts/components/modals/ResignMembershipConfirm.tsx","webpack://_N_E/./src/modules/mypages/accounts/views/MyAccountFormView.tsx","webpack://_N_E/./src/modules/mypages/accounts/pages/MyAccountFormPage.tsx","webpack://_N_E/./src/containers/Layout/MyPage/MySolvookSettingLayout.tsx","webpack://_N_E/./src/pages/mypage/accounts/index.tsx","webpack://_N_E/"],"sourcesContent":["\n (window.__NEXT_P = window.__NEXT_P || []).push([\n \"/mypage/accounts\",\n function () {\n return require(\"private-next-pages/mypage/accounts/index.tsx\");\n }\n ]);\n if(module.hot) {\n module.hot.dispose(function () {\n window.__NEXT_P.push([\"/mypage/accounts\"])\n });\n }\n ","import { _ as _tagged_template_literal } from \"@swc/helpers/_/_tagged_template_literal\";\nfunction _templateObject() {\n const data = _tagged_template_literal([\n \"\\n font-size: 16px;\\n font-weight: bold;\\n color: \",\n \";\\n line-height: 1.5;\\n margin: 16px 0;\\n\\n @media (max-width: 1200px) {\\n display: none;\\n }\\n @media (max-width: 768px) {\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject1() {\n const data = _tagged_template_literal([\n \"\\n width: 100%;\\n max-width: 384px;\\n\\n .ant-form {\\n .ant-form-item {\\n margin-bottom: 0;\\n }\\n }\\n\\n @media (max-width: 1200px) {\\n flex: 1;\\n }\\n @media (max-width: 768px) {\\n max-width: 100%;\\n }\\n\"\n ]);\n _templateObject1 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject2() {\n const data = _tagged_template_literal([\n \"\\n position: relative;\\n display: flex;\\n flex-direction: column;\\n width: 100%;\\n\"\n ]);\n _templateObject2 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject3() {\n const data = _tagged_template_literal([\n \"\\n position: absolute;\\n top: 16px;\\n right: 0;\\n z-index: 30;\\n\\n .ant-select {\\n &,\\n &:not(.ant-select-customize-input) {\\n width: 100px;\\n }\\n }\\n\"\n ]);\n _templateObject3 = function() {\n return data;\n };\n return data;\n}\nfunction _templateObject4() {\n const data = _tagged_template_literal([\n \"\\n .ant-tabs-nav {\\n margin-top: 12px;\\n margin-bottom: 4px;\\n\\n &:before {\\n display: none;\\n }\\n\\n .ant-tabs-nav-wrap {\\n .ant-tabs-nav-list {\\n .ant-tabs-tab {\\n min-width: 50px;\\n font-size: 16px;\\n color: \",\n \";\\n margin: 0;\\n text-shadow: none;\\n transition: opacity 0.2s;\\n\\n &-active {\\n font-weight: bold;\\n }\\n\\n &:not(:nth-of-type(1)) {\\n &:before {\\n display: inline-block;\\n vertical-align: baseline;\\n content: '';\\n width: 1px;\\n height: 12px;\\n margin: 0 6px;\\n background: rgba(27, 27, 41, 0.1);\\n }\\n }\\n\\n &:not(.ant-tabs-tab-active):hover {\\n opacity: 0.7;\\n }\\n\\n .num {\\n color: rgba(27, 27, 41, 0.3);\\n }\\n }\\n\\n .ant-tabs-ink-bar {\\n display: none;\\n }\\n }\\n }\\n }\\n\"\n ]);\n _templateObject4 = function() {\n return data;\n };\n return data;\n}\nimport React from \"react\";\nimport { Tabs } from \"antd\";\nimport styled from \"styled-components\";\nimport { themeGet } from \"@styled-system/theme-get\";\nexport const CategoryName = styled.h3.withConfig({\n componentId: \"sc-8a14d8b7-0\"\n})(_templateObject(), themeGet(\"color.0\", \"#1B1B29\"));\nexport const SearchFormWrapper = styled.div.withConfig({\n componentId: \"sc-8a14d8b7-1\"\n})(_templateObject1());\nconst ContentsContainer = styled.div.withConfig({\n componentId: \"sc-8a14d8b7-2\"\n})(_templateObject2());\nconst SelectWrapper = styled.div.withConfig({\n componentId: \"sc-8a14d8b7-3\"\n})(_templateObject3());\nexport const StyledTabs = styled(Tabs).withConfig({\n componentId: \"sc-8a14d8b7-4\"\n})(_templateObject4(), themeGet(\"text.0\", \"#1B1B29\"));\n","import { useRef } from \"react\";\nimport { Page } from \"@/lib/pagination\";\nimport produce from \"immer\";\nimport { useLocalObservable } from \"mobx-react-lite\";\nexport const MyAccountModel = (props)=>{\n return {\n myAccounts: props.myAccounts || [],\n myAccount: props.myAccount || {},\n pagination: Page({}),\n updateMyAccounts (myAccounts) {\n this.myAccounts = myAccounts;\n },\n addMyAccounts (myAccounts) {\n this.myAccounts = [\n ...this.myAccounts,\n ...myAccounts\n ];\n },\n updateMyAccount (myAccount) {\n this.myAccounts = produce(this.myAccounts, (draft)=>{\n const index = draft.findIndex((x)=>x.id === myAccount.id);\n draft[index] = myAccount;\n });\n this.myAccount = myAccount;\n },\n get last () {\n if (this.myAccounts.length > 0) {\n return this.myAccounts[this.myAccounts.length - 1];\n } else {\n return null;\n }\n }\n };\n};\nexport const useMyAccountModelStore = (props)=>{\n return useLocalObservable(()=>MyAccountModel(props));\n};\nexport const createMyAccountStore = 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 myAccounts: useMyAccountModelStore(props)\n });\n return stores.current;\n};\n","import { api } from \"../../../../api\";\n/**\n * 닉네임 중복체크\n * @param dto CheckNicknameRequestDTO\n * @returns Promise\n */ export class CheckNicknameCommand {\n execute(dto) {\n const url = \"/users/check-nickname\";\n const params = new URLSearchParams();\n params.set(\"nickname\", dto.nickname);\n return api(url, {\n params\n }).then((res)=>res.data);\n // return this.client\n // \t.post<\n // \t\tCheckExistNicknameResponseDTO,\n // \t\tAxiosResponse,\n // \t\tCheckNicknameRequestDTO\n // \t>(url.toString(), dto)\n // \t.then((res) => res.data)\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","import { api } from \"../../../../api\";\n/**\n * 회원정보 수정\n * @param query UpdateUserDTO - user id\n * @param dto UpdateUserRequestDTO - 수정하려는 정보 dto\n * @returns Promise\n */ export class UpdateUserCommand {\n async execute(query, dto) {\n const url = \"/users/\".concat(query.id);\n return api(url, {\n data: dto,\n method: \"PUT\"\n }).then((res)=>res.data);\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","import { api } from \"../../../api\";\n/**\n * 회원탈퇴\n * @param id DeleteUserQueryDTO - user id\n * @returns Promise\n */ export class DeleteUserCommand {\n execute(param) {\n let { id } = param;\n const url = \"/users/\".concat(id);\n return api(url, {\n method: \"delete\"\n }).then((res)=>res.data);\n }\n constructor(apiService){\n this.apiService = apiService;\n }\n}\n","// noinspection TypeScriptValidateTypes\nimport { useLocalObservable } from \"mobx-react-lite\";\nimport { useEffect, useMemo } from \"react\";\nimport { Modal } from \"antd\";\nimport { CheckNicknameCommand } from \"../commands/checkNicknameCommand\";\nimport { UpdateUserCommand } from \"../commands/updateUserCommand\";\nimport { HOME_PAGE, LOGIN_PAGE, LOGIN_RESET_PASSWORD_PAGE } from \"@/settings/constant\";\nimport { DeleteUserCommand } from \"../../../accounts/commands/deleteUserCommand\";\nimport { GetUserCommand } from \"../commands/getUserCommand\";\nimport { runInAction } from \"mobx\";\nexport const MyAccountFormViewModel = (param)=>{\n let { router , authStore , apiService } = param;\n const store = useLocalObservable(()=>({}));\n const getUserCommand = useMemo(()=>new GetUserCommand(apiService), [\n apiService\n ]);\n const checkNickNameCommand = useMemo(()=>new CheckNicknameCommand(apiService), [\n apiService\n ]);\n const updateUserCommand = useMemo(()=>new UpdateUserCommand(apiService), [\n apiService\n ]);\n const deleteUserCommand = useMemo(()=>new DeleteUserCommand(apiService), [\n apiService\n ]);\n const status = useLocalObservable(()=>({\n errors: [],\n nickName: \"none\",\n resignModal: false,\n checked: false,\n nicknamePassed: \"\",\n initialized: false,\n loading: false,\n isAgree: false,\n checkedNickname: \"\",\n initialStatus: {\n apiErrors: {}\n },\n initialValues: {\n email: authStore.user.email,\n loginType: \"\",\n name: \"\",\n nickname: \"\",\n phoneNumber: authStore.user.phoneNumber,\n profileImage: \"\"\n }\n }));\n const actions = useLocalObservable(()=>{\n return {\n async initialize () {\n await actions.getUserInfo();\n runInAction(()=>{\n status.initialized = true;\n status.loading = false;\n });\n },\n async onSubmit (values, formikActions) {\n formikActions.setSubmitting(true);\n //조건1 : 중복체크한 닉네임과, 입력한 닉네임이 같아야함 status.checkedNickname === values.nickname\n //조건2 : 원래닉네임과 같다면?\n //조건3 : 중복체크한 뒤에 닉네임을 또 바꾼다면? --> 다시 중복체크를 해야한다.\n //조건4 : 렌더링 문제로 인한 이전 닉네임으로 바꿔도 중복체크 버튼이 활성화가 안됨\n //조건5 : 닉네임 에러시에\n if (status.nicknamePassed !== \"success\") {\n Modal.error({});\n return;\n }\n try {\n const response = await updateUserCommand.execute({\n id: authStore.user.id\n }, {\n nickname: values.nickname\n });\n if (response.success) {\n Modal.success({\n title: \"회원정보 수정\",\n content: \"회원정보가 수정되었습니다.\"\n });\n // todo: userType 통일 필요\n const { user } = response;\n authStore.updateUser(user);\n } else {\n Modal.error({\n title: \"error\",\n content: response.message\n });\n }\n } catch (error) {\n Modal.error({\n title: error.message,\n content: \"회원정보 수정에 실패했습니다.\"\n });\n } finally{\n formikActions.setSubmitting(true);\n }\n },\n async resignMembership () {\n status.resignModal = false;\n try {\n const response = await deleteUserCommand.execute({\n id: authStore.user.id\n }) // authStore.user.uid\n ;\n if (response.success) {\n Modal.success({\n title: \"회원탈퇴\",\n content: \"회원탈퇴되었습니다.\"\n });\n await authStore.logout();\n await router.push(HOME_PAGE);\n } else {\n Modal.error({\n title: \"오류!\",\n content: \"다시 한번 시도해주세요!\"\n });\n }\n } catch (error) {\n Modal.error({\n title: \"오류!\",\n content: \"다시 한번 시도해주세요!\"\n });\n }\n },\n onPasswordChange () {\n router.push(LOGIN_RESET_PASSWORD_PAGE);\n },\n async onCheckNickName (nickname) {\n if (authStore.currentUser.id === undefined) {\n Modal.error({\n title: \"오류!\",\n content: \"로그인 후에 이용해주세요!\"\n });\n router.push(LOGIN_PAGE);\n return;\n }\n if (nickname.replaceAll(\" \", \"\").length === 0) {\n Modal.error({\n title: \"닉네임을 다시 입력해주세요\",\n content: \"공백으로만 이루어진 닉네임은 사용할 수 없습니다.\"\n });\n return;\n }\n try {\n const response = await checkNickNameCommand.execute({\n nickname: nickname\n });\n if (response.success) {\n if (response.exist === false) {\n status.nicknamePassed = \"success\";\n status.checkedNickname = nickname;\n } else {\n status.nicknamePassed = \"error\";\n status.checkedNickname = nickname;\n }\n } else {\n if (response.error === '\"nickname\" length must be less than or equal to 8 characters long') {\n Modal.error({\n title: \"오류!\",\n content: \"닉네임은 8글자 이하로 입력해주세요!\"\n });\n }\n }\n } catch (error) {\n status.nicknamePassed = \"error\";\n }\n },\n async getUserInfo () {\n try {\n const response = await getUserCommand.execute({\n id: String(authStore.user.id)\n });\n // todo :: 카카오 유저와 휴대폰번호에 대한 분기처리 필요, 추후 서버에서 channel 로 내려올 것(바뀔 수도 있음)\n if (response.success) {\n var _response_user;\n status.initialValues = {\n email: (response === null || response === void 0 ? void 0 : (_response_user = response.user) === null || _response_user === void 0 ? void 0 : _response_user.email) || \"\",\n loginType: response.user.provider_data.channel,\n name: response.user.name,\n nickname: response.user.nickname,\n phoneNumber: response.user.phone,\n profileImage: response.user.picture\n };\n }\n } catch (error) {\n ;\n }\n },\n dispose () {}\n };\n });\n useEffect(()=>{\n actions.initialize({});\n }, []);\n return {\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 margin-top: 20px;\\n .agree-area {\\n text-align: center;\\n margin: 32px 0 8px;\\n\\n span {\\n font-size: 16px;\\n font-weight: bold;\\n }\\n }\\n\"\n ]);\n _templateObject = 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 { Checkbox } from \"antd\";\nimport { PopupInfoBox } from \"@/modules/viewer/modals/StudentDelete\";\nimport { WarningOutlined } from \"@ant-design/icons\";\nconst ResignMembershipConfirmWrapper = styled.div.withConfig({\n componentId: \"sc-3a4b029f-0\"\n})(_templateObject());\nexport const ResignMembershipConfirm = (param)=>{\n let { onChange , isAgree } = param;\n return /*#__PURE__*/ _jsxs(ResignMembershipConfirmWrapper, {\n children: [\n /*#__PURE__*/ _jsxs(PopupInfoBox, {\n children: [\n /*#__PURE__*/ _jsxs(\"span\", {\n children: [\n \"정말로 회원 탈퇴 하시겠습니까? \",\n /*#__PURE__*/ _jsx(\"br\", {}),\n \"탈퇴 시, 해당 계정으로 구매하신 라이선스 및 \",\n /*#__PURE__*/ _jsx(\"br\", {}),\n \"수업자료를 이용할 수 없게 됩니다.\"\n ]\n }),\n /*#__PURE__*/ _jsxs(\"span\", {\n className: \"warning\",\n children: [\n /*#__PURE__*/ _jsx(WarningOutlined, {\n color: \"red\"\n }),\n \"회원 탈퇴 시, 구매 내역 포함 모든 정보는 삭제되며 복구되지 않습니다.\"\n ]\n })\n ]\n }),\n /*#__PURE__*/ _jsx(\"div\", {\n className: \"agree-area\",\n children: /*#__PURE__*/ _jsx(Checkbox, {\n onChange: onChange,\n checked: isAgree,\n children: \"회원 탈퇴 시의 안내 내용을 모두 확인하였습니다.\"\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 padding-top: 24px;\\n\\n @media (max-width: 768px) {\\n padding-top: 4px;\\n }\\n\"\n ]);\n _templateObject = function() {\n return data;\n };\n return data;\n}\nimport { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport { useViewModel } from \"@/lib/viewModels\";\nimport { MyAccountFormViewModel } from \"../viewModels/MyAccountFormViewModel\";\nimport styled from \"styled-components\";\nimport { observer } from \"mobx-react-lite\";\nimport React from \"react\";\nimport { MyAccountForm } from \"../components/MyAccountForm\";\nimport { useAuthStore } from \"@/lib/auth/AuthStore\";\nimport { useApiService } from \"@/lib/apiService\";\nimport { useRouter } from \"next/router\";\nimport { GenericPanelWithModal } from \"@/components/GenericPanel\";\nimport { ResignMembershipConfirm } from \"@/modules/mypages/accounts/components/modals/ResignMembershipConfirm\";\nconst MyAccountFormViewWrapper = styled.div.withConfig({\n componentId: \"sc-7c5e6b07-0\"\n})(_templateObject());\nexport const MyAccountFormView = observer((props)=>{\n const authStore = useAuthStore();\n const apiService = useApiService();\n const router = useRouter();\n const { status , actions } = useViewModel({\n router,\n authStore,\n apiService\n }, MyAccountFormViewModel);\n return /*#__PURE__*/ _jsxs(MyAccountFormViewWrapper, {\n children: [\n status.initialized && /*#__PURE__*/ _jsx(MyAccountForm, {\n checked: status.checked,\n onChange: ()=>status.checked = !status.checked,\n modalStatus: status.resignModal,\n resignModal: ()=>status.resignModal = !status.resignModal,\n nicknamePassed: status.nicknamePassed,\n onCheckNickName: actions.onCheckNickName,\n initialStatus: status.initialStatus,\n initialValues: status.initialValues,\n resignMembership: actions.resignMembership,\n onSubmit: actions.onSubmit,\n onPasswordChange: actions.onPasswordChange,\n checkedNickname: status.checkedNickname\n }),\n /*#__PURE__*/ _jsx(GenericPanelWithModal, {\n title: \"회원 탈퇴 안내\",\n buttonType: \"warning\",\n closeIcon: true,\n cancelText: \"회원 유지\",\n open: status.resignModal,\n onOk: actions.resignMembership,\n okText: \"회원 탈퇴\",\n okButtonProps: {\n disabled: !status.isAgree,\n className: \"delete-btn\"\n },\n onClose: ()=>{\n status.resignModal = false;\n status.isAgree = false;\n },\n children: /*#__PURE__*/ _jsx(ResignMembershipConfirm, {\n isAgree: status.isAgree,\n onChange: ()=>status.isAgree = !status.isAgree\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}\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 { createMyAccountStore } from \"../stores/MyAccountModel\";\nimport { MyAccountFormView } from \"../views/MyAccountFormView\";\nimport { CategoryName } from \"../../libraries/components/LibraryBookList\";\nconst MyAccountFormPageWrapper = styled.div.withConfig({\n componentId: \"sc-d7ea3b-0\"\n})(_templateObject());\nexport const MyAccountFormPage = (param)=>{\n let { myAccounts } = param;\n const store = createMyAccountStore({\n myAccounts\n });\n return /*#__PURE__*/ _jsx(MyAccountFormPageWrapper, {\n children: /*#__PURE__*/ _jsxs(Provider, {\n ...store,\n children: [\n /*#__PURE__*/ _jsx(CategoryName, {\n children: \"계정 관리\"\n }),\n /*#__PURE__*/ _jsx(MyAccountFormView, {})\n ]\n })\n });\n};\n","import { jsx as _jsx, jsxs as _jsxs } from \"react/jsx-runtime\";\nimport React from \"react\";\nimport { Col } from \"@/lib/web-ui\";\nimport { MyPageSubMenu } from \"@/containers/Layout/MyPage/MyPageSubMenu\";\nimport { StyledRow } from \"@/containers/Layout/MyPage/MySolvookLayout\";\nexport const MySolvookSettingLayout = (param)=>{\n let { children } = param;\n return /*#__PURE__*/ _jsxs(StyledRow, {\n gutter: 72,\n children: [\n /*#__PURE__*/ _jsx(Col, {\n md: 5,\n sm: 8,\n xs: 24,\n className: \"mysolvook-menu-col\",\n children: /*#__PURE__*/ _jsx(MyPageSubMenu, {\n isSettingPage: true\n })\n }),\n /*#__PURE__*/ _jsx(Col, {\n md: 19,\n sm: 16,\n xs: 24,\n className: \"mysolvook-content-col\",\n children: children\n })\n ]\n });\n};\n","import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nimport { useState } from \"react\";\nimport { MyPageLayout } from \"@/containers/Layout/MyPage/Layout\";\nimport { MyAccountFormPage } from \"@/modules/mypages/accounts/pages/MyAccountFormPage\";\nimport { MyPageWrapper } from \"..\";\nimport { MySolvookSettingLayout } from \"@/containers/Layout/MyPage/MySolvookSettingLayout\";\nconst MyPageAccountsPage = ()=>{\n const [loginMethod, setLoginMethod] = useState(false);\n return /*#__PURE__*/ _jsx(MyPageWrapper, {\n children: /*#__PURE__*/ _jsx(MyPageLayout, {\n children: /*#__PURE__*/ _jsx(MySolvookSettingLayout, {\n children: /*#__PURE__*/ _jsx(MyAccountFormPage, {})\n })\n })\n });\n};\nexport var __N_SSP = true;\nexport default MyPageAccountsPage;\n"],"names":[],"sourceRoot":""}