UNPKG

test-iki-mini-app

Version:

ứng dựng bán hàng trên mini app z a l o

58 lines (56 loc) 5.26 kB
import { create } from "zustand"; import { RepositoryRemote } from "../services"; import { alerts } from "../utils/alerts"; import { constants as c } from "../constants"; import { getMeta } from "../utils"; import { globalVariable } from "../constants/globalVariable"; export const useAppStore = create((set) => ({ // appTheme: JSON.parse(getMeta("web_theme")) ?? { appTheme: {"id":168,"store_id":375,"logo_url":"https:\/\/data1.ikitech.vn\/public\/api\/SahaImages\/aJoJwAhCrz1660184859.webp","domain":"","favicon_url":"https:\/\/data1.ikitech.vn\/public\/api\/SahaImages\/MtFmkbjnVV1660184869.webp","image_share_web_url":null,"home_title":"asdss","home_description":"gdfgdfgdfgdfg1231","no_use_sub_domain":0,"is_show_logo":null,"color_main_1": globalVariable.MAIN_COLOR,"color_main_2":null,"font_color_all_page":null,"font_color_title":null,"font_color_main":null,"font_family":null,"icon_hotline":null,"is_show_icon_hotline":true,"note_icon_hotline":null,"phone_number_hotline":"0389633548","icon_email":null,"is_show_icon_email":false,"title_popup_icon_email":null,"title_popup_success_icon_email":null,"email_contact":null,"body_email_success_icon_email":null,"icon_facebook":null,"is_show_icon_facebook":true,"note_icon_facebook":null,"id_facebook":"https:\/\/Facebook.com\/duchieudeptrai","icon_zalo":null,"is_show_icon_zalo":true,"note_icon_zalo":null,"id_zalo":"0389633548","is_show_icon_youtube":true,"id_youtube":"UCQ9d5WZiJPI2-ZpN-yl9VdQ","id_tiktok":"@odaycocomcho00","is_show_icon_tiktok":true,"is_show_icon_ministry_of_industry_and_trade":true,"content_ministry_of_industry_and_trade":"Số ĐKKD 0107852394, Sở KHĐT Tp. Hà Nội cấp ngày 04/10/2017","link_ministry_of_industry_and_trade":"abc","is_scroll_button":null,"type_button":null,"header_type":1,"color_background_header":null,"color_text_header":null,"type_navigator":null,"type_loading":null,"type_of_menu":null,"product_item_type":null,"search_background_header":null,"search_text_header":null,"carousel_type":null,"home_id_carousel_app_image":null,"home_list_category_is_show":null,"home_id_list_category_app_image":null,"home_top_is_show":null,"home_top_text":null,"home_top_color":null,"home_carousel_is_show":null,"home_page_type":10,"category_page_type":null,"product_page_type":null,"is_show_same_product":null,"is_show_list_post_contact":true,"post_id_help":null,"post_id_contact":32,"post_id_about":null,"post_id_terms":133,"post_id_return_policy":177,"post_id_support_policy":178,"post_id_privacy_policy":179,"contact_page_type":null,"contact_google_map":null,"contact_address":"47 Trung K\u00ednh - Trung H\u00f2a - C\u1ea7u Gi\u1ea5y - H\u00e0 N\u1ed9i","contact_email":"hello@gmail.com","contact_business_registration_certificate":null,"contact_short_description":null,"contact_individual_organization_name":"Công ty cổ phần IKITECH Việt Nam","contact_phone_number":"0987654321","contact_time_work":"8h30-17h30","contact_info_bank":null,"contact_fanpage":"https:\/\/www.facebook.com\/2sao.vietnamnet.vn\/","html_footer":null,"banner_type":1,"product_home_type":1,"option_total_show_type":2,"post_home_type":3,"footer_type":1,"is_use_footer_html":false,"google_tag_manager_id":null,"code_google_analytics":null,"google_site_verification_code":"btgh4Xogy9UenyAavEzd4B-rZFH7DYb56NcgJMFOxHM","created_at":"2022-08-11T09:18:45.000000Z","updated_at":"2022-09-26T13:54:03.000000Z","carousel_app_images":[{"store_id":375,"image_url":"https:\/\/data1.ikitech.vn\/public\/api\/SahaImages\/buCWAqTCfb1660184818.webp","title":null,"created_at":"2022-09-26 13:54:03","updated_at":"2022-09-26 13:54:03"},{"store_id":375,"image_url":"https:\/\/data1.ikitech.vn\/public\/api\/SahaImages\/nHuJntfNbE1660184835.webp","title":null,"created_at":"2022-09-26 13:54:03","updated_at":"2022-09-26 13:54:03"}]} ?? { headerBackgroudColor: c.DEFAULT_HEADER_BACKGROUND_COLOR, headerTextColor: c.DEFAULT_HEADER_TEXT_COLOR, home_title: c.DEFAULT_HOME_TITLE, favicon_url: c.DEFAULT_SHORTCUT, color_main_1: c.DEFAULT_COLOR, shortcut: c.DEFAULT_SHORTCUT, address: c.DEFAULT_ADDRESS, logo_url: c.DEFAULT_LOGO, title: c.DEFAULT_TITLE, phone: c.DEFAULT_PHONE, mail: c.DEFAULT_MAIL, post_id_support_policy: null, post_id_privacy_policy: null, post_id_return_policy: null, post_id_contact: null, post_id_about: null, post_id_terms: null, font_family: "loading", post_id_help: null, }, infoStore: {}, loading: false, getWebTheme: async (onSuccess = () => {}) => { try { set({ loading: true }); const response = await RepositoryRemote.app.getWebTheme(); set({ appTheme: response }); localStorage.setItem("appTheme", JSON.stringify(response)); onSuccess(); } catch (error) { alerts.error(error); } set({ loading: false }); }, getInfoStore: async (onSuccess = () => {}) => { try { set({ loading: true }); const response = await RepositoryRemote.app.getWebTheme(); set({ infoStore: response }); localStorage.setItem("appTheme", JSON.stringify(response)); onSuccess(); } catch (error) { alerts.error(error); } set({ loading: false }); }, }));