select remote profile after import
This commit is contained in:
parent
d0b47204f4
commit
259ca5c5b9
1 changed files with 8 additions and 7 deletions
|
@ -78,7 +78,7 @@ const ProfilePage = () => {
|
|||
// init selected array
|
||||
const { selected = [] } = profile;
|
||||
const selectedMap = Object.fromEntries(
|
||||
selected.map((each) => [each.name!, each.now!])
|
||||
h selected.map((each) => [each.name!, each.now!])
|
||||
);
|
||||
|
||||
let hasChange = false;
|
||||
|
@ -104,21 +104,22 @@ const ProfilePage = () => {
|
|||
|
||||
const onImport = async () => {
|
||||
if (!url) return;
|
||||
setUrl("");
|
||||
|
||||
setDisabled(true);
|
||||
|
||||
try {
|
||||
await importProfile(url);
|
||||
Notice.success("Successfully import profile.");
|
||||
|
||||
setUrl("");
|
||||
getProfiles().then((newProfiles) => {
|
||||
mutate("getProfiles", newProfiles);
|
||||
|
||||
const remoteItem = newProfiles.items?.find((e) => e.type === "remote");
|
||||
if (!newProfiles.current && remoteItem) {
|
||||
const current = remoteItem.uid;
|
||||
if (newProfiles.items && newProfiles.items.length>0){
|
||||
const lastItem = newProfiles.items[newProfiles.items.length-1];
|
||||
const current = lastItem.uid;
|
||||
patchProfiles({ current });
|
||||
mutateLogs();
|
||||
closeAllConnections();
|
||||
Notice.success("Refresh clash config", 1000);
|
||||
}
|
||||
});
|
||||
} catch (err: any) {
|
||||
|
|
Loading…
Add table
Reference in a new issue