1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680
|
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
// This file is loaded into the browser window scope.
/* eslint-env mozilla/browser-window */
const {
FX_MONITOR_OAUTH_CLIENT_ID,
FX_RELAY_OAUTH_CLIENT_ID,
VPN_OAUTH_CLIENT_ID,
} = ChromeUtils.importESModule(
"resource://gre/modules/FxAccountsCommon.sys.mjs"
);
const { UIState } = ChromeUtils.importESModule(
"resource://services-sync/UIState.sys.mjs"
);
ChromeUtils.defineESModuleGetters(this, {
ASRouter: "resource:///modules/asrouter/ASRouter.sys.mjs",
EnsureFxAccountsWebChannel:
"resource://gre/modules/FxAccountsWebChannel.sys.mjs",
ExperimentAPI: "resource://nimbus/ExperimentAPI.sys.mjs",
FxAccounts: "resource://gre/modules/FxAccounts.sys.mjs",
MenuMessage: "resource:///modules/asrouter/MenuMessage.sys.mjs",
SyncedTabs: "resource://services-sync/SyncedTabs.sys.mjs",
SyncedTabsManagement: "resource://services-sync/SyncedTabs.sys.mjs",
Weave: "resource://services-sync/main.sys.mjs",
});
const MIN_STATUS_ANIMATION_DURATION = 1600;
this.SyncedTabsPanelList = class SyncedTabsPanelList {
static sRemoteTabsDeckIndices = {
DECKINDEX_TABS: 0,
DECKINDEX_FETCHING: 1,
DECKINDEX_TABSDISABLED: 2,
DECKINDEX_NOCLIENTS: 3,
};
static sRemoteTabsPerPage = 25;
static sRemoteTabsNextPageMinTabs = 5;
constructor(panelview, deck, tabsList, separator) {
this.QueryInterface = ChromeUtils.generateQI([
"nsIObserver",
"nsISupportsWeakReference",
]);
Services.obs.addObserver(this, SyncedTabs.TOPIC_TABS_CHANGED, true);
this.deck = deck;
this.tabsList = tabsList;
this.separator = separator;
this._showSyncedTabsPromise = Promise.resolve();
this.createSyncedTabs();
}
observe(subject, topic) {
if (topic == SyncedTabs.TOPIC_TABS_CHANGED) {
this._showSyncedTabs();
}
}
createSyncedTabs() {
if (SyncedTabs.isConfiguredToSyncTabs) {
if (SyncedTabs.hasSyncedThisSession) {
this.deck.selectedIndex =
SyncedTabsPanelList.sRemoteTabsDeckIndices.DECKINDEX_TABS;
} else {
// Sync hasn't synced tabs yet, so show the "fetching" panel.
this.deck.selectedIndex =
SyncedTabsPanelList.sRemoteTabsDeckIndices.DECKINDEX_FETCHING;
}
// force a background sync.
SyncedTabs.syncTabs().catch(ex => {
console.error(ex);
});
this.deck.toggleAttribute("syncingtabs", true);
// show the current list - it will be updated by our observer.
this._showSyncedTabs();
if (this.separator) {
this.separator.hidden = false;
}
} else {
// not configured to sync tabs, so no point updating the list.
this.deck.selectedIndex =
SyncedTabsPanelList.sRemoteTabsDeckIndices.DECKINDEX_TABSDISABLED;
this.deck.toggleAttribute("syncingtabs", false);
if (this.separator) {
this.separator.hidden = true;
}
}
}
// Update the synced tab list after any existing in-flight updates are complete.
_showSyncedTabs(paginationInfo) {
this._showSyncedTabsPromise = this._showSyncedTabsPromise.then(
() => {
return this.__showSyncedTabs(paginationInfo);
},
e => {
console.error(e);
}
);
}
// Return a new promise to update the tab list.
__showSyncedTabs(paginationInfo) {
if (!this.tabsList) {
// Closed between the previous `this._showSyncedTabsPromise`
// resolving and now.
return undefined;
}
return SyncedTabs.getTabClients()
.then(clients => {
let noTabs = !UIState.get().syncEnabled || !clients.length;
this.deck.toggleAttribute("syncingtabs", !noTabs);
if (this.separator) {
this.separator.hidden = noTabs;
}
// The view may have been hidden while the promise was resolving.
if (!this.tabsList) {
return;
}
if (clients.length === 0 && !SyncedTabs.hasSyncedThisSession) {
// the "fetching tabs" deck is being shown - let's leave it there.
// When that first sync completes we'll be notified and update.
return;
}
if (clients.length === 0) {
this.deck.selectedIndex =
SyncedTabsPanelList.sRemoteTabsDeckIndices.DECKINDEX_NOCLIENTS;
return;
}
this.deck.selectedIndex =
SyncedTabsPanelList.sRemoteTabsDeckIndices.DECKINDEX_TABS;
this._clearSyncedTabList();
SyncedTabs.sortTabClientsByLastUsed(clients);
let fragment = document.createDocumentFragment();
let clientNumber = 0;
for (let client of clients) {
// add a menu separator for all clients other than the first.
if (fragment.lastElementChild) {
let separator = document.createXULElement("toolbarseparator");
fragment.appendChild(separator);
}
// We add the client's elements to a container, and indicate which
// element labels it.
let labelId = `synced-tabs-client-${clientNumber++}`;
let container = document.createXULElement("vbox");
container.classList.add("PanelUI-remotetabs-clientcontainer");
container.setAttribute("role", "group");
container.setAttribute("aria-labelledby", labelId);
let clientPaginationInfo =
paginationInfo && paginationInfo.clientId == client.id
? paginationInfo
: { clientId: client.id };
this._appendSyncClient(
client,
container,
labelId,
clientPaginationInfo
);
fragment.appendChild(container);
}
this.tabsList.appendChild(fragment);
})
.catch(err => {
console.error(err);
})
.then(() => {
// an observer for tests.
Services.obs.notifyObservers(
null,
"synced-tabs-menu:test:tabs-updated"
);
});
}
_clearSyncedTabList() {
let list = this.tabsList;
while (list.lastChild) {
list.lastChild.remove();
}
}
_createNoSyncedTabsElement(messageAttr, appendTo = null) {
if (!appendTo) {
appendTo = this.tabsList;
}
let messageLabel = document.createXULElement("label");
document.l10n.setAttributes(
messageLabel,
this.tabsList.getAttribute(messageAttr)
);
appendTo.appendChild(messageLabel);
return messageLabel;
}
_appendSyncClient(client, container, labelId, paginationInfo) {
let { maxTabs = SyncedTabsPanelList.sRemoteTabsPerPage } = paginationInfo;
// Create the element for the remote client.
let clientItem = document.createXULElement("label");
clientItem.setAttribute("id", labelId);
clientItem.setAttribute("itemtype", "client");
clientItem.setAttribute(
"tooltiptext",
gSync.fluentStrings.formatValueSync("appmenu-fxa-last-sync", {
time: gSync.formatLastSyncDate(new Date(client.lastModified)),
})
);
clientItem.textContent = client.name;
container.appendChild(clientItem);
if (!client.tabs.length) {
let label = this._createNoSyncedTabsElement(
"notabsforclientlabel",
container
);
label.setAttribute("class", "PanelUI-remotetabs-notabsforclient-label");
} else {
// We have the client obj but we need the FxA device obj so we use the clients
// engine to get us the FxA device
let device =
fxAccounts.device.recentDeviceList &&
fxAccounts.device.recentDeviceList.find(
d =>
d.id === Weave.Service.clientsEngine.getClientFxaDeviceId(client.id)
);
let remoteTabCloseAvailable =
device && fxAccounts.commands.closeTab.isDeviceCompatible(device);
let tabs = client.tabs.filter(t => !t.inactive);
let hasInactive = tabs.length != client.tabs.length;
if (hasInactive) {
container.append(this._createShowInactiveTabsElement(client, device));
}
// If this page isn't displaying all (regular, active) tabs, show a "Show More" button.
let hasNextPage = tabs.length > maxTabs;
let nextPageIsLastPage =
hasNextPage &&
maxTabs + SyncedTabsPanelList.sRemoteTabsPerPage >= tabs.length;
if (nextPageIsLastPage) {
// When the user clicks "Show More", try to have at least sRemoteTabsNextPageMinTabs more tabs
// to display in order to avoid user frustration
maxTabs = Math.min(
tabs.length - SyncedTabsPanelList.sRemoteTabsNextPageMinTabs,
maxTabs
);
}
if (hasNextPage) {
tabs = tabs.slice(0, maxTabs);
}
for (let [index, tab] of tabs.entries()) {
let tabEnt = this._createSyncedTabElement(
tab,
index,
device,
remoteTabCloseAvailable
);
container.appendChild(tabEnt);
}
if (hasNextPage) {
let showAllEnt = this._createShowMoreSyncedTabsElement(paginationInfo);
container.appendChild(showAllEnt);
}
}
}
_createSyncedTabElement(tabInfo, index, device, canCloseTabs) {
let tabContainer = document.createXULElement("hbox");
tabContainer.setAttribute(
"class",
"PanelUI-tabitem-container all-tabs-item"
);
let item = document.createXULElement("toolbarbutton");
let tooltipText = (tabInfo.title ? tabInfo.title + "\n" : "") + tabInfo.url;
item.setAttribute("itemtype", "tab");
item.classList.add(
"all-tabs-button",
"subviewbutton",
"subviewbutton-iconic"
);
item.setAttribute("targetURI", tabInfo.url);
item.setAttribute(
"label",
tabInfo.title != "" ? tabInfo.title : tabInfo.url
);
if (tabInfo.icon) {
item.setAttribute("image", tabInfo.icon);
}
item.setAttribute("tooltiptext", tooltipText);
// We need to use "click" instead of "command" here so openUILink
// respects different buttons (eg, to open in a new tab).
item.addEventListener("click", e => {
// We want to differentiate between when the fxa panel is within the app menu/hamburger bar
let object = window.gSync._getEntryPointForElement(e.currentTarget);
SyncedTabs.recordSyncedTabsTelemetry(object, "click", {
tab_pos: index.toString(),
});
document.defaultView.openUILink(tabInfo.url, e, {
triggeringPrincipal: Services.scriptSecurityManager.createNullPrincipal(
{}
),
});
if (BrowserUtils.whereToOpenLink(e) != "current") {
e.preventDefault();
e.stopPropagation();
} else {
CustomizableUI.hidePanelForNode(item);
}
});
tabContainer.appendChild(item);
// We should only add an X button next to tabs if the device
// is broadcasting that it can remotely close tabs
if (canCloseTabs) {
let closeBtn = this._createCloseTabElement(tabInfo.url, device);
closeBtn.tab = item;
tabContainer.appendChild(closeBtn);
let undoBtn = this._createUndoCloseTabElement(tabInfo.url, device);
undoBtn.tab = item;
tabContainer.appendChild(undoBtn);
}
return tabContainer;
}
_createShowMoreSyncedTabsElement(paginationInfo) {
let showMoreItem = document.createXULElement("toolbarbutton");
showMoreItem.setAttribute("itemtype", "showmorebutton");
showMoreItem.setAttribute("closemenu", "none");
showMoreItem.classList.add("subviewbutton", "subviewbutton-nav-down");
document.l10n.setAttributes(showMoreItem, "appmenu-remote-tabs-showmore");
paginationInfo.maxTabs = Infinity;
showMoreItem.addEventListener("click", e => {
e.preventDefault();
e.stopPropagation();
this._showSyncedTabs(paginationInfo);
});
return showMoreItem;
}
_createShowInactiveTabsElement(client, device) {
let showItem = document.createXULElement("toolbarbutton");
showItem.setAttribute("itemtype", "showinactivebutton");
showItem.setAttribute("closemenu", "none");
showItem.classList.add("subviewbutton", "subviewbutton-nav");
document.l10n.setAttributes(
showItem,
"appmenu-remote-tabs-show-inactive-tabs"
);
let canClose =
device && fxAccounts.commands.closeTab.isDeviceCompatible(device);
showItem.addEventListener("click", e => {
let node = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-inactive-tabs"
);
// device name.
let label = node.querySelector("label[itemtype='client']");
label.textContent = client.name;
// Update the tab list.
let container = node.querySelector(".panel-subview-body");
container.replaceChildren(
...client.tabs
.filter(t => t.inactive)
.map((tab, index) =>
this._createSyncedTabElement(tab, index, device, canClose)
)
);
PanelUI.showSubView("PanelUI-fxa-menu-inactive-tabs", showItem, e);
});
return showItem;
}
_createCloseTabElement(url, device) {
let closeBtn = document.createXULElement("toolbarbutton");
closeBtn.classList.add(
"remote-tabs-close-button",
"all-tabs-close-button",
"subviewbutton"
);
closeBtn.setAttribute("closemenu", "none");
closeBtn.setAttribute(
"tooltiptext",
gSync.fluentStrings.formatValueSync("synced-tabs-context-close-tab", {
deviceName: device.name,
})
);
closeBtn.addEventListener("click", e => {
e.stopPropagation();
let tabContainer = closeBtn.parentNode;
let tabList = tabContainer.parentNode;
let undoBtn = tabContainer.querySelector(".remote-tabs-undo-button");
let prevClose = tabList.querySelector(
".remote-tabs-undo-button:not([hidden])"
);
if (prevClose) {
let prevCloseContainer = prevClose.parentNode;
prevCloseContainer.classList.add("tabitem-removed");
prevCloseContainer.addEventListener("transitionend", () => {
prevCloseContainer.remove();
});
}
closeBtn.hidden = true;
undoBtn.hidden = false;
// This tab has been closed so we prevent the user from
// interacting with it
if (closeBtn.tab) {
closeBtn.tab.disabled = true;
}
// The user could be hitting multiple tabs across multiple devices, with a few
// seconds in-between -- we should not immediately fire off pushes, so we
// add it to a queue and send in bulk at a later time
SyncedTabsManagement.enqueueTabToClose(device.id, url);
});
return closeBtn;
}
_createUndoCloseTabElement(url, device) {
let undoBtn = document.createXULElement("toolbarbutton");
undoBtn.classList.add("remote-tabs-undo-button", "subviewbutton");
undoBtn.setAttribute("closemenu", "none");
undoBtn.setAttribute("data-l10n-id", "text-action-undo");
undoBtn.hidden = true;
undoBtn.addEventListener("click", function (e) {
e.stopPropagation();
undoBtn.hidden = true;
let closeBtn = undoBtn.parentNode.querySelector(".all-tabs-close-button");
closeBtn.hidden = false;
if (undoBtn.tab) {
undoBtn.tab.disabled = false;
}
// remove this tab from being remotely closed
SyncedTabsManagement.removePendingTabToClose(device.id, url);
});
return undoBtn;
}
destroy() {
Services.obs.removeObserver(this, SyncedTabs.TOPIC_TABS_CHANGED);
this.tabsList = null;
this.deck = null;
this.separator = null;
}
};
var gSync = {
_initialized: false,
_isCurrentlySyncing: false,
// The last sync start time. Used to calculate the leftover animation time
// once syncing completes (bug 1239042).
_syncStartTime: 0,
_syncAnimationTimer: 0,
_obs: ["weave:engine:sync:finish", "quit-application", UIState.ON_UPDATE],
get log() {
if (!this._log) {
const { Log } = ChromeUtils.importESModule(
"resource://gre/modules/Log.sys.mjs"
);
let syncLog = Log.repository.getLogger("Sync.Browser");
syncLog.manageLevelFromPref("services.sync.log.logger.browser");
this._log = syncLog;
}
return this._log;
},
get fluentStrings() {
delete this.fluentStrings;
return (this.fluentStrings = new Localization(
[
"branding/brand.ftl",
"browser/accounts.ftl",
"browser/appmenu.ftl",
"browser/sync.ftl",
"browser/syncedTabs.ftl",
"browser/newtab/asrouter.ftl",
],
true
));
},
// Returns true if FxA is configured, but the send tab targets list isn't
// ready yet.
get sendTabConfiguredAndLoading() {
return (
UIState.get().status == UIState.STATUS_SIGNED_IN &&
!fxAccounts.device.recentDeviceList
);
},
get isSignedIn() {
return UIState.get().status == UIState.STATUS_SIGNED_IN;
},
shouldHideSendContextMenuItems(enabled) {
const state = UIState.get();
// Only show the "Send..." context menu items when sending would be possible
if (
enabled &&
state.status == UIState.STATUS_SIGNED_IN &&
state.syncEnabled &&
this.getSendTabTargets().length
) {
return false;
}
return true;
},
getSendTabTargets() {
const targets = [];
if (
UIState.get().status != UIState.STATUS_SIGNED_IN ||
!fxAccounts.device.recentDeviceList
) {
return targets;
}
for (let d of fxAccounts.device.recentDeviceList) {
if (d.isCurrentDevice) {
continue;
}
if (fxAccounts.commands.sendTab.isDeviceCompatible(d)) {
targets.push(d);
}
}
return targets.sort((a, b) => b.lastAccessTime - a.lastAccessTime);
},
_definePrefGetters() {
XPCOMUtils.defineLazyPreferenceGetter(
this,
"FXA_ENABLED",
"identity.fxaccounts.enabled"
);
XPCOMUtils.defineLazyPreferenceGetter(
this,
"FXA_CTA_MENU_ENABLED",
"identity.fxaccounts.toolbar.pxiToolbarEnabled"
);
},
maybeUpdateUIState() {
// Update the UI.
if (UIState.isReady()) {
const state = UIState.get();
// If we are not configured, the UI is already in the right state when
// we open the window. We can avoid a repaint.
if (state.status != UIState.STATUS_NOT_CONFIGURED) {
this.updateAllUI(state);
}
}
},
init() {
if (this._initialized) {
return;
}
this._definePrefGetters();
if (!this.FXA_ENABLED) {
this.onFxaDisabled();
return;
}
MozXULElement.insertFTLIfNeeded("browser/sync.ftl");
MozXULElement.insertFTLIfNeeded("browser/newtab/asrouter.ftl");
// Label for the sync buttons.
const appMenuLabel = PanelMultiView.getViewNode(
document,
"appMenu-fxa-label2"
);
if (!appMenuLabel) {
// We are in a window without our elements - just abort now, without
// setting this._initialized, so we don't attempt to remove observers.
return;
}
// We start with every menuitem hidden (except for the "setup sync" state),
// so that we don't need to init the sync UI on windows like pageInfo.xhtml
// (see bug 1384856).
// maybeUpdateUIState() also optimizes for this - if we should be in the
// "setup sync" state, that function assumes we are already in it and
// doesn't re-initialize the UI elements.
document.getElementById("sync-setup").hidden = false;
PanelMultiView.getViewNode(
document,
"PanelUI-remotetabs-setupsync"
).hidden = false;
const appMenuHeaderTitle = PanelMultiView.getViewNode(
document,
"appMenu-header-title"
);
const appMenuHeaderDescription = PanelMultiView.getViewNode(
document,
"appMenu-header-description"
);
const appMenuHeaderText = PanelMultiView.getViewNode(
document,
"appMenu-fxa-text"
);
appMenuHeaderTitle.hidden = true;
// We must initialize the label attribute here instead of the markup
// due to a timing error. The fluent label attribute was being applied
// after we had updated appMenuLabel and thus displayed an incorrect
// label for signed in users.
const [headerDesc, headerText] = this.fluentStrings.formatValuesSync([
"appmenu-fxa-signed-in-label",
"appmenu-fxa-sync-and-save-data2",
]);
appMenuHeaderDescription.value = headerDesc;
appMenuHeaderText.textContent = headerText;
for (let topic of this._obs) {
Services.obs.addObserver(this, topic, true);
}
this.maybeUpdateUIState();
EnsureFxAccountsWebChannel();
let fxaPanelView = PanelMultiView.getViewNode(document, "PanelUI-fxa");
fxaPanelView.addEventListener("ViewShowing", this);
fxaPanelView.addEventListener("ViewHiding", this);
fxaPanelView.addEventListener("command", this);
PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-syncnow-button"
).addEventListener("mouseover", this);
PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-sendtab-not-configured-button"
).addEventListener("command", this);
PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-sendtab-connect-device-button"
).addEventListener("command", this);
PanelUI.mainView.addEventListener("ViewShowing", this);
// If the experiment is enabled, we'll need to update the panels
// to show some different text to the user
if (this.FXA_CTA_MENU_ENABLED) {
this.updateFxAPanel(UIState.get());
this.updateCTAPanel();
}
const avatarIconVariant =
NimbusFeatures.fxaButtonVisibility.getVariable("avatarIconVariant");
if (avatarIconVariant) {
this.applyAvatarIconVariant(avatarIconVariant);
}
this._initialized = true;
},
uninit() {
if (!this._initialized) {
return;
}
for (let topic of this._obs) {
Services.obs.removeObserver(this, topic);
}
this._initialized = false;
},
handleEvent(event) {
switch (event.type) {
case "mouseover":
this.refreshSyncButtonsTooltip();
break;
case "command": {
this.onCommand(event.target);
break;
}
case "ViewShowing": {
if (event.target == PanelUI.mainView) {
this.onAppMenuShowing();
} else {
this.onFxAPanelViewShowing(event.target);
}
break;
}
case "ViewHiding": {
this.onFxAPanelViewHiding(event.target);
}
}
},
onAppMenuShowing() {
const appMenuHeaderText = PanelMultiView.getViewNode(
document,
"appMenu-fxa-text"
);
const ctaDefaultStringID = "appmenu-fxa-sync-and-save-data2";
const ctaStringID = this.getMenuCtaCopy(NimbusFeatures.fxaAppMenuItem);
document.l10n.setAttributes(
appMenuHeaderText,
ctaStringID || ctaDefaultStringID
);
if (NimbusFeatures.fxaAppMenuItem.getVariable("ctaCopyVariant")) {
NimbusFeatures.fxaAppMenuItem.recordExposureEvent();
}
},
onFxAPanelViewShowing(panelview) {
let messageId = panelview.getAttribute(
MenuMessage.SHOWING_FXA_MENU_MESSAGE_ATTR
);
if (messageId) {
MenuMessage.recordMenuMessageTelemetry(
"IMPRESSION",
MenuMessage.SOURCES.PXI_MENU,
messageId
);
let message = ASRouter.getMessageById(messageId);
ASRouter.addImpression(message);
}
let syncNowBtn = panelview.querySelector(".syncnow-label");
let l10nId = syncNowBtn.getAttribute(
this._isCurrentlySyncing
? "syncing-data-l10n-id"
: "sync-now-data-l10n-id"
);
document.l10n.setAttributes(syncNowBtn, l10nId);
// This needs to exist because if the user is signed in
// but the user disabled or disconnected sync we should not show the button
const syncPrefsButtonEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-sync-prefs-button"
);
const syncEnabled = UIState.get().syncEnabled;
syncPrefsButtonEl.hidden = !syncEnabled;
if (!syncEnabled) {
this._disableSyncOffIndicator();
}
// We should ensure that we do not show the sign out button
// if the user is not signed in
const signOutButtonEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-account-signout-button"
);
signOutButtonEl.hidden = !this.isSignedIn;
panelview.syncedTabsPanelList = new SyncedTabsPanelList(
panelview,
PanelMultiView.getViewNode(document, "PanelUI-fxa-remotetabs-deck"),
PanelMultiView.getViewNode(document, "PanelUI-fxa-remotetabs-tabslist"),
PanelMultiView.getViewNode(document, "PanelUI-remote-tabs-separator")
);
// Any variant on the CTA will have been applied inside of updateFxAPanel,
// but now that the panel is showing, we record exposure.
const ctaCopyVariant =
NimbusFeatures.fxaAvatarMenuItem.getVariable("ctaCopyVariant");
if (ctaCopyVariant) {
NimbusFeatures.fxaAvatarMenuItem.recordExposureEvent();
}
},
onFxAPanelViewHiding(panelview) {
MenuMessage.hidePxiMenuMessage(gBrowser.selectedBrowser);
panelview.syncedTabsPanelList.destroy();
panelview.syncedTabsPanelList = null;
},
onCommand(button) {
switch (button.id) {
case "PanelUI-fxa-menu-sync-prefs-button":
this.openPrefsFromFxaMenu("sync_settings", button);
break;
case "PanelUI-fxa-menu-setup-sync-button":
this.openChooseWhatToSync("sync_settings", button);
break;
case "PanelUI-fxa-menu-sendtab-connect-device-button":
// fall through
case "PanelUI-fxa-menu-connect-device-button":
this.clickOpenConnectAnotherDevice(button);
break;
case "fxa-manage-account-button":
this.clickFxAMenuHeaderButton(button);
break;
case "PanelUI-fxa-menu-syncnow-button":
this.doSyncFromFxaMenu(button);
break;
case "PanelUI-fxa-menu-sendtab-button":
this.showSendToDeviceViewFromFxaMenu(button);
break;
case "PanelUI-fxa-menu-account-signout-button":
this.disconnect();
break;
case "PanelUI-fxa-menu-monitor-button":
this.openMonitorLink(button);
break;
case "PanelUI-services-menu-relay-button":
case "PanelUI-fxa-menu-relay-button":
this.openRelayLink(button);
break;
case "PanelUI-fxa-menu-vpn-button":
this.openVPNLink(button);
break;
case "PanelUI-fxa-menu-sendtab-not-configured-button":
this.openPrefsFromFxaMenu("send_tab", button);
break;
}
},
observe(subject, topic, data) {
if (!this._initialized) {
console.error("browser-sync observer called after unload: ", topic);
return;
}
switch (topic) {
case UIState.ON_UPDATE: {
const state = UIState.get();
this.updateAllUI(state);
break;
}
case "quit-application":
// Stop the animation timer on shutdown, since we can't update the UI
// after this.
clearTimeout(this._syncAnimationTimer);
break;
case "weave:engine:sync:finish":
if (data != "clients") {
return;
}
this.onClientsSynced();
this.updateFxAPanel(UIState.get());
break;
}
},
updateAllUI(state) {
this.updatePanelPopup(state);
this.updateState(state);
this.updateSyncButtonsTooltip(state);
this.updateSyncStatus(state);
this.updateFxAPanel(state);
this.ensureFxaDevices();
this.fetchListOfOAuthClients();
},
// Ensure we have *something* in `fxAccounts.device.recentDeviceList` as some
// of our UI logic depends on it not being null. When FxA is notified of a
// device change it will auto refresh `recentDeviceList`, and all UI which
// shows the device list will start with `recentDeviceList`, but should also
// force a refresh, both of which should mean in the worst-case, the UI is up
// to date after a very short delay.
async ensureFxaDevices() {
if (UIState.get().status != UIState.STATUS_SIGNED_IN) {
console.info("Skipping device list refresh; not signed in");
return;
}
if (!fxAccounts.device.recentDeviceList) {
if (await this.refreshFxaDevices()) {
// Assuming we made the call successfully it should be impossible to end
// up with a falsey recentDeviceList, so make noise if that's false.
if (!fxAccounts.device.recentDeviceList) {
console.warn("Refreshing device list didn't find any devices.");
}
}
}
},
// Force a refresh of the fxa device list. Note that while it's theoretically
// OK to call `fxAccounts.device.refreshDeviceList` multiple times concurrently
// and regularly, this call tells it to avoid those protections, so will always
// hit the FxA servers - therefore, you should be very careful how often you
// call this.
// Returns Promise<bool> to indicate whether a refresh was actually done.
async refreshFxaDevices() {
if (UIState.get().status != UIState.STATUS_SIGNED_IN) {
console.info("Skipping device list refresh; not signed in");
return false;
}
try {
// Do the actual refresh telling it to avoid the "flooding" protections.
await fxAccounts.device.refreshDeviceList({ ignoreCached: true });
return true;
} catch (e) {
this.log.error("Refreshing device list failed.", e);
return false;
}
},
/**
* Potential network call. Fetch the list of OAuth clients attached to the current Mozilla account.
* @returns {Promise<boolean>} - Resolves to true if successful, false otherwise.
*/
async fetchListOfOAuthClients() {
if (!this.isSignedIn) {
console.info("Skipping fetching other attached clients");
return false;
}
try {
this._attachedClients = await fxAccounts.listAttachedOAuthClients();
return true;
} catch (e) {
this.log.error("Could not fetch attached OAuth clients", e);
return false;
}
},
updateSendToDeviceTitle() {
const tabCount = gBrowser.selectedTab.multiselected
? gBrowser.selectedTabs.length
: 1;
document.l10n.setArgs(
PanelMultiView.getViewNode(document, "PanelUI-fxa-menu-sendtab-button"),
{ tabCount }
);
},
showSendToDeviceView(anchor) {
PanelUI.showSubView("PanelUI-sendTabToDevice", anchor);
let panelViewNode = document.getElementById("PanelUI-sendTabToDevice");
this._populateSendTabToDevicesView(panelViewNode);
},
showSendToDeviceViewFromFxaMenu(anchor) {
const { status } = UIState.get();
if (status === UIState.STATUS_NOT_CONFIGURED) {
PanelUI.showSubView("PanelUI-fxa-menu-sendtab-not-configured", anchor);
return;
}
const targets = this.sendTabConfiguredAndLoading
? []
: this.getSendTabTargets();
if (!targets.length) {
PanelUI.showSubView("PanelUI-fxa-menu-sendtab-no-devices", anchor);
return;
}
this.showSendToDeviceView(anchor);
this.emitFxaToolbarTelemetry("send_tab", anchor);
},
_populateSendTabToDevicesView(panelViewNode, reloadDevices = true) {
let bodyNode = panelViewNode.querySelector(".panel-subview-body");
let panelNode = panelViewNode.closest("panel");
let browser = gBrowser.selectedBrowser;
let uri = browser.currentURI;
let title = browser.contentTitle;
let multiselected = gBrowser.selectedTab.multiselected;
// This is on top because it also clears the device list between state
// changes.
this.populateSendTabToDevicesMenu(
bodyNode,
uri,
title,
multiselected,
(clientId, name, clientType, lastModified) => {
if (!name) {
return document.createXULElement("toolbarseparator");
}
let item = document.createXULElement("toolbarbutton");
item.setAttribute("wrap", true);
item.setAttribute("align", "start");
item.classList.add("sendToDevice-device", "subviewbutton");
if (clientId) {
item.classList.add("subviewbutton-iconic");
if (lastModified) {
let lastSyncDate = gSync.formatLastSyncDate(lastModified);
if (lastSyncDate) {
item.setAttribute(
"tooltiptext",
this.fluentStrings.formatValueSync("appmenu-fxa-last-sync", {
time: lastSyncDate,
})
);
}
}
}
item.addEventListener("command", () => {
if (panelNode) {
PanelMultiView.hidePopup(panelNode);
}
});
return item;
},
true
);
bodyNode.removeAttribute("state");
// If the app just started, we won't have fetched the device list yet. Sync
// does this automatically ~10 sec after startup, but there's no trigger for
// this if we're signed in to FxA, but not Sync.
if (gSync.sendTabConfiguredAndLoading) {
bodyNode.setAttribute("state", "notready");
}
if (reloadDevices) {
// Force a refresh of the fxa device list in case the user connected a new
// device, and is waiting for it to show up.
this.refreshFxaDevices().then(_ => {
if (!window.closed) {
this._populateSendTabToDevicesView(panelViewNode, false);
}
});
}
},
async toggleAccountPanel(anchor = null, aEvent) {
// Don't show the panel if the window is in customization mode.
if (document.documentElement.hasAttribute("customizing")) {
return;
}
if (
(aEvent.type == "mousedown" && aEvent.button != 0) ||
(aEvent.type == "keypress" &&
aEvent.charCode != KeyEvent.DOM_VK_SPACE &&
aEvent.keyCode != KeyEvent.DOM_VK_RETURN)
) {
return;
}
const fxaToolbarMenuBtn = document.getElementById(
"fxa-toolbar-menu-button"
);
if (anchor === null) {
anchor = fxaToolbarMenuBtn;
}
if (anchor == fxaToolbarMenuBtn && anchor.getAttribute("open") != "true") {
if (ASRouter.initialized) {
await ASRouter.sendTriggerMessage({
browser: gBrowser.selectedBrowser,
id: "menuOpened",
context: { source: MenuMessage.SOURCES.PXI_MENU },
});
}
}
// We read the state that's been set on the root node, since that makes
// it easier to test the various front-end states without having to actually
// have UIState know about it.
let fxaStatus = document.documentElement.getAttribute("fxastatus");
if (fxaStatus == "not_configured") {
// sign in button in app (hamburger) menu
// should take you straight to fxa sign in page
if (anchor.id == "appMenu-fxa-label2") {
this.openFxAEmailFirstPageFromFxaMenu(anchor);
PanelUI.hide();
return;
}
// If we're signed out but have the PXI pref enabled
// we should show the PXI panel instead of taking the user
// straight to FxA sign-in
if (this.FXA_CTA_MENU_ENABLED) {
this.updateFxAPanel(UIState.get());
this.updateCTAPanel(anchor);
PanelUI.showSubView("PanelUI-fxa", anchor, aEvent);
} else if (anchor == fxaToolbarMenuBtn) {
// The fxa toolbar button doesn't have much context before the user
// clicks it so instead of going straight to the login page,
// we take them to a page that has more information
this.emitFxaToolbarTelemetry("toolbar_icon", anchor);
openTrustedLinkIn("about:preferences#sync", "tab");
PanelUI.hide();
}
return;
}
// If the user is signed in and we have the PXI pref enabled then add
// the pxi panel to the existing toolbar
if (this.FXA_CTA_MENU_ENABLED) {
this.updateCTAPanel(anchor);
}
if (!gFxaToolbarAccessed) {
Services.prefs.setBoolPref("identity.fxaccounts.toolbar.accessed", true);
}
this.enableSendTabIfValidTab();
if (!this.getSendTabTargets().length) {
PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-sendtab-button"
).hidden = true;
}
if (anchor.getAttribute("open") == "true") {
PanelUI.hide();
} else {
this.emitFxaToolbarTelemetry("toolbar_icon", anchor);
PanelUI.showSubView("PanelUI-fxa", anchor, aEvent);
}
},
_disableSyncOffIndicator() {
const SYNC_PANEL_ACCESSED_PREF =
"identity.fxaccounts.toolbar.syncSetup.panelAccessed";
if (!Services.prefs.getBoolPref(SYNC_PANEL_ACCESSED_PREF, false)) {
// Turn off the indicator so the user doesn't see it in subsequent openings
Services.prefs.setBoolPref(SYNC_PANEL_ACCESSED_PREF, true);
}
},
_shouldShowSyncOffIndicator() {
// We only ever want to show the user the dot once, once they've clicked into the panel
// we do not show them the dot anymore
return !Services.prefs.getBoolPref(
"identity.fxaccounts.toolbar.syncSetup.panelAccessed",
false
);
},
updateFxAPanel(state = {}) {
const expandedSignInCopy =
NimbusFeatures.expandSignInButton.getVariable("ctaCopyVariant");
const mainWindowEl = document.documentElement;
const menuHeaderTitleEl = PanelMultiView.getViewNode(
document,
"fxa-menu-header-title"
);
const menuHeaderDescriptionEl = PanelMultiView.getViewNode(
document,
"fxa-menu-header-description"
);
const cadButtonEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-connect-device-button"
);
const syncNowButtonEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-syncnow-button"
);
const fxaMenuAccountButtonEl = PanelMultiView.getViewNode(
document,
"fxa-manage-account-button"
);
const signedInContainer = PanelMultiView.getViewNode(
document,
"PanelUI-signedin-panel"
);
const emptyProfilesButton = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-empty-profiles-button"
);
const profilesButton = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-profiles-button"
);
const profilesSeparator = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-profiles-separator"
);
const syncSetupEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-setup-sync-container"
);
const fxaToolbarMenuButton = document.getElementById(
"fxa-toolbar-menu-button"
);
let fxaAvatarLabelEl = document.getElementById("fxa-avatar-label");
// Reset FxA/Sync UI elements to default, which is signed out
cadButtonEl.setAttribute("disabled", true);
syncNowButtonEl.hidden = true;
signedInContainer.hidden = true;
fxaMenuAccountButtonEl.classList.remove("subviewbutton-nav");
fxaMenuAccountButtonEl.removeAttribute("closemenu");
menuHeaderDescriptionEl.hidden = false;
// Expanded sign in copy experiment is only for signed out users
// so if a text variant has been provided then we show the expanded label
// otherwise it'll be the default avatar icon
// fxaToolbarMenuButton can be null in certain testing scenarios
if (fxaToolbarMenuButton) {
if (
state.status === UIState.STATUS_NOT_CONFIGURED &&
expandedSignInCopy
) {
fxaAvatarLabelEl.setAttribute(
"value",
this.fluentStrings.formatValueSync(expandedSignInCopy)
);
fxaAvatarLabelEl.removeAttribute("hidden");
fxaToolbarMenuButton.setAttribute("data-l10n-id", "fxa-avatar-tooltip");
fxaToolbarMenuButton.classList.add("avatar-button-background");
} else {
// Either signed in, or experiment not enabled
fxaToolbarMenuButton.setAttribute(
"data-l10n-id",
"toolbar-button-account"
);
fxaToolbarMenuButton.classList.remove("avatar-button-background");
fxaAvatarLabelEl.hidden = true;
}
}
// The Firefox Account toolbar currently handles 3 different states for
// users. The default `not_configured` state shows an empty avatar, `unverified`
// state shows an avatar with an email icon, `login-failed` state shows an avatar
// with a danger icon and the `verified` state will show the users
// custom profile image or a filled avatar.
let stateValue = "not_configured";
let headerTitleL10nId;
let headerDescription;
switch (state.status) {
case UIState.STATUS_NOT_CONFIGURED:
mainWindowEl.style.removeProperty("--avatar-image-url");
headerTitleL10nId = this.FXA_CTA_MENU_ENABLED
? "synced-tabs-fxa-sign-in"
: "appmenuitem-sign-in-account";
headerDescription = this.fluentStrings.formatValueSync(
this.FXA_CTA_MENU_ENABLED
? "fxa-menu-sync-description"
: "appmenu-fxa-signed-in-label"
);
if (this.FXA_CTA_MENU_ENABLED) {
const ctaCopy = this.getMenuCtaCopy(NimbusFeatures.fxaAvatarMenuItem);
if (ctaCopy) {
headerTitleL10nId = ctaCopy.headerTitleL10nId;
headerDescription = ctaCopy.headerDescription;
}
}
// Reposition profiles elements
emptyProfilesButton.remove();
profilesButton.remove();
profilesSeparator.remove();
profilesSeparator.hidden = true;
signedInContainer.after(profilesSeparator);
signedInContainer.after(profilesButton);
signedInContainer.after(emptyProfilesButton);
break;
case UIState.STATUS_LOGIN_FAILED:
stateValue = "login-failed";
headerTitleL10nId = "account-disconnected2";
headerDescription = state.displayName || state.email;
mainWindowEl.style.removeProperty("--avatar-image-url");
break;
case UIState.STATUS_NOT_VERIFIED:
stateValue = "unverified";
headerTitleL10nId = "account-finish-account-setup";
headerDescription = state.displayName || state.email;
break;
case UIState.STATUS_SIGNED_IN:
stateValue = "signedin";
headerTitleL10nId = "appmenuitem-fxa-manage-account";
headerDescription = state.displayName || state.email;
this.updateAvatarURL(
mainWindowEl,
state.avatarURL,
state.avatarIsDefault
);
signedInContainer.hidden = false;
cadButtonEl.removeAttribute("disabled");
if (state.syncEnabled) {
// Always show sync now and connect another device button when sync is enabled
syncNowButtonEl.removeAttribute("hidden");
cadButtonEl.removeAttribute("hidden");
syncSetupEl.setAttribute("hidden", "true");
} else {
if (this._shouldShowSyncOffIndicator()) {
fxaToolbarMenuButton?.setAttribute("badge-status", "sync-disabled");
}
// Show the sync element depending on if the user is enrolled or not
syncSetupEl.removeAttribute("hidden");
}
// Reposition profiles elements
emptyProfilesButton.remove();
profilesButton.remove();
profilesSeparator.remove();
profilesSeparator.hidden = false;
fxaMenuAccountButtonEl.after(profilesSeparator);
fxaMenuAccountButtonEl.after(profilesButton);
fxaMenuAccountButtonEl.after(emptyProfilesButton);
break;
default:
headerTitleL10nId = this.FXA_CTA_MENU_ENABLED
? "synced-tabs-fxa-sign-in"
: "appmenuitem-sign-in-account";
headerDescription = this.fluentStrings.formatValueSync(
"fxa-menu-turn-on-sync-default"
);
break;
}
// Update UI elements with determined values
mainWindowEl.setAttribute("fxastatus", stateValue);
menuHeaderTitleEl.value =
this.fluentStrings.formatValueSync(headerTitleL10nId);
// If we description is empty, we hide it
menuHeaderDescriptionEl.hidden = !headerDescription;
menuHeaderDescriptionEl.value = headerDescription;
// We remove the data-l10n-id attribute here to prevent the node's value
// attribute from being overwritten by Fluent when the panel is moved
// around in the DOM.
menuHeaderTitleEl.removeAttribute("data-l10n-id");
menuHeaderDescriptionEl.removeAttribute("data-l10n-id");
},
updateAvatarURL(mainWindowEl, avatarURL, avatarIsDefault) {
if (avatarURL && !avatarIsDefault) {
const bgImage = `url("${avatarURL}")`;
const img = new Image();
img.onload = () => {
mainWindowEl.style.setProperty("--avatar-image-url", bgImage);
};
img.onerror = () => {
mainWindowEl.style.removeProperty("--avatar-image-url");
};
img.src = avatarURL;
} else {
mainWindowEl.style.removeProperty("--avatar-image-url");
}
},
enableSendTabIfValidTab() {
// All tabs selected must be sendable for the Send Tab button to be enabled
// on the FxA menu.
let canSendAllURIs = gBrowser.selectedTabs.every(
t => !!BrowserUtils.getShareableURL(t.linkedBrowser.currentURI)
);
PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-sendtab-button"
).hidden = !canSendAllURIs;
},
// This is mis-named - it can be used to record any FxA UI telemetry, whether from
// the toolbar or not. The required `sourceElement` param is enough to help us know
// how to record the interaction.
emitFxaToolbarTelemetry(type, sourceElement) {
if (UIState.isReady()) {
const state = UIState.get();
const hasAvatar = state.avatarURL && !state.avatarIsDefault;
let extraOptions = {
fxa_status: state.status,
fxa_avatar: hasAvatar ? "true" : "false",
fxa_sync_on: state.syncEnabled,
};
let eventName = this._getEntryPointForElement(sourceElement);
let category = "";
if (eventName == "fxa_avatar_menu") {
category = "fxaAvatarMenu";
} else if (eventName == "fxa_app_menu") {
category = "fxaAppMenu";
} else {
return;
}
Glean[category][
"click" +
type
.split("_")
.map(word => word[0].toUpperCase() + word.slice(1))
.join("")
]?.record(extraOptions);
}
},
updatePanelPopup({ email, displayName, status }) {
const appMenuStatus = PanelMultiView.getViewNode(
document,
"appMenu-fxa-status2"
);
const appMenuLabel = PanelMultiView.getViewNode(
document,
"appMenu-fxa-label2"
);
const appMenuHeaderText = PanelMultiView.getViewNode(
document,
"appMenu-fxa-text"
);
const appMenuHeaderTitle = PanelMultiView.getViewNode(
document,
"appMenu-header-title"
);
const appMenuHeaderDescription = PanelMultiView.getViewNode(
document,
"appMenu-header-description"
);
const fxaPanelView = PanelMultiView.getViewNode(document, "PanelUI-fxa");
let defaultLabel = this.fluentStrings.formatValueSync(
"appmenu-fxa-signed-in-label"
);
// Reset the status bar to its original state.
appMenuLabel.setAttribute("label", defaultLabel);
appMenuLabel.removeAttribute("aria-labelledby");
appMenuStatus.removeAttribute("fxastatus");
if (status == UIState.STATUS_NOT_CONFIGURED) {
appMenuHeaderText.hidden = false;
appMenuStatus.classList.add("toolbaritem-combined-buttons");
appMenuLabel.classList.remove("subviewbutton-nav");
appMenuHeaderTitle.hidden = true;
appMenuHeaderDescription.value = defaultLabel;
return;
}
appMenuLabel.classList.remove("subviewbutton-nav");
appMenuHeaderText.hidden = true;
appMenuStatus.classList.remove("toolbaritem-combined-buttons");
// While we prefer the display name in most case, in some strings
// where the context is something like "Verify %s", the email
// is used even when there's a display name.
if (status == UIState.STATUS_LOGIN_FAILED) {
const [tooltipDescription, errorLabel] =
this.fluentStrings.formatValuesSync([
{ id: "account-reconnect", args: { email } },
{ id: "account-disconnected2" },
]);
appMenuStatus.setAttribute("fxastatus", "login-failed");
appMenuStatus.setAttribute("tooltiptext", tooltipDescription);
appMenuLabel.classList.add("subviewbutton-nav");
appMenuHeaderTitle.hidden = false;
appMenuHeaderTitle.value = errorLabel;
appMenuHeaderDescription.value = displayName || email;
appMenuLabel.removeAttribute("label");
appMenuLabel.setAttribute(
"aria-labelledby",
`${appMenuHeaderTitle.id},${appMenuHeaderDescription.id}`
);
return;
} else if (status == UIState.STATUS_NOT_VERIFIED) {
const [tooltipDescription, unverifiedLabel] =
this.fluentStrings.formatValuesSync([
{ id: "account-verify", args: { email } },
{ id: "account-finish-account-setup" },
]);
appMenuStatus.setAttribute("fxastatus", "unverified");
appMenuStatus.setAttribute("tooltiptext", tooltipDescription);
appMenuLabel.classList.add("subviewbutton-nav");
appMenuHeaderTitle.hidden = false;
appMenuHeaderTitle.value = unverifiedLabel;
appMenuHeaderDescription.value = email;
appMenuLabel.removeAttribute("label");
appMenuLabel.setAttribute(
"aria-labelledby",
`${appMenuHeaderTitle.id},${appMenuHeaderDescription.id}`
);
return;
}
appMenuHeaderTitle.hidden = true;
appMenuHeaderDescription.value = displayName || email;
appMenuStatus.setAttribute("fxastatus", "signedin");
appMenuLabel.setAttribute("label", displayName || email);
appMenuLabel.classList.add("subviewbutton-nav");
fxaPanelView.setAttribute(
"title",
this.fluentStrings.formatValueSync("appmenu-account-header")
);
appMenuStatus.removeAttribute("tooltiptext");
},
updateState(state) {
for (let [shown, menuId, boxId] of [
[
state.status == UIState.STATUS_NOT_CONFIGURED,
"sync-setup",
"PanelUI-remotetabs-setupsync",
],
[
state.status == UIState.STATUS_SIGNED_IN && !state.syncEnabled,
"sync-enable",
"PanelUI-remotetabs-syncdisabled",
],
[
state.status == UIState.STATUS_LOGIN_FAILED,
"sync-reauthitem",
"PanelUI-remotetabs-reauthsync",
],
[
state.status == UIState.STATUS_NOT_VERIFIED,
"sync-unverifieditem",
"PanelUI-remotetabs-unverified",
],
[
state.status == UIState.STATUS_SIGNED_IN && state.syncEnabled,
"sync-syncnowitem",
"PanelUI-remotetabs-main",
],
]) {
document.getElementById(menuId).hidden = PanelMultiView.getViewNode(
document,
boxId
).hidden = !shown;
}
},
updateSyncStatus(state) {
let syncNow =
document.querySelector(".syncNowBtn") ||
document
.getElementById("appMenu-viewCache")
.content.querySelector(".syncNowBtn");
const syncingUI = syncNow.getAttribute("syncstatus") == "active";
if (state.syncing != syncingUI) {
// Do we need to update the UI?
state.syncing ? this.onActivityStart() : this.onActivityStop();
}
},
async openSignInAgainPage(entryPoint) {
if (!(await FxAccounts.canConnectAccount())) {
return;
}
const url = await FxAccounts.config.promiseConnectAccountURI(entryPoint);
switchToTabHavingURI(url, true, {
replaceQueryString: true,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
},
async openDevicesManagementPage(entryPoint) {
let url = await FxAccounts.config.promiseManageDevicesURI(entryPoint);
switchToTabHavingURI(url, true, {
replaceQueryString: true,
triggeringPrincipal: Services.scriptSecurityManager.getSystemPrincipal(),
});
},
async openConnectAnotherDevice(entryPoint) {
const url = await FxAccounts.config.promiseConnectDeviceURI(entryPoint);
openTrustedLinkIn(url, "tab");
},
async clickOpenConnectAnotherDevice(sourceElement) {
this.emitFxaToolbarTelemetry("cad", sourceElement);
let entryPoint = this._getEntryPointForElement(sourceElement);
this.openConnectAnotherDevice(entryPoint);
},
openSendToDevicePromo() {
const url = Services.urlFormatter.formatURLPref(
"identity.sendtabpromo.url"
);
switchToTabHavingURI(url, true, { replaceQueryString: true });
},
async clickFxAMenuHeaderButton(sourceElement) {
// Depending on the current logged in state of a user,
// clicking the FxA header will either open
// a sign-in page, account management page, or sync
// preferences page.
const { status } = UIState.get();
switch (status) {
case UIState.STATUS_NOT_CONFIGURED:
this.openFxAEmailFirstPageFromFxaMenu(sourceElement);
break;
case UIState.STATUS_LOGIN_FAILED:
this.openPrefsFromFxaMenu("sync_settings", sourceElement);
break;
case UIState.STATUS_NOT_VERIFIED:
this.openFxAEmailFirstPage("fxa_app_menu_reverify");
break;
case UIState.STATUS_SIGNED_IN:
this._openFxAManagePageFromElement(sourceElement);
}
},
// Gets the telemetry "entry point" we should use for a given UI element.
// This entry-point is recorded in both client telemetry (typically called the "object")
// and where applicable, also communicated to the server for server telemetry via a URL query param.
//
// It inspects the parent elements to determine if the element is within one of our "well known"
// UI groups, in which case it will return a string for that group (eg, "fxa_app_menu", "fxa_toolbar_button").
// Otherwise (eg, the item might be directly on the context menu), it will return "fxa_discoverability_native".
_getEntryPointForElement(sourceElement) {
// Note that when an element is in either the app menu or the toolbar button menu,
// in both cases it *will* have a parent with ID "PanelUI-fxa-menu". But when
// in the app menu, it will also have a grand-parent with ID "appMenu-popup".
// So we must check for that outer grandparent first.
const appMenuPanel = document.getElementById("appMenu-popup");
if (appMenuPanel.contains(sourceElement)) {
return "fxa_app_menu";
}
// If it *is* the toolbar button...
if (sourceElement.id == "fxa-toolbar-menu-button") {
return "fxa_avatar_menu";
}
// ... or is in the panel shown by that button.
const fxaMenu = document.getElementById("PanelUI-fxa-menu");
if (fxaMenu && fxaMenu.contains(sourceElement)) {
return "fxa_avatar_menu";
}
return "fxa_discoverability_native";
},
async openFxAEmailFirstPage(entryPoint, extraParams = {}) {
if (!(await FxAccounts.canConnectAccount())) {
return;
}
const url = await FxAccounts.config.promiseConnectAccountURI(
entryPoint,
extraParams
);
switchToTabHavingURI(url, true, { replaceQueryString: true });
},
async openFxAEmailFirstPageFromFxaMenu(sourceElement, extraParams = {}) {
this.emitFxaToolbarTelemetry("login", sourceElement);
this.openFxAEmailFirstPage(
this._getEntryPointForElement(sourceElement),
extraParams
);
},
async openFxAManagePage(entryPoint) {
const url = await FxAccounts.config.promiseManageURI(entryPoint);
switchToTabHavingURI(url, true, { replaceQueryString: true });
},
async _openFxAManagePageFromElement(sourceElement) {
this.emitFxaToolbarTelemetry("account_settings", sourceElement);
this.openFxAManagePage(this._getEntryPointForElement(sourceElement));
},
// Returns true if we managed to send the tab to any targets, false otherwise.
async sendTabToDevice(url, targets, title) {
const fxaCommandsDevices = [];
for (const target of targets) {
if (fxAccounts.commands.sendTab.isDeviceCompatible(target)) {
fxaCommandsDevices.push(target);
} else {
this.log.error(`Target ${target.id} unsuitable for send tab.`);
}
}
// If a primary-password is enabled then it must be unlocked so FxA can get
// the encryption keys from the login manager. (If we end up using the "sync"
// fallback that would end up prompting by itself, but the FxA command route
// will not) - so force that here.
let cryptoSDR = Cc["@mozilla.org/login-manager/crypto/SDR;1"].getService(
Ci.nsILoginManagerCrypto
);
if (!cryptoSDR.isLoggedIn) {
if (cryptoSDR.uiBusy) {
this.log.info("Master password UI is busy - not sending the tabs");
return false;
}
try {
cryptoSDR.encrypt("bacon"); // forces the mp prompt.
} catch (e) {
this.log.info(
"Master password remains unlocked - not sending the tabs"
);
return false;
}
}
let numFailed = 0;
if (fxaCommandsDevices.length) {
this.log.info(
`Sending a tab to ${fxaCommandsDevices
.map(d => d.id)
.join(", ")} using FxA commands.`
);
const report = await fxAccounts.commands.sendTab.send(
fxaCommandsDevices,
{ url, title }
);
for (let { device, error } of report.failed) {
this.log.error(
`Failed to send a tab with FxA commands for ${device.id}.`,
error
);
numFailed++;
}
}
return numFailed < targets.length; // Good enough.
},
populateSendTabToDevicesMenu(
devicesPopup,
uri,
title,
multiselected,
createDeviceNodeFn,
isFxaMenu = false
) {
uri = BrowserUtils.getShareableURL(uri);
if (!uri) {
// log an error as everyone should have already checked this.
this.log.error("Ignoring request to share a non-sharable URL");
return;
}
if (!createDeviceNodeFn) {
createDeviceNodeFn = (targetId, name) => {
let eltName = name ? "menuitem" : "menuseparator";
return document.createXULElement(eltName);
};
}
// remove existing menu items
for (let i = devicesPopup.children.length - 1; i >= 0; --i) {
let child = devicesPopup.children[i];
if (child.classList.contains("sync-menuitem")) {
child.remove();
}
}
if (gSync.sendTabConfiguredAndLoading) {
// We can only be in this case in the page action menu.
return;
}
const fragment = document.createDocumentFragment();
const state = UIState.get();
if (state.status == UIState.STATUS_SIGNED_IN) {
const targets = this.getSendTabTargets();
if (targets.length) {
this._appendSendTabDeviceList(
targets,
fragment,
createDeviceNodeFn,
uri.spec,
title,
multiselected,
isFxaMenu
);
} else {
this._appendSendTabSingleDevice(fragment, createDeviceNodeFn);
}
} else if (
state.status == UIState.STATUS_NOT_VERIFIED ||
state.status == UIState.STATUS_LOGIN_FAILED
) {
this._appendSendTabVerify(fragment, createDeviceNodeFn);
} else {
// The only status not handled yet is STATUS_NOT_CONFIGURED, and
// when we're in that state, none of the menus that call
// populateSendTabToDevicesMenu are available, so entering this
// state is unexpected.
throw new Error(
"Called populateSendTabToDevicesMenu when in STATUS_NOT_CONFIGURED " +
"state."
);
}
devicesPopup.appendChild(fragment);
},
_appendSendTabDeviceList(
targets,
fragment,
createDeviceNodeFn,
url,
title,
multiselected,
isFxaMenu = false
) {
let tabsToSend = multiselected
? gBrowser.selectedTabs.map(t => {
return {
url: t.linkedBrowser.currentURI.spec,
title: t.linkedBrowser.contentTitle,
};
})
: [{ url, title }];
const send = to => {
Promise.all(
tabsToSend.map(t =>
// sendTabToDevice does not reject.
this.sendTabToDevice(t.url, to, t.title)
)
).then(results => {
// Show the Sent! confirmation if any of the sends succeeded.
if (results.includes(true)) {
// FxA button could be hidden with CSS since the user is logged out,
// although it seems likely this would only happen in testing...
let fxastatus = document.documentElement.getAttribute("fxastatus");
let anchorNode =
(fxastatus &&
fxastatus != "not_configured" &&
document.getElementById("fxa-toolbar-menu-button")?.parentNode
?.id != "widget-overflow-list" &&
document.getElementById("fxa-toolbar-menu-button")) ||
document.getElementById("PanelUI-menu-button");
ConfirmationHint.show(anchorNode, "confirmation-hint-send-to-device");
}
fxAccounts.flushLogFile();
});
};
const onSendAllCommand = () => {
send(targets);
};
const onTargetDeviceCommand = event => {
const targetId = event.target.getAttribute("clientId");
const target = targets.find(t => t.id == targetId);
send([target]);
};
function addTargetDevice(targetId, name, targetType, lastModified) {
const targetDevice = createDeviceNodeFn(
targetId,
name,
targetType,
lastModified
);
targetDevice.addEventListener(
"command",
targetId ? onTargetDeviceCommand : onSendAllCommand,
true
);
targetDevice.classList.add("sync-menuitem", "sendtab-target");
targetDevice.setAttribute("clientId", targetId);
targetDevice.setAttribute("clientType", targetType);
targetDevice.setAttribute("label", name);
fragment.appendChild(targetDevice);
}
for (let target of targets) {
let type, lastModified;
if (target.clientRecord) {
type = Weave.Service.clientsEngine.getClientType(
target.clientRecord.id
);
lastModified = new Date(target.clientRecord.serverLastModified * 1000);
} else {
// For phones, FxA uses "mobile" and Sync clients uses "phone".
type = target.type == "mobile" ? "phone" : target.type;
lastModified = target.lastAccessTime
? new Date(target.lastAccessTime)
: null;
}
addTargetDevice(target.id, target.name, type, lastModified);
}
if (targets.length > 1) {
// "Send to All Devices" menu item
const separator = createDeviceNodeFn();
separator.classList.add("sync-menuitem");
fragment.appendChild(separator);
const [allDevicesLabel, manageDevicesLabel] =
this.fluentStrings.formatValuesSync(
isFxaMenu
? ["account-send-to-all-devices", "account-manage-devices"]
: [
"account-send-to-all-devices-titlecase",
"account-manage-devices-titlecase",
]
);
addTargetDevice("", allDevicesLabel, "");
// "Manage devices" menu item
// We piggyback on the createDeviceNodeFn implementation,
// it's a big disgusting.
const targetDevice = createDeviceNodeFn(
null,
manageDevicesLabel,
null,
null
);
targetDevice.addEventListener(
"command",
() => gSync.openDevicesManagementPage("sendtab"),
true
);
targetDevice.classList.add("sync-menuitem", "sendtab-target");
targetDevice.setAttribute("label", manageDevicesLabel);
fragment.appendChild(targetDevice);
}
},
_appendSendTabSingleDevice(fragment, createDeviceNodeFn) {
const [noDevices, learnMore, connectDevice] =
this.fluentStrings.formatValuesSync([
"account-send-tab-to-device-singledevice-status",
"account-send-tab-to-device-singledevice-learnmore",
"account-send-tab-to-device-connectdevice",
]);
const actions = [
{
label: connectDevice,
command: () => this.openConnectAnotherDevice("sendtab"),
},
{ label: learnMore, command: () => this.openSendToDevicePromo() },
];
this._appendSendTabInfoItems(
fragment,
createDeviceNodeFn,
noDevices,
actions
);
},
_appendSendTabVerify(fragment, createDeviceNodeFn) {
const [notVerified, verifyAccount] = this.fluentStrings.formatValuesSync([
"account-send-tab-to-device-verify-status",
"account-send-tab-to-device-verify",
]);
const actions = [
{ label: verifyAccount, command: () => this.openPrefs("sendtab") },
];
this._appendSendTabInfoItems(
fragment,
createDeviceNodeFn,
notVerified,
actions
);
},
_appendSendTabInfoItems(fragment, createDeviceNodeFn, statusLabel, actions) {
const status = createDeviceNodeFn(null, statusLabel, null);
status.setAttribute("label", statusLabel);
status.setAttribute("disabled", true);
status.classList.add("sync-menuitem");
fragment.appendChild(status);
const separator = createDeviceNodeFn(null, null, null);
separator.classList.add("sync-menuitem");
fragment.appendChild(separator);
for (let { label, command } of actions) {
const actionItem = createDeviceNodeFn(null, label, null);
actionItem.addEventListener("command", command, true);
actionItem.classList.add("sync-menuitem");
actionItem.setAttribute("label", label);
fragment.appendChild(actionItem);
}
},
// "Send Tab to Device" menu item
updateTabContextMenu(aPopupMenu, aTargetTab) {
// We may get here before initialisation. This situation
// can lead to a empty label for 'Send To Device' Menu.
this.init();
if (!this.FXA_ENABLED) {
// These items are hidden in onFxaDisabled(). No need to do anything.
return;
}
let hasASendableURI = false;
for (let tab of aTargetTab.multiselected
? gBrowser.selectedTabs
: [aTargetTab]) {
if (BrowserUtils.getShareableURL(tab.linkedBrowser.currentURI)) {
hasASendableURI = true;
break;
}
}
const enabled = !this.sendTabConfiguredAndLoading && hasASendableURI;
const hideItems = this.shouldHideSendContextMenuItems(enabled);
let sendTabsToDevice = document.getElementById("context_sendTabToDevice");
sendTabsToDevice.disabled = !enabled;
if (hideItems || !hasASendableURI) {
sendTabsToDevice.hidden = true;
} else {
let tabCount = aTargetTab.multiselected
? gBrowser.multiSelectedTabsCount
: 1;
sendTabsToDevice.setAttribute(
"data-l10n-args",
JSON.stringify({ tabCount })
);
sendTabsToDevice.hidden = false;
}
},
// "Send Page to Device" and "Send Link to Device" menu items
updateContentContextMenu(contextMenu) {
if (!this.FXA_ENABLED) {
// These items are hidden by default. No need to do anything.
return false;
}
// showSendLink and showSendPage are mutually exclusive
const showSendLink =
contextMenu.onSaveableLink || contextMenu.onPlainTextLink;
const showSendPage =
!showSendLink &&
!(
contextMenu.isContentSelected ||
contextMenu.onImage ||
contextMenu.onCanvas ||
contextMenu.onVideo ||
contextMenu.onAudio ||
contextMenu.onLink ||
contextMenu.onTextInput
);
const targetURI = showSendLink
? contextMenu.getLinkURI()
: contextMenu.browser.currentURI;
const enabled =
!this.sendTabConfiguredAndLoading &&
BrowserUtils.getShareableURL(targetURI);
const hideItems = this.shouldHideSendContextMenuItems(enabled);
contextMenu.showItem(
"context-sendpagetodevice",
!hideItems && showSendPage
);
contextMenu.showItem(
"context-sendlinktodevice",
!hideItems && showSendLink
);
if (!showSendLink && !showSendPage) {
return false;
}
contextMenu.setItemAttr(
showSendPage ? "context-sendpagetodevice" : "context-sendlinktodevice",
"disabled",
!enabled || null
);
// return true if context menu items are visible
return !hideItems && (showSendPage || showSendLink);
},
// Functions called by observers
onActivityStart() {
this._isCurrentlySyncing = true;
clearTimeout(this._syncAnimationTimer);
this._syncStartTime = Date.now();
document.querySelectorAll(".syncnow-label").forEach(el => {
let l10nId = el.getAttribute("syncing-data-l10n-id");
document.l10n.setAttributes(el, l10nId);
});
document.querySelectorAll(".syncNowBtn").forEach(el => {
el.setAttribute("syncstatus", "active");
});
document
.getElementById("appMenu-viewCache")
.content.querySelectorAll(".syncNowBtn")
.forEach(el => {
el.setAttribute("syncstatus", "active");
});
},
_onActivityStop() {
this._isCurrentlySyncing = false;
if (!gBrowser) {
return;
}
document.querySelectorAll(".syncnow-label").forEach(el => {
let l10nId = el.getAttribute("sync-now-data-l10n-id");
document.l10n.setAttributes(el, l10nId);
});
document.querySelectorAll(".syncNowBtn").forEach(el => {
el.removeAttribute("syncstatus");
});
document
.getElementById("appMenu-viewCache")
.content.querySelectorAll(".syncNowBtn")
.forEach(el => {
el.removeAttribute("syncstatus");
});
Services.obs.notifyObservers(null, "test:browser-sync:activity-stop");
},
onActivityStop() {
let now = Date.now();
let syncDuration = now - this._syncStartTime;
if (syncDuration < MIN_STATUS_ANIMATION_DURATION) {
let animationTime = MIN_STATUS_ANIMATION_DURATION - syncDuration;
clearTimeout(this._syncAnimationTimer);
this._syncAnimationTimer = setTimeout(
() => this._onActivityStop(),
animationTime
);
} else {
this._onActivityStop();
}
},
// Disconnect from sync, and optionally disconnect from the FxA account.
// Returns true if the disconnection happened (ie, if the user didn't decline
// when asked to confirm)
async disconnect({ confirm = true, disconnectAccount = true } = {}) {
if (disconnectAccount) {
let deleteLocalData = false;
if (confirm) {
let options = await this._confirmFxaAndSyncDisconnect();
if (!options.userConfirmedDisconnect) {
return false;
}
deleteLocalData = options.deleteLocalData;
}
return this._disconnectFxaAndSync(deleteLocalData);
}
if (confirm && !(await this._confirmSyncDisconnect())) {
return false;
}
return this._disconnectSync();
},
// Prompt the user to confirm disconnect from FxA and sync with the option
// to delete syncable data from the device.
async _confirmFxaAndSyncDisconnect() {
let options = {
userConfirmedDisconnect: false,
deleteLocalData: false,
};
let [title, body, button, checkbox] = await document.l10n.formatValues([
{ id: "fxa-signout-dialog-title2" },
{ id: "fxa-signout-dialog-body" },
{ id: "fxa-signout-dialog2-button" },
{ id: "fxa-signout-dialog2-checkbox" },
]);
const flags =
Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_0 +
Services.prompt.BUTTON_TITLE_CANCEL * Services.prompt.BUTTON_POS_1;
if (!UIState.get().syncEnabled) {
checkbox = null;
}
const result = await Services.prompt.asyncConfirmEx(
window.browsingContext,
Services.prompt.MODAL_TYPE_INTERNAL_WINDOW,
title,
body,
flags,
button,
null,
null,
checkbox,
false
);
const propBag = result.QueryInterface(Ci.nsIPropertyBag2);
options.userConfirmedDisconnect = propBag.get("buttonNumClicked") == 0;
options.deleteLocalData = propBag.get("checked");
return options;
},
async _disconnectFxaAndSync(deleteLocalData) {
const { SyncDisconnect } = ChromeUtils.importESModule(
"resource://services-sync/SyncDisconnect.sys.mjs"
);
// Record telemetry.
await fxAccounts.telemetry.recordDisconnection(null, "ui");
await SyncDisconnect.disconnect(deleteLocalData).catch(e => {
console.error("Failed to disconnect.", e);
});
// Clear the attached clients list upon successfully disconnecting
this._attachedClients = null;
return true;
},
// Prompt the user to confirm disconnect from sync. In this case the data
// on the device is not deleted.
async _confirmSyncDisconnect() {
const [title, body, button] = await document.l10n.formatValues([
{ id: `sync-disconnect-dialog-title2` },
{ id: `sync-disconnect-dialog-body` },
{ id: "sync-disconnect-dialog-button" },
]);
const flags =
Services.prompt.BUTTON_TITLE_IS_STRING * Services.prompt.BUTTON_POS_0 +
Services.prompt.BUTTON_TITLE_CANCEL * Services.prompt.BUTTON_POS_1;
// buttonPressed will be 0 for disconnect, 1 for cancel.
const buttonPressed = Services.prompt.confirmEx(
window,
title,
body,
flags,
button,
null,
null,
null,
{}
);
return buttonPressed == 0;
},
async _disconnectSync() {
await fxAccounts.telemetry.recordDisconnection("sync", "ui");
await Weave.Service.promiseInitialized;
await Weave.Service.startOver();
return true;
},
// doSync forces a sync - it *does not* return a promise as it is called
// via the various UI components.
doSync() {
if (!UIState.isReady()) {
return;
}
// Note we don't bother checking if sync is actually enabled - none of the
// UI which calls this function should be visible in that case.
const state = UIState.get();
if (state.status == UIState.STATUS_SIGNED_IN) {
this.updateSyncStatus({ syncing: true });
Services.tm.dispatchToMainThread(() => {
// We are pretty confident that push helps us pick up all FxA commands,
// but some users might have issues with push, so let's unblock them
// by fetching the missed FxA commands on manual sync.
fxAccounts.commands.pollDeviceCommands().catch(e => {
this.log.error("Fetching missed remote commands failed.", e);
});
Weave.Service.sync();
});
}
},
doSyncFromFxaMenu(sourceElement) {
this.doSync();
this.emitFxaToolbarTelemetry("sync_now", sourceElement);
},
openPrefs(entryPoint = "syncbutton", origin = undefined, urlParams = {}) {
window.openPreferences("paneSync", {
origin,
urlParams: { ...urlParams, entrypoint: entryPoint },
});
},
openPrefsFromFxaMenu(type, sourceElement) {
this.emitFxaToolbarTelemetry(type, sourceElement);
let entryPoint = this._getEntryPointForElement(sourceElement);
this.openPrefs(entryPoint);
},
openChooseWhatToSync(type, sourceElement) {
this.emitFxaToolbarTelemetry(type, sourceElement);
let entryPoint = this._getEntryPointForElement(sourceElement);
this.openPrefs(entryPoint, null, { action: "choose-what-to-sync" });
},
openSyncedTabsPanel() {
let placement = CustomizableUI.getPlacementOfWidget("sync-button");
let area = placement?.area;
let anchor = document.getElementById("sync-button");
if (area == CustomizableUI.AREA_FIXED_OVERFLOW_PANEL) {
// The button is in the overflow panel, so we need to show the panel,
// then show our subview.
let navbar = document.getElementById(CustomizableUI.AREA_NAVBAR);
navbar.overflowable.show().then(() => {
PanelUI.showSubView("PanelUI-remotetabs", anchor);
}, console.error);
} else {
if (
!anchor?.checkVisibility({ checkVisibilityCSS: true, flush: false })
) {
anchor = document.getElementById("PanelUI-menu-button");
}
// It is placed somewhere else - just try and show it.
PanelUI.showSubView("PanelUI-remotetabs", anchor);
}
},
refreshSyncButtonsTooltip() {
const state = UIState.get();
this.updateSyncButtonsTooltip(state);
},
/* Update the tooltip for the sync icon in the main menu and in Synced Tabs.
If Sync is configured, the tooltip is when the last sync occurred,
otherwise the tooltip reflects the fact that Sync needs to be
(re-)configured.
*/
updateSyncButtonsTooltip(state) {
// Sync buttons are 1/2 Sync related and 1/2 FxA related
let l10nId, l10nArgs;
switch (state.status) {
case UIState.STATUS_NOT_VERIFIED:
// "needs verification"
l10nId = "account-verify";
l10nArgs = { email: state.email };
break;
case UIState.STATUS_LOGIN_FAILED:
// "need to reconnect/re-enter your password"
l10nId = "account-reconnect";
l10nArgs = { email: state.email };
break;
case UIState.STATUS_NOT_CONFIGURED:
// Button is not shown in this state
break;
default: {
// Sync appears configured - format the "last synced at" time.
let lastSyncDate = this.formatLastSyncDate(state.lastSync);
if (lastSyncDate) {
l10nId = "appmenu-fxa-last-sync";
l10nArgs = { time: lastSyncDate };
}
}
}
const tooltiptext = l10nId
? this.fluentStrings.formatValueSync(l10nId, l10nArgs)
: null;
let syncNowBtns = [
"PanelUI-remotetabs-syncnow",
"PanelUI-fxa-menu-syncnow-button",
];
syncNowBtns.forEach(id => {
let el = PanelMultiView.getViewNode(document, id);
if (tooltiptext) {
el.setAttribute("tooltiptext", tooltiptext);
} else {
el.removeAttribute("tooltiptext");
}
});
},
get relativeTimeFormat() {
delete this.relativeTimeFormat;
return (this.relativeTimeFormat = new Services.intl.RelativeTimeFormat(
undefined,
{ style: "long" }
));
},
formatLastSyncDate(date) {
if (!date) {
// Date can be null before the first sync!
return null;
}
try {
let adjustedDate = new Date(Date.now() - 1000);
let relativeDateStr = this.relativeTimeFormat.formatBestUnit(
date < adjustedDate ? date : adjustedDate
);
return relativeDateStr;
} catch (ex) {
// shouldn't happen, but one client having an invalid date shouldn't
// break the entire feature.
this.log.warn("failed to format lastSync time", date, ex);
return null;
}
},
onClientsSynced() {
// Note that this element is only shown if Sync is enabled.
let element = PanelMultiView.getViewNode(
document,
"PanelUI-remotetabs-main"
);
if (element) {
if (Weave.Service.clientsEngine.stats.numClients > 1) {
element.setAttribute("devices-status", "multi");
} else {
element.setAttribute("devices-status", "single");
}
}
},
onFxaDisabled() {
document.documentElement.setAttribute("fxadisabled", true);
const toHide = [...document.querySelectorAll(".sync-ui-item")];
for (const item of toHide) {
item.hidden = true;
}
},
/** Checks if the current list of attached clients to the Mozilla account
* has a service associated with the passed in Id
* @param {string} clientId
* A known static Id from FxA that identifies the service it's associated with
* @returns {boolean}
* Returns true/false whether the current account has the associated client
*/
hasClientForId(clientId) {
return this._attachedClients?.some(c => !!c.id && c.id === clientId);
},
updateCTAPanel(anchor) {
const mainPanelEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-cta-menu"
);
// If we're not in the experiment or in the app menu (hamburger)
// do not show this CTA panel
if (
!this.FXA_CTA_MENU_ENABLED ||
(anchor && anchor.id === "appMenu-fxa-label2")
) {
// If we've previously shown this but got disabled
// we should ensure we hide the panel
mainPanelEl.hidden = true;
return;
}
// Monitor checks
let monitorPanelEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-monitor-button"
);
let monitorEnabled = Services.prefs.getBoolPref(
"identity.fxaccounts.toolbar.pxiToolbarEnabled.monitorEnabled",
false
);
monitorPanelEl.hidden = !monitorEnabled;
// Relay checks
let relayPanelEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-relay-button"
);
let relayEnabled =
BrowserUtils.shouldShowPromo(BrowserUtils.PromoType.RELAY) &&
Services.prefs.getBoolPref(
"identity.fxaccounts.toolbar.pxiToolbarEnabled.relayEnabled",
false
);
let myServicesRelayPanelEl = PanelMultiView.getViewNode(
document,
"PanelUI-services-menu-relay-button"
);
let servicesContainerEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-services"
);
if (this.isSignedIn) {
const hasRelayClient = this.hasClientForId(FX_RELAY_OAUTH_CLIENT_ID);
relayPanelEl.hidden = hasRelayClient;
// Right now only relay is under "my services" so if we don't have, we turn it off
myServicesRelayPanelEl.hidden = !hasRelayClient;
servicesContainerEl.hidden = !hasRelayClient;
} else {
relayPanelEl.hidden = !relayEnabled;
// We'll never show my services when signed out
myServicesRelayPanelEl.hidden = true;
servicesContainerEl.hidden = true;
}
// VPN checks
let VpnPanelEl = PanelMultiView.getViewNode(
document,
"PanelUI-fxa-menu-vpn-button"
);
let vpnEnabled =
BrowserUtils.shouldShowPromo(BrowserUtils.PromoType.VPN) &&
Services.prefs.getBoolPref(
"identity.fxaccounts.toolbar.pxiToolbarEnabled.vpnEnabled",
false
);
VpnPanelEl.hidden = !vpnEnabled;
// We should only the show the separator if we have at least one CTA enabled
PanelMultiView.getViewNode(document, "PanelUI-products-separator").hidden =
!monitorEnabled && !relayEnabled && !vpnEnabled;
mainPanelEl.hidden = false;
},
async openMonitorLink(sourceElement) {
this.emitFxaToolbarTelemetry("monitor_cta", sourceElement);
await this.openCtaLink(
FX_MONITOR_OAUTH_CLIENT_ID,
new URL("https://monitor.firefox.com"),
new URL("https://monitor.firefox.com/user/breaches")
);
},
async openRelayLink(sourceElement) {
this.emitFxaToolbarTelemetry("relay_cta", sourceElement);
await this.openCtaLink(
FX_RELAY_OAUTH_CLIENT_ID,
new URL("https://relay.firefox.com"),
new URL("https://relay.firefox.com/accounts/profile")
);
},
async openVPNLink(sourceElement) {
this.emitFxaToolbarTelemetry("vpn_cta", sourceElement);
await this.openCtaLink(
VPN_OAUTH_CLIENT_ID,
new URL("https://www.mozilla.org/en-US/products/vpn/"),
new URL("https://www.mozilla.org/en-US/products/vpn/")
);
},
// A generic opening based on
async openCtaLink(clientId, defaultUrl, signedInUrl) {
const params = {
utm_medium: "firefox-desktop",
utm_source: "toolbar",
utm_campaign: "discovery",
};
const searchParams = new URLSearchParams(params);
if (!this.isSignedIn) {
// Add the base params + not signed in
defaultUrl.search = searchParams.toString();
defaultUrl.searchParams.append("utm_content", "notsignedin");
this.openLink(defaultUrl);
PanelUI.hide();
return;
}
const url = this.hasClientForId(clientId) ? signedInUrl : defaultUrl;
// Add base params + signed in
url.search = searchParams.toString();
url.searchParams.append("utm_content", "signedIn");
this.openLink(url);
PanelUI.hide();
},
/**
* Returns any experimental copy that we want to try for FxA sign-in CTAs in
* the event that the user is enrolled in an experiment.
*
* The only ctaCopyVariant's that are expected are:
*
* - control
* - sync-devices
* - backup-data
* - backup-sync
* - mobile
*
* If "control" is set, `null` is returned to indicate default strings,
* but impressions will still be recorded.
*
* @param {NimbusFeature} feature
* One of either NimbusFeatures.fxaAppMenuItem or
* NimbusFeatures.fxaAvatarMenuItem.
* @returns {object|string|null}
* If feature is NimbusFeatures.fxaAppMenuItem, this will return the Fluent
* string ID for the App Menu CTA to appear for users to sign in.
*
* If feature is NimbusFeatures.fxaAvatarMenuItem, this will return an
* object with two properties:
*
* headerTitleL10nId (string):
* The Fluent ID for the header string for the avatar menu CTA.
* headerDescription (string):
* The raw string for the description for the avatar menu CTA.
*
* If there is no copy variant being tested, this will return null.
*/
getMenuCtaCopy(feature) {
const ctaCopyVariant = feature.getVariable("ctaCopyVariant");
let headerTitleL10nId;
let headerDescription;
switch (ctaCopyVariant) {
case "sync-devices": {
if (feature === NimbusFeatures.fxaAppMenuItem) {
return "fxa-menu-message-sync-devices-collapsed-text";
}
headerTitleL10nId = "fxa-menu-message-sync-devices-primary-text";
headerDescription = this.fluentStrings.formatValueSync(
"fxa-menu-message-sync-devices-secondary-text"
);
break;
}
case "backup-data": {
if (feature === NimbusFeatures.fxaAppMenuItem) {
return "fxa-menu-message-backup-data-collapsed-text";
}
headerTitleL10nId = "fxa-menu-message-backup-data-primary-text";
headerDescription = this.fluentStrings.formatValueSync(
"fxa-menu-message-backup-data-secondary-text"
);
break;
}
case "backup-sync": {
if (feature === NimbusFeatures.fxaAppMenuItem) {
return "fxa-menu-message-backup-sync-collapsed-text";
}
headerTitleL10nId = "fxa-menu-message-backup-sync-primary-text";
headerDescription = this.fluentStrings.formatValueSync(
"fxa-menu-message-backup-sync-secondary-text"
);
break;
}
case "mobile": {
if (feature === NimbusFeatures.fxaAppMenuItem) {
return "fxa-menu-message-mobile-collapsed-text";
}
headerTitleL10nId = "fxa-menu-message-mobile-primary-text";
headerDescription = this.fluentStrings.formatValueSync(
"fxa-menu-message-mobile-secondary-text"
);
break;
}
default: {
return null;
}
}
return { headerTitleL10nId, headerDescription };
},
/**
* Updates the FxA button to show the right avatar variant in the event that
* this client is not currently signed into an account.
*
* @param {string} variant
* One of the string constants for the avatarIconVariant variable on the
* fxaButtonVisibility feature.
*/
applyAvatarIconVariant(variant) {
const ICON_VARIANTS = ["control", "human-circle", "fox-circle"];
if (!ICON_VARIANTS.includes(variant)) {
return;
}
document.documentElement.setAttribute("fxa-avatar-icon-variant", variant);
},
openLink(url) {
switchToTabHavingURI(url, true, { replaceQueryString: true });
},
QueryInterface: ChromeUtils.generateQI([
"nsIObserver",
"nsISupportsWeakReference",
]),
};
|