feat: manually mirror opencoze's code from bytedance

Change-Id: I09a73aadda978ad9511264a756b2ce51f5761adf
This commit is contained in:
fanlv
2025-07-20 17:36:12 +08:00
commit 890153324f
14811 changed files with 1923430 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
export {
useLogout,
RequireAuthContainer,
} from '@coze-foundation/account-ui-base';
export { LoginPage } from './pages/login-page';

Binary file not shown.

After

Width:  |  Height:  |  Size: 5.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

View File

@@ -0,0 +1,31 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import FaviconBase from './favicon-base.png';
import FaviconAddon from './favicon-addon.png';
export const Favicon = () => (
<div className="relative flex items-center">
<img
src={FaviconBase}
className="w-[100px] h-[100px] rounded-[21px] border border-solid coz-stroke-plus"
/>
<img
src={FaviconAddon}
className="absolute left-1/2 translate-x-[34px] top-[40px] w-[51px]"
/>
</div>
);

View File

@@ -0,0 +1,123 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { type FC, useState } from 'react';
import { CozeBrand } from '@coze-studio/components/coze-brand';
import { I18n } from '@coze-arch/i18n';
import { Button, Form } from '@coze-arch/coze-design';
import { SignFrame, SignPanel } from '@coze-arch/bot-semi';
import { useLoginService } from './service';
import { Favicon } from './favicon';
export const LoginPage: FC = () => {
const [email, setEmail] = useState('');
const [password, setPassword] = useState('');
const [hasError, setHasError] = useState(false);
const { login, register, loginLoading, registerLoading } = useLoginService({
email,
password,
});
const submitDisabled = !email || !password || hasError;
return (
<SignFrame brandNode={<CozeBrand isOversea={IS_OVERSEA} />}>
<SignPanel className="w-[600px] h-[640px] pt-[96px]">
<div className="flex flex-col items-center w-full h-full">
<Favicon />
<div className="text-[24px] font-medium coze-fg-plug leading-[36px] mt-[32px]">
{I18n.t('open_source_login_welcome')}
</div>
<div className="mt-[64px] w-[320px] flex flex-col items-stretch [&_.semi-input-wrapper]:overflow-hidden">
<Form
onErrorChange={errors => {
setHasError(Object.keys(errors).length > 0);
}}
>
<Form.Input
data-testid="login.input.email"
noLabel
type="email"
field="email"
rules={[
{
required: true,
message: I18n.t('open_source_login_placeholder_email'),
},
{
pattern: /^[^\s@]+@[^\s@]+\.[^\s@]+$/,
message: I18n.t('open_source_login_placeholder_email'),
},
]}
onChange={newVal => {
setEmail(newVal);
}}
placeholder={I18n.t('open_source_login_placeholder_email')}
/>
<Form.Input
data-testid="login.input.password"
noLabel
rules={[
{
required: true,
message: I18n.t('open_source_login_placeholder_password'),
},
]}
field="password"
type="password"
onChange={setPassword}
placeholder={I18n.t('open_source_login_placeholder_password')}
/>
</Form>
<Button
data-testid="login.button.login"
className="mt-[12px]"
disabled={submitDisabled || registerLoading}
onClick={login}
loading={loginLoading}
color="hgltplus"
>
{I18n.t('login_button_text')}
</Button>
<Button
data-testid="login.button.signup"
className="mt-[20px]"
disabled={submitDisabled || loginLoading}
onClick={register}
loading={registerLoading}
color="primary"
>
{I18n.t('register')}
</Button>
<div className="mt-[12px] flex justify-center">
<a
data-testid="login.link.terms"
href="https://spdx.org/licenses/Apache-2.0.html"
target="_blank"
className="no-underline coz-fg-hglt"
>
{I18n.t('open_source_terms_linkname')}
</a>
</div>
</div>
</div>
</SignPanel>
</SignFrame>
);
};

View File

@@ -0,0 +1,78 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { useNavigate } from 'react-router-dom';
import { useEffect } from 'react';
import { useRequest } from 'ahooks';
import { passport } from '@coze-studio/api-schema';
import {
setUserInfo,
useLoginStatus,
type UserInfo,
} from '@coze-foundation/account-adapter';
export const useLoginService = ({
email,
password,
}: {
email: string;
password: string;
}) => {
const loginService = useRequest(
async () => {
const res = (await passport.PassportWebEmailLoginPost({
email,
password,
})) as unknown as { data: UserInfo };
return res.data;
},
{
manual: true,
onSuccess: setUserInfo,
},
);
const registerService = useRequest(
async () => {
const res = (await passport.PassportWebEmailRegisterV2Post({
email,
password,
})) as unknown as { data: UserInfo };
return res.data;
},
{
manual: true,
onSuccess: setUserInfo,
},
);
const loginStatus = useLoginStatus();
const navigate = useNavigate();
useEffect(() => {
if (loginStatus === 'logined') {
navigate('/');
}
}, [loginStatus]);
return {
login: loginService.run,
register: registerService.run,
loginLoading: loginService.loading,
registerLoading: registerService.loading,
};
};

View File

@@ -0,0 +1,19 @@
/*
* Copyright 2025 coze-dev Authors
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/// <reference types='@coze-arch/bot-typings' />
declare const IS_OVERSEA: boolean;