feat: update
This commit is contained in:
@ -1,7 +1,7 @@
|
||||
import { Image } from '@tarojs/components';
|
||||
import Taro, { NodesRef, useDidShow, useLoad, useShareAppMessage } from '@tarojs/taro';
|
||||
|
||||
import { ArrowUp, ArrowDown } from '@taroify/icons';
|
||||
import { ArrowDown, ArrowUp } from '@taroify/icons';
|
||||
import classNames from 'classnames';
|
||||
import { isEqual } from 'lodash-es';
|
||||
import { useCallback, useEffect, useState } from 'react';
|
||||
@ -14,7 +14,7 @@ import Overlay from '@/components/overlay';
|
||||
import PageLoading from '@/components/page-loading';
|
||||
import PartnerBanner from '@/components/partner-banner';
|
||||
import SwitchBar from '@/components/switch-bar';
|
||||
import { APP_TAB_BAR_ID, EventName, OpenSource, PageUrl } from '@/constants/app';
|
||||
import { APP_TAB_BAR_ID, EventName, OpenSource, PageType, PageUrl, RoleType } from '@/constants/app';
|
||||
import { EmployType, JobManageStatus } from '@/constants/job';
|
||||
import { ALL_ANCHOR_SORT_TYPES, ANCHOR_SORT_TYPE_TITLE_MAP, AnchorSortType } from '@/constants/material';
|
||||
import useInviteCode from '@/hooks/use-invite-code';
|
||||
@ -23,6 +23,7 @@ import useLocation from '@/hooks/use-location';
|
||||
import { JobManageInfo } from '@/types/job';
|
||||
import { Coordinate } from '@/types/location';
|
||||
import { IAnchorFilters } from '@/types/material';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { logWithPrefix } from '@/utils/common';
|
||||
import { getLastSelectMyJobId, requestJobManageList, setLastSelectMyJobId } from '@/utils/job';
|
||||
import { getWxLocation } from '@/utils/location';
|
||||
@ -165,8 +166,11 @@ export default function AnchorPage() {
|
||||
}, [location]);
|
||||
|
||||
useLoad(async () => {
|
||||
switchRoleType(RoleType.Company);
|
||||
|
||||
const query = getPageQuery();
|
||||
getInviteCodeFromQueryAndUpdate(query);
|
||||
console.log('哈哈哈 useLoad');
|
||||
|
||||
try {
|
||||
const { jobResults = [] } = await requestJobManageList({ status: JobManageStatus.Open });
|
||||
@ -186,13 +190,13 @@ export default function AnchorPage() {
|
||||
});
|
||||
|
||||
useShareAppMessage(() => {
|
||||
return getCommonShareMessage({ useCapture: true, inviteCode, title: '数万名优质主播等你来挑' });
|
||||
return getCommonShareMessage({ inviteCode, title: '数万名优质主播等你来挑', path: PageUrl.Anchor });
|
||||
});
|
||||
|
||||
useDidShow(() => requestUnreadMessageCount());
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.Anchor}>
|
||||
{!!loading && <PageLoading className={`${PREFIX}__loading`} />}
|
||||
<CustomNavigationBar className={`${PREFIX}__navigation-bar`}>
|
||||
{selectJob && <SwitchBar title={selectJob.title.substring(0, 4)} onClick={handleClickSwitch} />}
|
||||
|
||||
@ -4,7 +4,7 @@ import { Button } from '@taroify/core';
|
||||
import { useCallback } from 'react';
|
||||
|
||||
import HomePage from '@/components/home-page';
|
||||
import { PageUrl } from '@/constants/app';
|
||||
import { PageType, PageUrl } from '@/constants/app';
|
||||
import { copy, logWithPrefix } from '@/utils/common';
|
||||
import { navigateTo } from '@/utils/route';
|
||||
|
||||
@ -136,7 +136,7 @@ export default function DevDebug() {
|
||||
});
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.DEV}>
|
||||
<div className={PREFIX}>
|
||||
{/* <div>{`最近一次的订单 ID: ${lastOrderNo}`}</div>
|
||||
<Button onClick={() => handleCreateOrder(OrderType.Group)} style={marginTopStyle} color="primary">
|
||||
|
||||
@ -4,8 +4,10 @@ import { useCallback } from 'react';
|
||||
|
||||
import HomePage from '@/components/home-page';
|
||||
import SearchCity from '@/components/search-city';
|
||||
import { PageType, PageUrl, RoleType } from '@/constants/app';
|
||||
import { GROUPS } from '@/constants/group';
|
||||
import useInviteCode from '@/hooks/use-invite-code';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { openCustomerServiceChat } from '@/utils/common';
|
||||
import { getCurrentCityCode } from '@/utils/location';
|
||||
import { getInviteCodeFromQueryAndUpdate } from '@/utils/partner';
|
||||
@ -20,11 +22,15 @@ export default function GroupV2() {
|
||||
const inviteCode = useInviteCode();
|
||||
|
||||
useLoad(() => {
|
||||
switchRoleType(RoleType.Anchor);
|
||||
|
||||
const query = getPageQuery();
|
||||
getInviteCodeFromQueryAndUpdate(query);
|
||||
});
|
||||
|
||||
useShareAppMessage(() => getCommonShareMessage({ inviteCode }));
|
||||
useShareAppMessage(() =>
|
||||
getCommonShareMessage({ inviteCode, title: '邀请你加入本地主播求职招聘群', path: PageUrl.GroupV2 })
|
||||
);
|
||||
|
||||
const handleSelectCity = useCallback(cityCode => {
|
||||
if (!checkCityCode(cityCode)) {
|
||||
@ -37,14 +43,14 @@ export default function GroupV2() {
|
||||
}, []);
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.GroupV2}>
|
||||
<div className={PREFIX}>
|
||||
<SearchCity
|
||||
onSelectCity={handleSelectCity}
|
||||
currentCity={getCurrentCityCode()}
|
||||
forGroup
|
||||
offset={72}
|
||||
banner="点击城市加入本地通告群,高薪工作早知道"
|
||||
banner="点击城市加入本地主播招聘群,高薪职位早知道"
|
||||
/>
|
||||
</div>
|
||||
</HomePage>
|
||||
|
||||
@ -4,6 +4,7 @@ import { Tabs } from '@taroify/core';
|
||||
import { useCallback, useState } from 'react';
|
||||
|
||||
import HomePage from '@/components/home-page';
|
||||
import { PageType } from '@/constants/app';
|
||||
import { GroupType, GROUP_PAGE_TABS } from '@/constants/group';
|
||||
import GroupFragment from '@/fragments/group';
|
||||
import useNavigation from '@/hooks/use-navigation';
|
||||
@ -22,7 +23,7 @@ export default function Group() {
|
||||
useShareAppMessage(() => getCommonShareMessage());
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.Group}>
|
||||
<Tabs
|
||||
swipeable
|
||||
value={tabType}
|
||||
|
||||
@ -22,6 +22,7 @@ import { RESPONSE_ERROR_CODE } from '@/http/constant';
|
||||
import { HttpError } from '@/http/error';
|
||||
import { JobDetails } from '@/types/job';
|
||||
import { IMaterialMessage } from '@/types/message';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { copy, logWithPrefix } from '@/utils/common';
|
||||
import { collectEvent, reportEvent } from '@/utils/event';
|
||||
import { getJobTitle, getJobSalary, postPublishJob, requestJobDetail } from '@/utils/job';
|
||||
@ -218,6 +219,8 @@ export default function JobDetail() {
|
||||
}, []);
|
||||
|
||||
useLoad(async () => {
|
||||
switchRoleType(RoleType.Anchor);
|
||||
|
||||
const query = getPageQuery<Pick<JobDetails, 'id'> & { c: string }>();
|
||||
getInviteCodeFromQueryAndUpdate(query);
|
||||
const jobId = query?.id;
|
||||
@ -237,6 +240,7 @@ export default function JobDetail() {
|
||||
if (!data) {
|
||||
return getCommonShareMessage({ inviteCode });
|
||||
}
|
||||
|
||||
return {
|
||||
title: getJobTitle(data) || '',
|
||||
path: getJumpUrl(PageUrl.JobDetail, { id: data.id, share: true, c: inviteCode }),
|
||||
|
||||
@ -6,13 +6,14 @@ import { useCallback, useEffect, useRef, useState } from 'react';
|
||||
import HomePage from '@/components/home-page';
|
||||
import { LoginGuide } from '@/components/login-guide';
|
||||
import MaterialGuide from '@/components/material-guide';
|
||||
import { EventName, OpenSource, PageUrl } from '@/constants/app';
|
||||
import { EventName, OpenSource, PageType, PageUrl, RoleType } from '@/constants/app';
|
||||
import { EmployType, JOB_PAGE_TABS, SortType } from '@/constants/job';
|
||||
import JobFragment from '@/fragments/job/base';
|
||||
import useInviteCode from '@/hooks/use-invite-code';
|
||||
import useLocation from '@/hooks/use-location';
|
||||
import useNavigation from '@/hooks/use-navigation';
|
||||
import { Coordinate } from '@/types/location';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { logWithPrefix } from '@/utils/common';
|
||||
import { getWxLocation, isNotNeedAuthorizeLocation, requestLocation } from '@/utils/location';
|
||||
import { requestUnreadMessageCount } from '@/utils/message';
|
||||
@ -96,6 +97,7 @@ export default function Job() {
|
||||
}, [location]);
|
||||
|
||||
useLoad(async () => {
|
||||
switchRoleType(RoleType.Anchor);
|
||||
const query = getPageQuery<{ sortType: SortType; c?: string; scene?: string }>();
|
||||
const type = query.sortType;
|
||||
if (type === SortType.CREATE_TIME) {
|
||||
@ -121,11 +123,11 @@ export default function Job() {
|
||||
path: getJumpUrl(PageUrl.Job, { sortType, c: inviteCode }),
|
||||
};
|
||||
}
|
||||
return getCommonShareMessage({ inviteCode });
|
||||
return getCommonShareMessage({ inviteCode, path: PageUrl.Job });
|
||||
});
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.JOB}>
|
||||
<Tabs
|
||||
swipeable
|
||||
value={tabType}
|
||||
|
||||
@ -6,7 +6,7 @@ import { useCallback, useEffect, useState } from 'react';
|
||||
import MaterialManagePopup from '@/components/material-manage-popup';
|
||||
import PageLoading from '@/components/page-loading';
|
||||
import SafeBottomPadding from '@/components/safe-bottom-padding';
|
||||
import { EventName } from '@/constants/app';
|
||||
import { EventName, RoleType } from '@/constants/app';
|
||||
import { CollectEventName } from '@/constants/event';
|
||||
import { MaterialStatus } from '@/constants/material';
|
||||
import ProfileViewFragment from '@/fragments/profile/view';
|
||||
@ -17,6 +17,7 @@ import { getCommonShareMessage } from '@/utils/share';
|
||||
import Toast from '@/utils/toast';
|
||||
|
||||
import './index.less';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
|
||||
const PREFIX = 'page-material-profile';
|
||||
|
||||
|
||||
@ -6,7 +6,7 @@ import { useCallback, useEffect, useState } from 'react';
|
||||
import CommonDialog from '@/components/common-dialog';
|
||||
import PageLoading from '@/components/page-loading';
|
||||
import SafeBottomPadding from '@/components/safe-bottom-padding';
|
||||
import { EventName, OpenSource, PageUrl } from '@/constants/app';
|
||||
import { EventName, OpenSource, PageUrl, RoleType } from '@/constants/app';
|
||||
import { CollectEventName } from '@/constants/event';
|
||||
import { MaterialViewSource } from '@/constants/material';
|
||||
import ProfileViewFragment from '@/fragments/profile/view';
|
||||
@ -16,6 +16,7 @@ import { HttpError } from '@/http/error';
|
||||
import { JobManageInfo } from '@/types/job';
|
||||
import { MaterialProfile } from '@/types/material';
|
||||
import { IJobMessage } from '@/types/message';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { copy } from '@/utils/common';
|
||||
import { collectEvent } from '@/utils/event';
|
||||
import { requestHasPublishedJob, requestJobDetail } from '@/utils/job';
|
||||
@ -141,6 +142,8 @@ export default function MaterialViewPage() {
|
||||
}, []);
|
||||
|
||||
useLoad(async () => {
|
||||
switchRoleType(RoleType.Company);
|
||||
|
||||
const context = getPageQuery<IViewContext | IShareContext>();
|
||||
getInviteCodeFromQueryAndUpdate(context as BL.Anything);
|
||||
try {
|
||||
|
||||
@ -175,6 +175,7 @@ export default function MessageChat() {
|
||||
);
|
||||
|
||||
const handleClickReject = useCallback(async () => {
|
||||
await postAddMessageTimes('message_chat_page');
|
||||
if (!chat || !receiver || reject) {
|
||||
return;
|
||||
}
|
||||
|
||||
@ -7,8 +7,9 @@ import { useCallback, useEffect, useRef, useState } from 'react';
|
||||
import HomePage from '@/components/home-page';
|
||||
import MessageCard from '@/components/message-card';
|
||||
import { MessageHelpDialog, MessageNoTimesDialog } from '@/components/message-dialog';
|
||||
import { APP_TAB_BAR_ID, EventName } from '@/constants/app';
|
||||
import { APP_TAB_BAR_ID, EventName, PageType } from '@/constants/app';
|
||||
import { REFRESH_CHAT_LIST_TIME } from '@/constants/message';
|
||||
import { MessageSubscribeIds, SubscribeTempId } from '@/constants/subscribe';
|
||||
import useListHeight, { IUseListHeightProps } from '@/hooks/use-list-height';
|
||||
import useRoleType from '@/hooks/user-role-type';
|
||||
import { MainMessage } from '@/types/message';
|
||||
@ -20,7 +21,10 @@ import {
|
||||
requestUnreadMessageCount,
|
||||
} from '@/utils/message';
|
||||
|
||||
import { isSubscribeRefused, postSubscribe } from '@/utils/subscribe';
|
||||
import './index.less';
|
||||
import { collectEvent } from '@/utils/event';
|
||||
import { CollectEventName } from '@/constants/event';
|
||||
|
||||
const PREFIX = 'page-message';
|
||||
const HEADER_CLASS = `${PREFIX}__header`;
|
||||
@ -58,12 +62,52 @@ export default function Message() {
|
||||
|
||||
const handleClickHelp = useCallback(() => setShowHelp(true), []);
|
||||
|
||||
const handleClickAddMessageTimes = useCallback(async () => {
|
||||
const addMessageTimes = useCallback(async () => {
|
||||
await postAddMessageTimes('message_page');
|
||||
const remain = await requestRemainPushTime();
|
||||
setTimes(remain);
|
||||
}, []);
|
||||
|
||||
const handleClickAddMessageTimes = useCallback(async () => {
|
||||
const [hasRefused, acceptIds] = await isSubscribeRefused(MessageSubscribeIds);
|
||||
if (hasRefused) {
|
||||
await Taro.showModal({
|
||||
title: '提示',
|
||||
content:
|
||||
'您未订阅消息提醒,不能及时获得招聘消息,请前往“设置”,将“新聊天消息”、“未读消息”“面试邀请”均设置为“接收”',
|
||||
showCancel: false,
|
||||
confirmText: '打开设置',
|
||||
});
|
||||
await Taro.openSetting({
|
||||
withSubscriptions: true,
|
||||
});
|
||||
const { subscriptionsSetting: { mainSwitch, itemSettings = {} } = {} } = await Taro.getSetting({
|
||||
withSubscriptions: true,
|
||||
});
|
||||
console.log('subscriptionsSetting:', mainSwitch, itemSettings);
|
||||
const successIds = mainSwitch
|
||||
? MessageSubscribeIds.reduce<SubscribeTempId[]>((acc, id) => {
|
||||
if ((!itemSettings[id] || itemSettings[id] === 'accept') && !acceptIds.includes(id)) {
|
||||
acc.push(id);
|
||||
}
|
||||
return acc;
|
||||
}, [])
|
||||
: [];
|
||||
if (!successIds.length) {
|
||||
return;
|
||||
}
|
||||
console.log('successIds:', successIds);
|
||||
collectEvent(CollectEventName.MESSAGE_DEV_LOG, {
|
||||
action: 'subscribe_new_message_reminder',
|
||||
source: 'message_page',
|
||||
successIds,
|
||||
});
|
||||
await postSubscribe(MessageSubscribeIds, successIds);
|
||||
} else {
|
||||
await addMessageTimes();
|
||||
}
|
||||
}, [addMessageTimes]);
|
||||
|
||||
useDidHide(() => (pageVisibleRef.current = false));
|
||||
|
||||
useDidShow(() => {
|
||||
@ -101,7 +145,7 @@ export default function Message() {
|
||||
}, [roleType]);
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.Message}>
|
||||
<div className={PREFIX}>
|
||||
<div className={HEADER_CLASS}>
|
||||
<div className={`${HEADER_CLASS}__times`}>
|
||||
|
||||
@ -1,27 +1,30 @@
|
||||
import { Image } from '@tarojs/components';
|
||||
import Taro, { useShareAppMessage } from '@tarojs/taro';
|
||||
import Taro, { useLoad, useShareAppMessage } from '@tarojs/taro';
|
||||
|
||||
import { Button, Tabs } from '@taroify/core';
|
||||
import { useCallback } from 'react';
|
||||
import { useCallback, useState } from 'react';
|
||||
|
||||
import HomePage from '@/components/home-page';
|
||||
import SearchCity from '@/components/search-city';
|
||||
import { PageUrl } from '@/constants/app';
|
||||
import { PageType, PageUrl, RoleType } from '@/constants/app';
|
||||
import { GROUPS } from '@/constants/group';
|
||||
import useInviteCode from '@/hooks/use-invite-code';
|
||||
import { switchRoleType } from '@/utils/app';
|
||||
import { openCustomerServiceChat } from '@/utils/common';
|
||||
import { getCurrentCityCode } from '@/utils/location';
|
||||
import { navigateTo } from '@/utils/route';
|
||||
import { getPageQuery, navigateTo } from '@/utils/route';
|
||||
import { getCommonShareMessage } from '@/utils/share';
|
||||
import { checkCityCode } from '@/utils/user';
|
||||
|
||||
import './index.less';
|
||||
import { SortType } from '@/constants/job';
|
||||
|
||||
const PREFIX = 'page-biz-service';
|
||||
const EXAMPLE_IMAGE = 'https://publiccdn.neighbourhood.com.cn/img/delegate-example.png';
|
||||
const COMMENT_IMAGE = 'https://publiccdn.neighbourhood.com.cn/img/delegate-comments.png';
|
||||
export default function BizService() {
|
||||
const inviteCode = useInviteCode();
|
||||
const [value, setValue] = useState('0');
|
||||
|
||||
const handleClickDelegate = useCallback(() => {
|
||||
navigateTo(PageUrl.GroupDelegatePublish);
|
||||
@ -44,13 +47,33 @@ export default function BizService() {
|
||||
openCustomerServiceChat(group.serviceUrl);
|
||||
}
|
||||
}, []);
|
||||
useShareAppMessage(() => getCommonShareMessage({ inviteCode }));
|
||||
const handleChange = useCallback(v => {
|
||||
setValue(v);
|
||||
}, []);
|
||||
|
||||
useLoad(() => {
|
||||
switchRoleType(RoleType.Company);
|
||||
|
||||
const query = getPageQuery<{ tab?: string }>();
|
||||
if (query.tab) {
|
||||
handleChange(query.tab);
|
||||
}
|
||||
});
|
||||
|
||||
useShareAppMessage(() =>
|
||||
getCommonShareMessage({
|
||||
inviteCode,
|
||||
path: PageUrl.UserBatchPublish,
|
||||
title: '邀请你加入本地主播求职招聘群',
|
||||
params: { tab: '1' },
|
||||
})
|
||||
);
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.BatchPublish}>
|
||||
<div className={PREFIX}>
|
||||
<Tabs className={`${PREFIX}__tabs`} defaultValue={0}>
|
||||
<Tabs.TabPane value={0} title="群代发">
|
||||
<Tabs className={`${PREFIX}__tabs`} value={value} onChange={handleChange}>
|
||||
<Tabs.TabPane value="0" title="群代发">
|
||||
<div className={`${PREFIX}__delegate`}>
|
||||
<Image
|
||||
mode="widthFix"
|
||||
@ -80,7 +103,7 @@ export default function BizService() {
|
||||
</div>
|
||||
</Tabs.TabPane>
|
||||
<Tabs.TabPane
|
||||
value={1}
|
||||
value="1"
|
||||
title={
|
||||
<>
|
||||
免费招
|
||||
@ -96,7 +119,7 @@ export default function BizService() {
|
||||
banner="点击城市名称,进本地通告群,免费招主播"
|
||||
/>
|
||||
</Tabs.TabPane>
|
||||
<Tabs.TabPane value={2} title="代招">
|
||||
<Tabs.TabPane value="2" title="代招">
|
||||
<div className={`${PREFIX}__recruitment`}>
|
||||
<div className={`${PREFIX}__recruitment-card`}>
|
||||
<div className={`${PREFIX}__recruitment-h5`}>服务城市</div>
|
||||
|
||||
@ -9,7 +9,7 @@ import LoginButton from '@/components/login-button';
|
||||
import PartnerEntry from '@/components/partner-entry';
|
||||
import Slogan from '@/components/slogan';
|
||||
import SwitchBar from '@/components/switch-bar';
|
||||
import { RoleType, PageUrl } from '@/constants/app';
|
||||
import { RoleType, PageUrl, PageType } from '@/constants/app';
|
||||
import AnchorFragment from '@/fragments/user/anchor';
|
||||
import CompanyFragment from '@/fragments/user/company';
|
||||
import useUserInfo from '@/hooks/use-user-info';
|
||||
@ -41,7 +41,7 @@ export default function User() {
|
||||
useShareAppMessage(() => getCommonShareMessage({ useCapture: false }));
|
||||
|
||||
return (
|
||||
<HomePage>
|
||||
<HomePage type={PageType.User}>
|
||||
<CustomNavigationBar className={`${PREFIX}__navigation-bar`}>
|
||||
<SwitchBar title={roleType === RoleType.Anchor ? '切换为企业' : '切换为主播'} onClick={handleSwitchRoleType} />
|
||||
</CustomNavigationBar>
|
||||
|
||||
Reference in New Issue
Block a user