@saooti/octopus-sdk 36.0.39 → 36.0.41

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (46) hide show
  1. package/index.html +1 -0
  2. package/index.ts +7 -7
  3. package/package.json +3 -3
  4. package/public/css/fonts/icomoon.eot +0 -0
  5. package/public/css/fonts/icomoon.svg +2 -1
  6. package/public/css/fonts/icomoon.ttf +0 -0
  7. package/public/css/fonts/icomoon.woff +0 -0
  8. package/public/css/fonts/montserrat/Montserrat-Black.ttf +0 -0
  9. package/public/css/fonts/montserrat/Montserrat-BlackItalic.ttf +0 -0
  10. package/public/css/fonts/montserrat/Montserrat-Bold.ttf +0 -0
  11. package/public/css/fonts/montserrat/Montserrat-BoldItalic.ttf +0 -0
  12. package/public/css/fonts/montserrat/Montserrat-ExtraBold.ttf +0 -0
  13. package/public/css/fonts/montserrat/Montserrat-ExtraBoldItalic.ttf +0 -0
  14. package/public/css/fonts/montserrat/Montserrat-ExtraLight.ttf +0 -0
  15. package/public/css/fonts/montserrat/Montserrat-ExtraLightItalic.ttf +0 -0
  16. package/public/css/fonts/montserrat/Montserrat-Italic.ttf +0 -0
  17. package/public/css/fonts/montserrat/Montserrat-Light.ttf +0 -0
  18. package/public/css/fonts/montserrat/Montserrat-LightItalic.ttf +0 -0
  19. package/public/css/fonts/montserrat/Montserrat-Medium.ttf +0 -0
  20. package/public/css/fonts/montserrat/Montserrat-MediumItalic.ttf +0 -0
  21. package/public/css/fonts/montserrat/Montserrat-Regular.ttf +0 -0
  22. package/public/css/fonts/montserrat/Montserrat-SemiBold.ttf +0 -0
  23. package/public/css/fonts/montserrat/Montserrat-SemiBoldItalic.ttf +0 -0
  24. package/public/css/fonts/montserrat/Montserrat-Thin.ttf +0 -0
  25. package/public/css/fonts/montserrat/Montserrat-ThinItalic.ttf +0 -0
  26. package/public/css/fonts/montserrat/style.css +28 -0
  27. package/public/css/fonts/style.css +8 -5
  28. package/src/assets/bootstrap.scss +9 -0
  29. package/src/assets/general.scss +1 -1
  30. package/src/assets/share.scss +1 -1
  31. package/src/components/display/comments/AddCommentModal.vue +1 -1
  32. package/src/components/display/comments/CommentInput.vue +1 -4
  33. package/src/components/display/participant/ParticipantItem.vue +1 -0
  34. package/src/components/display/podcasts/PodcastImage.vue +1 -4
  35. package/src/components/display/podcasts/PodcastItemInfo.vue +3 -1
  36. package/src/components/display/sharing/ShareButtons.vue +7 -9
  37. package/src/components/display/sharing/ShareButtonsIntern.vue +109 -104
  38. package/src/components/display/sharing/ShareDistribution.vue +1 -1
  39. package/src/components/display/sharing/SubscribeButtons.vue +1 -1
  40. package/src/components/form/ClassicMultiselect.vue +4 -0
  41. package/src/components/misc/AcpmImage.vue +26 -0
  42. package/src/components/misc/Footer.vue +23 -19
  43. package/src/components/misc/HomeDropdown.vue +11 -8
  44. package/src/components/misc/TopBar.vue +1 -1
  45. package/src/components/misc/player/PlayerLarge.vue +5 -2
  46. package/src/stores/AuthStore.ts +6 -4
package/index.html CHANGED
@@ -6,6 +6,7 @@
6
6
  <meta name="viewport" content="width=device-width,initial-scale=1.0">
7
7
  <link rel="icon" href="/favicon.ico">
8
8
  <link rel="stylesheet" href="/css/fonts/style.css">
9
+ <link rel="stylesheet" href="/css/fonts/montserrat/style.css">
9
10
  <title>octopus-library</title>
10
11
  </head>
11
12
  <body>
package/index.ts CHANGED
@@ -70,13 +70,13 @@ export const getClassicInputText = () => import("./src/components/form/ClassicIn
70
70
 
71
71
  //mixins
72
72
 
73
- import selenium from "./src/components/mixins/selenium";
74
- import cookies from "./src/components/mixins/cookies";
75
- import displayMethods from "./src/components/mixins/displayMethods";
76
- import imageProxy from "./src/components/mixins/imageProxy";
77
- import orgaFilter from "./src/components/mixins/organisationFilter";
78
- import initSDK from "./src/components/mixins/init";
79
- import tagOfMixins from "./src/components/mixins/tagOfMixins";
73
+ import selenium from "./src/components/mixins/selenium.ts";
74
+ import cookies from "./src/components/mixins/cookies.ts";
75
+ import displayMethods from "./src/components/mixins/displayMethods.ts";
76
+ import imageProxy from "./src/components/mixins/imageProxy.ts";
77
+ import orgaFilter from "./src/components/mixins/organisationFilter.ts";
78
+ import initSDK from "./src/components/mixins/init.ts";
79
+ import tagOfMixins from "./src/components/mixins/tagOfMixins.ts";
80
80
 
81
81
  export {
82
82
  selenium,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@saooti/octopus-sdk",
3
- "version": "36.0.39",
3
+ "version": "36.0.41",
4
4
  "private": false,
5
5
  "description": "Javascript SDK for using octopus",
6
6
  "author": "Saooti",
@@ -38,7 +38,7 @@
38
38
  "sonarqube-scanner": "^3.0.0",
39
39
  "swiper": "^9.3.2",
40
40
  "v-calendar": "^3.0.3",
41
- "vite": "^3.2.7",
41
+ "vite": "^4.3.9",
42
42
  "vue": "^3.3.4",
43
43
  "vue-i18n": "^9.2.2",
44
44
  "vue-recaptcha": "^2.0.3",
@@ -51,7 +51,7 @@
51
51
  "@types/vue-select": "^3.16.2",
52
52
  "@typescript-eslint/eslint-plugin": "^5.59.11",
53
53
  "@typescript-eslint/parser": "^5.59.11",
54
- "@vitejs/plugin-vue": "^3.2.0",
54
+ "@vitejs/plugin-vue": "^4.2.3",
55
55
  "@vue/compiler-sfc": "^3.3.4",
56
56
  "@vue/eslint-config-typescript": "^8.0.0",
57
57
  "eslint": "^8.42.0",
Binary file
@@ -67,7 +67,8 @@
67
67
  <glyph unicode="&#xe939;" glyph-name="website" horiz-adv-x="819" d="M777.161 539.073c0 0 0 0 0 0v0c-43.85 168.654-192.264 290.083-367.663 290.083s-323.814-121.43-367.663-283.337c0 0 0-3.373 0-3.373-6.747-30.357-10.119-60.715-10.119-91.073 0-37.104 6.747-77.581 16.866-111.311 0 0 0 0 0 0 47.223-158.534 192.264-273.218 360.918-273.218s310.322 111.311 360.918 263.099c0 0 0 0 0 3.373 10.119 37.104 16.866 74.207 16.866 114.684 0 30.357-3.373 60.715-10.119 91.073zM675.969 640.264c20.238-30.357 37.104-64.088 47.223-97.819-20.238-23.611-70.834-50.596-155.16-67.461 0 43.85-6.747 91.073-13.492 131.55 47.223 6.747 87.7 20.238 121.43 33.73zM642.239 680.741c-26.985-10.119-60.715-16.866-97.819-23.611-10.119 40.477-26.985 77.581-43.85 107.938 53.969-16.866 104.564-47.223 141.668-84.326zM301.56 464.866v0c0 50.596 6.747 94.446 13.492 134.922 30.357-3.373 64.088-6.747 97.819-6.747s64.088 3.373 94.446 6.747c6.747-40.477 13.492-84.326 13.492-134.922-74.207-6.747-148.415-6.747-219.249 0zM517.436 414.27c-3.373-50.596-6.747-97.819-16.866-138.295-64.088-6.747-124.803-6.747-185.518 0-6.747 40.477-13.492 87.7-13.492 138.295 37.104-3.373 74.207-6.747 111.311-6.747 33.73 0 70.834 3.373 104.564 6.747zM409.498 778.56c26.985 0 60.715-47.223 84.326-128.177-53.969-6.747-114.684-6.747-168.654 0 23.611 80.954 57.343 128.177 84.326 128.177zM318.425 765.068v0c-16.866-30.357-33.73-67.461-43.85-107.938-37.104 6.747-70.834 13.492-97.819 23.611 40.477 37.104 87.7 67.461 141.668 84.326zM143.026 640.264c33.73-13.492 74.207-23.611 121.43-33.73-6.747-43.85-13.492-87.7-13.492-131.55-74.207 13.492-131.55 40.477-155.16 67.461 10.119 33.73 26.985 67.461 47.223 97.819zM78.938 448v0c0 13.492 0 23.611 3.373 37.104 37.104-26.985 94.446-50.596 165.28-60.715 0-47.223 6.747-94.446 13.492-138.295-80.954 13.492-141.668 40.477-168.654 70.834-6.747 26.985-13.492 57.343-13.492 91.073zM132.907 269.228v0c37.104-16.866 84.326-30.357 138.295-37.104 0 0 3.373 0 3.373 0 10.119-37.104 23.611-70.834 40.477-97.819-74.207 20.238-138.295 70.834-182.145 134.922zM409.498 120.814c-23.611 0-57.343 37.104-77.581 107.938 26.985-3.373 53.969-3.373 77.581-3.373 26.985 0 50.596 0 77.581 3.373-20.238-70.834-53.969-107.938-77.581-107.938zM500.571 130.932c16.866 26.985 30.357 60.715 40.477 97.819h6.747c53.969 6.747 97.819 20.238 138.295 37.104-43.85-60.715-107.938-111.311-185.518-134.922zM723.192 353.554v0c-26.985-30.357-91.073-53.969-168.654-67.461 6.747 43.85 13.492 91.073 13.492 138.295 70.834 13.492 128.177 33.73 168.654 60.715 0-13.492 3.373-23.611 3.373-37.104 0-33.73-6.747-64.088-16.866-94.446z" />
68
68
  <glyph unicode="&#xe93a;" glyph-name="youtube" d="M969.026 634.51c0 0-9.111 64.326-37.174 92.571-35.534 37.174-75.26 37.357-93.483 39.543-130.475 9.476-326.369 9.476-326.369 9.476h-0.364c0 0-195.894 0-326.369-9.476-18.223-2.187-57.948-2.369-93.483-39.543-28.063-28.245-36.992-92.571-36.992-92.571s-9.294-75.442-9.294-151.066v-70.704c0-75.442 9.294-151.066 9.294-151.066s9.111-64.326 36.992-92.571c35.534-37.174 82.184-35.899 102.958-39.908 74.713-7.107 317.258-9.294 317.258-9.294s196.076 0.364 326.551 9.658c18.223 2.187 57.948 2.369 93.483 39.543 28.063 28.245 37.174 92.571 37.174 92.571s9.294 75.442 9.294 151.066v70.704c-0.182 75.442-9.476 151.066-9.476 151.066v0zM415.42 326.91v262.225l252.020-131.568-252.020-130.657z" />
69
69
  <glyph unicode="&#xe93b;" glyph-name="linktree" horiz-adv-x="838" d="M350.525 282.191h139.629v-313.975h-139.629v313.975zM811.801 603.453h-237.446l168.975 159.96-93.022 94.94-160.727-164.371v233.802h-139.629v-233.994l-160.727 164.371-93.214-94.749 168.975-159.96h-238.79v-132.15h238.79l-169.742-164.563 93.214-92.638 230.542 230.925 230.542-230.925 93.022 92.638-169.742 164.563h238.982z" />
70
- <glyph unicode="&#xe93c;" glyph-name="amazon-music" horiz-adv-x="5120" d="M1636.396 674.685v58.423c0 8.179 5.842 14.021 14.021 15.19h254.722c8.179 0 14.021-5.842 14.021-14.021 0 0 0 0 0 0s0-1.168 0-1.168v-49.076c-3.505-14.021-9.347-25.706-18.694-36.222l-132.035-191.626c50.244 2.338 100.487-8.179 144.888-31.548 8.179-4.674 12.853-12.853 12.853-22.201v-63.096c0-8.179-5.842-14.021-12.853-14.021-2.338 0-3.505 0-5.842 1.168-84.129 44.401-184.615 44.401-268.744 0-9.347-4.674-17.527 4.674-17.527 14.021v58.423c-1.168 14.021 2.338 28.043 9.347 39.727l153.067 223.174h-132.035c-8.179-1.168-15.19 4.674-15.19 12.853v0 0 0zM602.316 325.318c-7.011 0-14.021 5.842-14.021 14.021v408.958c0 8.179 7.011 15.19 15.19 15.19 0 0 0 0 0 0h74.781c8.179 0 14.021-5.842 15.19-14.021v-53.749h1.168c14.021 46.738 57.253 77.118 105.161 75.95 50.244 0 81.792-24.537 103.991-75.95 23.369 60.76 92.308 91.139 153.067 67.77 19.864-7.011 37.391-19.864 50.244-36.222 25.706-33.885 19.864-84.129 19.864-128.53v-259.396c0-8.179-7.011-15.19-15.19-15.19 0 0 0 0 0 0h-80.623c-8.179 0-14.021 7.011-14.021 14.021v218.5c1.168 25.706 0 51.411-2.338 77.118-3.505 22.201-24.537 38.559-46.738 35.053v0c-21.032-1.168-39.727-14.021-47.906-33.885-7.011-25.706-9.347-52.58-7.011-78.286v-217.332c0-8.179-7.011-15.19-15.19-15.19 0 0 0 0 0 0h-80.623c-8.179 0-14.021 7.011-14.021 14.021v218.5c0 45.569 7.011 113.34-49.076 113.34-57.253 0-54.918-65.433-54.918-113.34v-217.332c0-8.179-7.011-15.19-15.19-15.19 0 0 0 0 0 0s0 0-1.168 0h-80.623v1.168zM2130.651 770.499c119.182 0 183.447-99.318 183.447-226.679 0-122.688-71.276-219.669-183.447-219.669-116.845 0-181.11 99.318-181.11 224.343s64.265 222.005 181.11 222.005v0 0zM2067.554 561.346c0-49.076 0-154.235 63.096-154.235s65.433 84.129 65.433 136.708c1.168 36.222-2.338 71.276-11.685 106.329-4.674 24.537-28.043 40.896-52.58 38.559-60.76 0-64.265-78.286-64.265-127.361zM2471.839 325.318h-73.612c-7.011 0-12.853 7.011-12.853 14.021v408.958c1.168 8.179 7.011 14.021 14.021 12.853h68.938c5.842 0 11.685-4.674 12.853-11.685v-61.928h1.168c21.032 56.085 50.244 81.792 101.655 81.792 35.053 2.338 67.77-16.359 86.465-47.906 19.864-32.717 19.864-87.635 19.864-127.361v-258.228c-1.168-7.011-7.011-12.853-14.021-12.853h-74.781c-7.011 0-12.853 5.842-12.853 12.853v223.174c0 45.569 4.674 109.834-46.738 109.834-18.694-1.168-35.053-14.021-42.064-32.717-9.347-24.537-12.853-51.411-11.685-77.118v-219.669c-1.168-8.179-8.179-15.19-16.359-14.021v0 0 0zM1510.202 331.161c-4.674-4.674-12.853-4.674-18.694-2.338-17.527 14.021-32.717 31.548-44.401 52.58-31.548-38.559-79.455-59.591-129.699-57.253-67.77 0-118.014 40.896-118.014 121.519-1.168 56.085 31.548 106.329 84.129 127.361 43.233 18.694 102.824 22.201 148.393 26.874v10.516c2.338 19.864-1.168 38.559-9.347 56.085-10.516 14.021-28.043 21.032-44.401 19.864-30.379 2.338-57.253-17.527-63.096-46.738-1.168-7.011-7.011-12.853-14.021-14.021l-75.95 8.179c-7.011 1.168-12.853 9.347-10.516 16.359 17.527 91.139 100.487 119.182 176.436 119.182 43.233 1.168 84.129-12.853 118.014-38.559 38.559-35.053 35.053-82.96 35.053-134.373v-121.519c0-26.874 10.516-52.58 29.212-72.444 5.842-5.842 5.842-15.19 0-21.032-19.864-11.685-47.906-36.222-63.096-50.244v0 0zM1433.085 520.45v16.359c-57.253 0-116.845-11.685-116.845-74.781 0-32.717 17.527-53.749 47.906-53.749 23.369 1.168 44.401 14.021 54.918 33.885 11.685 23.369 16.359 50.244 14.021 78.286v0zM476.124 331.161c-4.674-4.674-12.853-4.674-18.694-2.338-17.527 14.021-32.717 32.717-44.401 52.58-31.548-38.559-79.455-59.591-129.699-56.085-66.602 0-118.014 39.727-118.014 121.519-2.338 56.085 31.548 106.329 84.129 127.361 42.064 18.694 101.655 22.201 147.225 26.874v10.516c2.338 19.864-1.168 38.559-9.347 56.085-10.516 14.021-26.874 21.032-44.401 19.864-29.212 2.338-56.085-17.527-63.096-46.738-1.168-7.011-5.842-12.853-14.021-14.021l-75.95 8.179c-7.011 1.168-11.685 9.347-10.516 16.359 17.527 92.308 100.487 119.182 175.267 119.182 43.233 1.168 84.129-11.685 118.014-38.559 38.559-35.053 35.053-82.96 35.053-134.373v-121.519c0-26.874 10.516-52.58 29.212-72.444 5.842-5.842 5.842-14.021 0-19.864v0c-16.359-14.021-45.569-38.559-60.76-52.58v0 0zM399.005 535.64c-57.253 0-116.845-11.685-116.845-74.781 0-32.717 17.527-53.749 47.906-53.749 23.369 1.168 44.401 14.021 53.749 33.885 12.853 24.537 17.527 51.411 15.19 79.455v15.19zM1192.384-15.87c-246.544-1.168-484.908 94.644-668.354 269.912-14.021 12.853-1.168 31.548 15.19 21.032 204.479-122.688 434.663-188.121 670.692-186.952 175.267 1.168 348.199 38.559 510.613 109.834 24.537 11.685 45.569-17.527 21.032-36.222-149.562-115.676-364.558-177.605-549.172-177.605zM1798.81 231.842c-18.694 24.537-127.361 11.685-176.436 5.842-15.19-1.168-17.527 11.685-3.505 21.032 86.465 61.928 227.848 44.401 244.206 23.369s-4.674-164.752-85.297-233.69c-12.853-10.516-24.537-4.674-18.694 9.347 17.527 45.569 58.423 149.562 39.727 174.099v0zM4289.949 393.089c15.19 10.516 23.369 28.043 23.369 45.569 0 11.685-4.674 24.537-12.853 32.717-14.021 11.685-31.548 19.864-49.076 24.537l-73.612 26.874c-64.265 22.201-95.813 61.928-95.813 115.676-1.168 33.885 15.19 66.602 43.233 87.635 32.717 23.369 73.612 35.053 114.508 32.717 37.391 0 74.781-7.011 109.834-18.694 5.842-1.168 10.516-4.674 15.19-8.179 3.505-4.674 4.674-10.516 4.674-16.359v-22.201c0-9.347-3.505-15.19-11.685-15.19-7.011 0-14.021 2.338-19.864 4.674-30.379 8.179-61.928 12.853-93.476 12.853-54.918 0-82.96-17.527-82.96-53.749-1.168-12.853 4.674-25.706 14.021-33.885 16.359-11.685 35.053-21.032 54.918-26.874l68.938-24.537c26.874-9.347 52.58-25.706 72.444-45.569 15.19-18.694 23.369-43.233 23.369-67.77 1.168-36.222-15.19-71.276-45.569-93.476-35.053-24.537-78.286-37.391-122.688-35.053-44.401-1.168-88.802 7.011-130.866 23.369-5.842 2.338-10.516 4.674-14.021 9.347-2.338 4.674-4.674 10.516-3.505 16.359v23.369c0 9.347 3.505 15.19 10.516 15.19 7.011-1.168 15.19-2.338 22.201-4.674 38.559-11.685 78.286-17.527 118.014-17.527 18.694-4.674 42.064 1.168 60.76 12.853v0 0zM3909.034 742.456c-1.168 8.179 4.674 16.359 12.853 17.527 1.168 0 2.338 0 3.505 0h49.076c8.179 1.168 15.19-4.674 16.359-12.853 0 0 0 0 0 0 0-1.168 0-2.338 0-4.674v-398.442c1.168-8.179-4.674-16.359-12.853-17.527-1.168 0-2.338 0-4.674 0h-33.885c-4.674 0-9.347 1.168-12.853 3.505-3.505 3.505-5.842 8.179-7.011 12.853l-5.842 30.379c-45.569-37.391-101.655-57.253-161.247-59.591-33.885-2.338-67.77 10.516-92.308 33.885-22.201 26.874-33.885 61.928-31.548 96.982v297.955c-1.168 8.179 4.674 16.359 12.853 17.527 1.168 0 2.338 0 3.505 0h49.076c8.179 1.168 15.19-4.674 16.359-12.853 0-1.168 0-2.338 0-4.674v-271.081c-2.338-24.537 4.674-47.906 17.527-67.77 14.021-16.359 35.053-24.537 56.085-22.201 43.233 1.168 86.465 15.19 121.519 40.896l3.505 320.156zM3456.844 325.318c-8.179-1.168-16.359 4.674-17.527 12.853 0 0 0 0 0 0 0 1.168 0 2.338 0 4.674v275.755c1.168 22.201-3.505 44.401-16.359 63.096-12.853 14.021-31.548 22.201-51.411 19.864-44.401-1.168-87.635-14.021-125.024-38.559 0-4.674 0-8.179 0-12.853v-309.64c1.168-8.179-4.674-16.359-12.853-17.527-1.168 0-2.338 0-4.674 0h-50.244c-8.179-1.168-16.359 4.674-17.527 12.853 0 0 0 0 0 0 0 1.168 0 2.338 0 4.674v278.091c1.168 22.201-3.505 44.401-16.359 63.096-12.853 14.021-31.548 22.201-51.411 19.864-44.401 0-87.635-12.853-123.856-37.391v-322.492c1.168-8.179-4.674-16.359-12.853-17.527-1.168 0-2.338 0-4.674 0h-50.244c-8.179-1.168-16.359 4.674-16.359 12.853 0 1.168 0 2.338 0 4.674v399.611c-1.168 8.179 4.674 15.19 12.853 17.527 1.168 0 2.338 0 4.674 0h37.391c4.674 0 9.347-1.168 12.853-3.505 3.505-3.505 5.842-8.179 7.011-12.853l4.674-26.874c45.569 35.053 101.655 53.749 158.909 56.085 52.58 0 87.635-19.864 107.497-60.76 47.906 37.391 106.329 58.423 168.257 60.76 32.717 2.338 65.433-10.516 89.971-32.717 22.201-26.874 33.885-60.76 31.548-94.644v-300.293c1.168-8.179-4.674-16.359-12.853-17.527-1.168 0-2.338 0-4.674 0l-46.738-1.168zM4756.163 653.653c-21.032-23.369-31.548-61.928-31.548-114.508v-10.516c0-51.411 10.516-88.802 31.548-112.171 26.874-25.706 63.096-39.727 99.318-36.222 25.706 0 51.411 4.674 75.95 11.685 4.674 1.168 8.179 2.338 12.853 2.338 7.011 0 10.516-5.842 10.516-16.359v-22.201c0-5.842-1.168-11.685-3.505-16.359-3.505-4.674-8.179-7.011-14.021-9.347-30.379-12.853-63.096-18.694-95.813-17.527-66.602 0-116.845 18.694-151.899 57.253-35.053 37.391-52.58 93.476-52.58 164.752 0 72.444 17.527 126.193 53.749 165.92 40.896 40.896 95.813 61.928 153.067 58.423 30.379 0 60.76-5.842 88.802-16.359 4.674-1.168 9.347-4.674 12.853-8.179 2.338-4.674 4.674-10.516 3.505-17.527v-22.201c0-11.685-3.505-16.359-10.516-16.359-4.674 0-9.347 1.168-14.021 2.338-22.201 7.011-46.738 10.516-70.107 10.516-43.233-1.168-77.118-14.021-98.15-37.391v0 0zM4539.998 735.445c8.179 1.168 15.19-4.674 16.359-12.853 0-1.168 0-2.338 0-3.505v-389.095c1.168-8.179-4.674-15.19-12.853-16.359-1.168 0-2.338 0-4.674 0h-49.076c-8.179-1.168-15.19 4.674-16.359 12.853 0 0 0 0 0 0 0 1.168 0 2.338 0 3.505v389.095c-1.168 8.179 4.674 15.19 11.685 16.359 1.168 0 2.338 0 4.674 0h50.244zM4554.020 897.86c18.694-22.201 18.694-54.918 0-77.118-22.201-18.694-54.918-18.694-77.118 0-18.694 22.201-18.694 54.918 0 77.118 22.201 18.694 54.918 18.694 77.118 0z" />
70
+ <glyph unicode="&#xe93c;" glyph-name="amazon-music" horiz-adv-x="5120" d="M1572.664 690.329v62.456c0 8.746 6.245 14.991 14.991 16.237h272.296c8.746 0 14.991-6.245 14.991-14.991 0 0 0 0 0 0s0-1.248 0-1.248v-52.464c-3.745-14.991-9.99-27.484-19.982-38.717l-141.147-204.848c53.711 2.502 107.42-8.746 154.883-33.729 8.746-4.997 13.737-13.737 13.737-23.732v-67.448c0-8.746-6.245-14.991-13.737-14.991-2.502 0-3.745 0-6.245 1.248-89.933 47.464-197.355 47.464-287.285 0-9.99-4.997-18.737 4.997-18.737 14.991v62.456c-1.248 14.991 2.502 29.977 9.99 42.469l163.629 238.577h-141.147c-8.746-1.248-16.237 4.997-16.237 13.737v0 0 0zM467.237 316.856c-7.492 0-14.991 6.245-14.991 14.991v437.178c0 8.746 7.492 16.237 16.237 16.237 0 0 0 0 0 0h79.938c8.746 0 14.991-6.245 16.237-14.991v-57.455h1.248c14.991 49.964 61.204 82.437 112.42 81.193 53.711 0 87.438-26.227 111.163-81.193 24.982 64.953 98.673 97.428 163.629 72.446 21.237-7.492 39.974-21.237 53.711-38.717 27.484-36.224 21.237-89.933 21.237-137.399v-277.294c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0h-86.183c-8.746 0-14.991 7.492-14.991 14.991v233.574c1.248 27.484 0 54.959-2.502 82.437-3.745 23.732-26.227 41.219-49.964 37.472v0c-22.482-1.248-42.469-14.991-51.209-36.224-7.492-27.484-9.99-56.209-7.492-83.688v-232.33c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0h-86.183c-8.746 0-14.991 7.492-14.991 14.991v233.574c0 48.714 7.492 121.16-52.464 121.16-61.204 0-58.708-69.945-58.708-121.16v-232.33c0-8.746-7.492-16.237-16.237-16.237 0 0 0 0 0 0s0 0-1.248 0h-86.183v1.248zM2101.024 792.754c127.404 0 196.102-106.175 196.102-242.32 0-131.154-76.192-234.825-196.102-234.825-124.909 0-193.605 106.175-193.605 239.821s68.701 237.32 193.605 237.32v0 0zM2033.574 569.169c0-52.464 0-164.874 67.448-164.874s69.945 89.933 69.945 146.139c1.248 38.717-2.502 76.192-12.492 113.665-4.997 26.227-29.977 43.719-56.209 41.219-64.953 0-68.701-83.688-68.701-136.146zM2465.754 316.856h-78.691c-7.492 0-13.737 7.492-13.737 14.991v437.178c1.248 8.746 7.492 14.991 14.991 13.737h73.693c6.245 0 12.492-4.997 13.737-12.492v-66.201h1.248c22.482 59.954 53.711 87.438 108.67 87.438 37.472 2.502 72.446-17.487 92.428-51.209 21.237-34.974 21.237-93.683 21.237-136.146v-276.046c-1.248-7.492-7.492-13.737-14.991-13.737h-79.938c-7.492 0-13.737 6.245-13.737 13.737v238.577c0 48.714 4.997 117.41-49.964 117.41-19.982-1.248-37.472-14.991-44.964-34.974-9.99-26.227-13.737-54.959-12.492-82.437v-234.825c-1.248-8.746-8.746-16.237-17.487-14.991v0 0 0zM1437.767 323.103c-4.997-4.997-13.737-4.997-19.982-2.502-18.737 14.991-34.974 33.729-47.464 56.209-33.729-41.219-84.938-63.7-138.649-61.204-72.446 0-126.157 43.719-126.157 129.901-1.248 59.954 33.729 113.665 89.933 136.146 46.219 19.982 109.92 23.732 158.629 28.727v11.242c2.502 21.237-1.248 41.219-9.99 59.954-11.242 14.991-29.977 22.482-47.464 21.237-32.472 2.502-61.204-18.737-67.448-49.964-1.248-7.492-7.492-13.737-14.991-14.991l-81.193 8.746c-7.492 1.248-13.737 9.99-11.242 17.487 18.737 97.428 107.42 127.404 188.611 127.404 46.219 1.248 89.933-13.737 126.157-41.219 41.219-37.472 37.472-88.682 37.472-143.644v-129.901c0-28.727 11.242-56.209 31.229-77.443 6.245-6.245 6.245-16.237 0-22.482-21.237-12.492-51.209-38.717-67.448-53.711v0 0zM1355.323 525.45v17.487c-61.204 0-124.909-12.492-124.909-79.938 0-34.974 18.737-57.455 51.209-57.455 24.982 1.248 47.464 14.991 58.708 36.224 12.492 24.982 17.487 53.711 14.991 83.688v0zM332.34 323.103c-4.997-4.997-13.737-4.997-19.982-2.502-18.737 14.991-34.974 34.974-47.464 56.209-33.729-41.219-84.938-63.7-138.649-59.954-71.198 0-126.157 42.469-126.157 129.901-2.502 59.954 33.729 113.665 89.933 136.146 44.964 19.982 108.67 23.732 157.384 28.727v11.242c2.502 21.237-1.248 41.219-9.99 59.954-11.242 14.991-28.727 22.482-47.464 21.237-31.229 2.502-59.954-18.737-67.448-49.964-1.248-7.492-6.245-13.737-14.991-14.991l-81.193 8.746c-7.492 1.248-12.492 9.99-11.242 17.487 18.737 98.673 107.42 127.404 187.36 127.404 46.219 1.248 89.933-12.492 126.157-41.219 41.219-37.472 37.472-88.682 37.472-143.644v-129.901c0-28.727 11.242-56.209 31.229-77.443 6.245-6.245 6.245-14.991 0-21.237v0c-17.487-14.991-48.714-41.219-64.953-56.209v0 0zM249.899 541.687c-61.204 0-124.909-12.492-124.909-79.938 0-34.974 18.737-57.455 51.209-57.455 24.982 1.248 47.464 14.991 57.455 36.224 13.737 26.227 18.737 54.959 16.237 84.938v16.237zM1098.019-47.876c-263.556-1.248-518.364 101.173-714.472 288.536-14.991 13.737-1.248 33.729 16.237 22.482 218.585-131.154 464.654-201.103 716.967-199.85 187.36 1.248 372.223 41.219 545.842 117.41 26.227 12.492 48.714-18.737 22.482-38.717-159.884-123.655-389.713-189.857-587.060-189.857zM1746.285 216.927c-19.982 26.227-136.146 12.492-188.611 6.245-16.237-1.248-18.737 12.492-3.745 22.482 92.428 66.201 243.565 47.464 261.057 24.982s-4.997-176.121-91.183-249.81c-13.737-11.242-26.227-4.997-19.982 9.99 18.737 48.714 62.456 159.884 42.469 186.111v0zM4409.307 389.304c16.237 11.242 24.982 29.977 24.982 48.714 0 12.492-4.997 26.227-13.737 34.974-14.991 12.492-33.729 21.237-52.464 26.227l-78.691 28.727c-68.701 23.732-102.423 66.201-102.423 123.655-1.248 36.224 16.237 71.198 46.219 93.683 34.974 24.982 78.691 37.472 122.41 34.974 39.974 0 79.938-7.492 117.41-19.982 6.245-1.248 11.242-4.997 16.237-8.746 3.745-4.997 4.997-11.242 4.997-17.487v-23.732c0-9.99-3.745-16.237-12.492-16.237-7.492 0-14.991 2.502-21.237 4.997-32.472 8.746-66.201 13.737-99.93 13.737-58.708 0-88.682-18.737-88.682-57.455-1.248-13.737 4.997-27.484 14.991-36.224 17.487-12.492 37.472-22.482 58.708-28.727l73.693-26.227c28.727-9.99 56.209-27.484 77.443-48.714 16.237-19.982 24.982-46.219 24.982-72.446 1.248-38.717-16.237-76.192-48.714-99.93-37.472-26.227-83.688-39.974-131.154-37.472-47.464-1.248-94.928 7.492-139.894 24.982-6.245 2.502-11.242 4.997-14.991 9.99-2.502 4.997-4.997 11.242-3.745 17.487v24.982c0 9.99 3.745 16.237 11.242 16.237 7.492-1.248 16.237-2.502 23.732-4.997 41.219-12.492 83.688-18.737 126.157-18.737 19.982-4.997 44.964 1.248 64.953 13.737v0 0zM4002.108 762.775c-1.248 8.746 4.997 17.487 13.737 18.737 1.248 0 2.502 0 3.745 0h52.464c8.746 1.248 16.237-4.997 17.487-13.737 0 0 0 0 0 0 0-1.248 0-2.502 0-4.997v-425.932c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-36.224c-4.997 0-9.99 1.248-13.737 3.745-3.745 3.745-6.245 8.746-7.492 13.737l-6.245 32.472c-48.714-39.974-108.67-61.204-172.376-63.7-36.224-2.502-72.446 11.242-98.673 36.224-23.732 28.727-36.224 66.201-33.729 103.675v318.512c-1.248 8.746 4.997 17.487 13.737 18.737 1.248 0 2.502 0 3.745 0h52.464c8.746 1.248 16.237-4.997 17.487-13.737 0-1.248 0-2.502 0-4.997v-289.786c-2.502-26.227 4.997-51.209 18.737-72.446 14.991-17.487 37.472-26.227 59.954-23.732 46.219 1.248 92.428 16.237 129.901 43.719l3.745 342.247zM3518.723 316.856c-8.746-1.248-17.487 4.997-18.737 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 4.997v294.781c1.248 23.732-3.745 47.464-17.487 67.448-13.737 14.991-33.729 23.732-54.959 21.237-47.464-1.248-93.683-14.991-133.649-41.219 0-4.997 0-8.746 0-13.737v-331.004c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-53.711c-8.746-1.248-17.487 4.997-18.737 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 4.997v297.276c1.248 23.732-3.745 47.464-17.487 67.448-13.737 14.991-33.729 23.732-54.959 21.237-47.464 0-93.683-13.737-132.402-39.974v-344.742c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0h-53.711c-8.746-1.248-17.487 4.997-17.487 13.737 0 1.248 0 2.502 0 4.997v427.183c-1.248 8.746 4.997 16.237 13.737 18.737 1.248 0 2.502 0 4.997 0h39.974c4.997 0 9.99-1.248 13.737-3.745 3.745-3.745 6.245-8.746 7.492-13.737l4.997-28.727c48.714 37.472 108.67 57.455 169.874 59.954 56.209 0 93.683-21.237 114.915-64.953 51.209 39.974 113.665 62.456 179.866 64.953 34.974 2.502 69.945-11.242 96.178-34.974 23.732-28.727 36.224-64.953 33.729-101.173v-321.015c1.248-8.746-4.997-17.487-13.737-18.737-1.248 0-2.502 0-4.997 0l-49.964-1.248zM4907.687 667.843c-22.482-24.982-33.729-66.201-33.729-122.41v-11.242c0-54.959 11.242-94.928 33.729-119.91 28.727-27.484 67.448-42.469 106.175-38.717 27.484 0 54.959 4.997 81.193 12.492 4.997 1.248 8.746 2.502 13.737 2.502 7.492 0 11.242-6.245 11.242-17.487v-23.732c0-6.245-1.248-12.492-3.745-17.487-3.745-4.997-8.746-7.492-14.991-9.99-32.472-13.737-67.448-19.982-102.423-18.737-71.198 0-124.909 19.982-162.379 61.204-37.472 39.974-56.209 99.93-56.209 176.121 0 77.443 18.737 134.902 57.455 177.364 43.719 43.719 102.423 66.201 163.629 62.456 32.472 0 64.953-6.245 94.928-17.487 4.997-1.248 9.99-4.997 13.737-8.746 2.502-4.997 4.997-11.242 3.745-18.737v-23.732c0-12.492-3.745-17.487-11.242-17.487-4.997 0-9.99 1.248-14.991 2.502-23.732 7.492-49.964 11.242-74.947 11.242-46.219-1.248-82.437-14.991-104.918-39.974v0 0zM4676.607 755.28c8.746 1.248 16.237-4.997 17.487-13.737 0-1.248 0-2.502 0-3.745v-415.942c1.248-8.746-4.997-16.237-13.737-17.487-1.248 0-2.502 0-4.997 0h-52.464c-8.746-1.248-16.237 4.997-17.487 13.737 0 0 0 0 0 0 0 1.248 0 2.502 0 3.745v415.942c-1.248 8.746 4.997 16.237 12.492 17.487 1.248 0 2.502 0 4.997 0h53.711zM4691.6 928.9c19.982-23.732 19.982-58.708 0-82.437-23.732-19.982-58.708-19.982-82.437 0-19.982 23.732-19.982 58.708 0 82.437 23.732 19.982 58.708 19.982 82.437 0z" />
71
+ <glyph unicode="&#xe93d;" glyph-name="amzn" horiz-adv-x="1206" d="M341.49 226.39c19.355-16.609 42.326-28.865 66.771-36.098 20.226-7.032 41.723-9.175 63.021-10.314 31.544 0.067 63.556 0.804 94.296 8.572 28.865 6.764 55.922 19.958 80.299 36.701 22.302 15.872 42.46 34.557 61.949 53.711 9.242-13.193 17.948-26.722 27.592-39.647 13.863-18.149 30.539-33.955 48.086-48.421 5.96-5.291 14.6-7.099 22.369-6.027 7.367 0.938 13.327 5.894 18.752 10.582 33.352 29.535 67.508 58.132 101.529 86.929 9.711 8.238 7.836 23.239 1.205 32.816-8.505 11.988-17.614 23.641-25.851 35.897-11.653 17.011-20.493 36.165-24.311 56.524-4.353 20.694-3.349 41.924-3.483 62.954 0 63.757 0 127.447 0 191.205 0.067 33.687 0.737 67.508-2.411 101.128-2.813 29.468-9.778 59.002-24.177 85.121-16.207 29.736-41.991 53.444-71.191 70.187-19.623 11.586-41.188 19.288-62.82 25.985-43.264 12.189-88.604 16.676-133.408 13.863-27.258-1.005-54.448-4.889-80.902-10.916-49.492-11.72-97.913-33.486-134.613-69.45-35.16-33.687-58.132-79.295-66.302-127.113-1.674-7.903 0.603-16.81 6.965-22.034 4.621-3.616 10.247-6.563 16.274-6.965 40.585-4.42 81.17-9.041 121.822-13.060 4.353-0.469 8.84-1.741 13.126 0 10.916 3.081 17.614 13.796 19.824 24.378 3.75 18.484 12.39 36.098 25.784 49.492 20.493 20.493 49.559 31.075 78.223 31.745 25.315 1.607 52.104-4.956 71.727-21.632 16.609-14.064 24.713-35.562 27.191-56.725 2.947-24.378 1.406-48.956 1.741-73.468-58.667-6.429-117.804-10.515-175.734-22.436-38.174-7.769-76.214-18.752-110.303-37.973-31.544-17.748-59.739-42.125-80.098-72.196-25.114-36.232-37.973-80.031-39.848-123.831-0.469-32.347 1.942-65.231 12.189-96.105 10.314-32.013 28.865-61.614 54.716-83.38zM475.701 429.918c2.009 28.262 12.926 56.658 33.821 76.281 19.958 19.489 46.612 30.338 73.267 37.035 31.879 7.702 64.829 9.51 97.578 9.979-0.134-33.821 1.339-67.776-2.411-101.395-2.88-26.186-11.184-51.702-24.378-74.54-10.849-18.618-25.918-34.825-44.335-46.144-18.417-10.381-39.915-16.274-61.078-13.193-24.445 1.808-46.88 17.011-58.6 38.308-12.591 22.235-15.002 48.555-13.863 73.669zM1205.159 182.256c-0.804 4.353-1.875 9.376-6.027 11.854-12.323 7.769-27.124 10.18-41.322 12.122-21.096 2.813-42.594 3.215-63.757 1.005-31.142-3.014-62.418-10.113-89.876-25.047-7.233-4.152-14.801-8.104-20.56-14.198-3.148-3.215-4.621-9.242-0.737-12.457 3.282-2.009 7.434-1.339 11.117-1.072 27.525 3.282 55.118 6.563 82.911 6.898 15.337 0.804 30.74 0.134 45.943-2.21 6.965-1.473 14.131-3.416 19.891-7.769 6.228-4.889 6.965-13.528 7.032-20.828-0.402-16.81-4.688-33.151-9.309-49.224-7.903-26.521-17.815-52.372-28.128-78.089-1.54-4.353-4.152-9.175-2.076-13.863 1.473-3.215 5.626-3.349 8.639-3.014 5.425 1.005 9.175 5.492 13.060 8.974 20.627 18.819 36.366 42.527 47.952 67.843 11.586 24.646 19.623 50.966 23.909 77.888 2.009 13.595 3.416 27.525 1.339 41.188zM1072.889 117.561c-38.643-15.471-77.553-30.539-117.469-42.393-62.351-18.35-125.84-33.084-190.401-40.987-78.826-10.849-158.79-12.591-238.085-6.831-33.352 2.344-66.503 6.764-99.52 11.586-17.681 2.545-35.227 6.496-52.841 9.778-31.41 5.827-62.217 14.265-93.024 22.57-88.872 26.119-175.265 61.413-255.565 107.758-5.827 3.215-12.457 7.903-19.288 4.688-4.152-2.009-6.094-6.898-4.956-11.184 0.938-5.224 5.693-8.305 9.309-11.653 85.657-76.415 186.249-135.886 294.676-173.658 29.066-10.782 59.136-18.417 89.14-26.186 48.019-11.117 96.908-18.082 146.066-21.766 34.491-1.808 69.115-3.148 103.672-0.804 34.29 1.005 68.378 5.96 102.266 10.983 72.062 12.39 142.985 32.213 210.091 61.413 46.478 19.757 90.814 44.603 131.801 74.138 6.764 4.42 13.193 12.256 10.849 20.895-2.813 11.050-16.743 15.604-26.722 11.653z" />
71
72
  <glyph unicode="&#xe941;" glyph-name="spotify" d="M512 960c-281.6 0-512-230.4-512-512s230.4-512 512-512 512 230.4 512 512-227.84 512-512 512zM747.562 220.16c-10.24-15.318-28.16-20.48-43.562-10.24-120.32 74.24-271.36 89.644-450.604 48.682-17.836-5.206-33.236 7.636-38.356 22.996-5.12 17.962 7.68 33.28 23.040 38.4 194.56 43.562 363.52 25.6 496.64-56.32 17.92-7.68 20.438-28.116 12.842-43.52zM809.004 360.96c-12.842-17.92-35.884-25.6-53.846-12.8-138.198 84.48-348.118 110.080-509.396 58.88-20.438-5.12-43.52 5.12-48.64 25.6s5.12 43.562 25.6 48.682c186.88 56.276 417.28 28.074 576-69.164 15.404-7.722 23.040-33.28 10.284-51.2zM814.124 504.32c-163.884 97.28-437.802 107.52-593.962 58.836-25.6-7.638-51.2 7.724-58.88 30.762-7.68 25.644 7.68 51.2 30.72 58.924 181.76 53.76 481.28 43.52 670.764-69.164 22.996-12.8 30.678-43.52 17.876-66.56-12.756-17.964-43.52-25.558-66.518-12.8z" />
72
73
  <glyph unicode="&#xe942;" glyph-name="podcast" d="M509.026-64.001s112.341 0 112.341 332.548c0 61.909-50.347 112.343-112.343 112.343s-112.385-50.433-112.385-112.343c0-332.548 112.385-332.548 112.385-332.548zM646.842 49.323c4.908 19.072 8.746 38.23 11.732 57.645l2.26 15.36c4.908 2.134 9.812 4.182 14.764 6.4 77.997 35.328 143.66 95.703 185.516 170.37 19.072 34.26 33.152 71.255 41.515 109.741 9.684 43.009 12.16 87.851 7.082 131.756-4.48 41.089-15.404 81.237-32.852 118.914-19.84 44.333-47.405 84.737-82.093 118.786-35.328 35.284-77.101 64.213-122.67 84.139-46.849 21.162-98.261 32.084-150.19 33.364-52.053 1.28-104.023-7.082-152.834-25.728-46.849-17.876-89.857-44.247-127.106-78.253-35.284-32.086-65.451-71.253-87.297-114.261-18.646-36.608-31.402-75.777-38.485-116.182-7.082-41.773-7.082-84.737-0.684-127.148 5.76-37.206 16.682-73.813 32.768-108.501 37.888-80.257 102.101-146.946 181.676-187.478 9.644-4.438 19.242-8.96 29.524-13.398 0.64-5.164 1.964-10.924 2.56-16.726 3.2-18.688 7.084-37.932 11.562-56.535-17.322 5.802-34.688 12.246-51.371 19.968-91.821 41.645-169.474 113.579-217.647 202.839-21.844 40.405-37.248 83.415-46.849 128.43-10.966 49.409-12.884 101.419-6.4 152.152 6.4 47.445 19.884 94.337 39.809 137.39 23.722 50.689 57.133 97.537 96.897 136.706 39.083 39.083 87.893 71.851 141.23 94.337 55.597 23.338 115.33 35.84 175.406 36.564 60.247 0.64 120.492-10.24 176.598-32.342 54.017-21.248 103.851-52.821 146.348-92.417 41.175-38.188 75.093-83.713 100.097-133.934 21.164-42.369 35.924-88.577 43.009-135.468 7.68-48.811 7.68-98.859-0.682-147.030-7.082-44.929-21.846-89.217-41.771-130.262-44.929-90.539-119.426-165.036-209.923-210.007-22.486-10.924-46.251-20.524-70.615-28.202l-0.896-0.98zM669.030 232.579l0.428 20.052c0 13.482 0 26.966-1.962 40.237-0.64 5.164-1.92 9.644-3.2 14.764 23.764 19.244 43.649 43.649 58.413 71.255 10.924 20.524 19.244 43.009 23.764 66.177 5.164 25.686 6.4 52.609 2.602 79.573-3.158 23.764-9.684 46.849-19.244 68.693-12.16 26.284-28.884 50.689-49.409 71.253-21.206 20.524-44.973 37.204-71.937 49.451-29.524 12.8-61.655 20.48-93.741 21.164-32.084 0.64-64.855-5.164-95.021-16.724-26.964-10.924-52.013-26.324-73.813-46.209-21.888-19.882-39.851-43.009-52.693-69.291-10.964-21.164-18.604-43.691-23.126-67.415-4.48-24.406-5.076-49.453-1.92-73.813 3.2-23.766 9.642-46.893 19.242-68.653 14.762-32.768 36.564-61.655 63.573-85.419l-3.882-17.322c-2.56-13.482-1.92-26.326-1.92-40.405v-18.004c-44.973 27.562-82.219 67.415-107.223 113.621-14.806 26.326-25.046 54.573-30.848 84.141-7.082 32.768-8.32 66.731-3.84 100.141 3.84 30.166 12.204 59.693 24.406 86.701 14.764 33.322 36.564 64.171 62.251 90.497 26.324 26.324 57.131 47.489 90.497 62.253 37.248 16.682 77.655 25.686 118.146 26.966 41.131 0.682 82.219-6.4 120.022-21.204 34.688-13.44 66.177-33.324 93.741-58.369 26.924-25.046 50.093-54.529 66.731-87.339 13.482-26.964 23.764-55.851 28.928-85.377 5.164-30.848 6.4-62.251 1.92-93.099-3.84-30.166-12.16-59.691-25.088-87.297-25.004-55.895-68.011-104.021-120.662-135.512l4.864 4.524zM509.026 641.117c62.509 0 113.239-50.689 113.239-113.323 0-62.849-50.731-113.581-113.237-113.581-62.593 0-113.281 50.731-113.281 112.981s50.689 113.025 113.281 113.025v0.896z" />
73
74
  <glyph unicode="&#xe943;" glyph-name="deezer" d="M627.925 162.326h186.668v56.534h-186.752v-56.534h0.086zM209.368 162.326h186.582v56.534h-186.624v-56.534h0.17zM0.002 162.326h186.668v56.534h-186.668v-56.534zM418.561 162.326h186.88v56.534h-186.88v-56.534zM837.332 162.326h186.668v56.534h-186.668v-56.534zM837.332 235.883h186.668v56.32h-186.668v-56.746zM418.605 235.883h187.306v56.32h-187.348v-56.746zM0.044 235.883h186.88v56.32h-186.924v-56.746zM209.538 235.883h186.88v56.32h-186.924v-57.174l0.086 0.428zM628.949 235.883h186.88v56.32h-187.732v-57.174l0.726 0.428zM628.949 309.271h186.88v56.32h-187.732v-56.746h0.726zM210.606 309.271h186.026v56.32h-187.136v-56.746h0.682zM1.282 309.271h186.026v56.32h-187.306v-56.746h0.684zM419.841 309.271h186.88v56.32h-187.734v-56.746h0.682zM839.040 309.271h184.96v56.32h-186.668v-56.746h1.152zM839.040 382.657h184.96v56.788h-186.668v-56.576h1.152zM420.481 382.657h186.154v56.788h-187.734v-56.576h1.408zM1.922 382.657h185.812v56.788h-187.734v-56.576h1.28zM630.401 382.657h186.88v56.788h-189.014v-56.576h1.876zM630.401 456.043h186.88v56.748h-189.014v-56.32h1.876zM1.922 456.043h185.812v56.32h-187.734v-56.32h1.28zM420.481 456.043h186.88v56.32h-188.8v-56.32h1.366zM839.040 456.043h184.96v56.748h-186.668v-56.662l1.152 0.084zM418.561 529.899h186.88v56.576h-186.88v-56.576zM837.332 529.983h186.668v56.534h-186.668v-56.534zM418.561 603.499h186.88v56.62h-186.88v-56.62zM837.332 603.499h186.668v56.62h-186.668v-56.62zM837.332 677.099h186.668v56.576h-186.668v-56.576z" />
Binary file
Binary file
@@ -0,0 +1,28 @@
1
+ @font-face {
2
+ font-family: "Montserrat";
3
+ src: local("Montserrat"),
4
+ url("/css/fonts/montserrat/Montserrat-Regular.ttf") format("truetype");
5
+ font-weight: 400;
6
+ font-style: normal;
7
+ }
8
+ @font-face {
9
+ font-family: "Montserrat";
10
+ src: local("Montserrat"),
11
+ url("/css/fonts/montserrat/Montserrat-Medium.ttf") format("truetype");
12
+ font-weight: 500;
13
+ font-style: normal;
14
+ }
15
+ @font-face {
16
+ font-family: "Montserrat";
17
+ src: local("Montserrat"),
18
+ url("/css/fonts/montserrat/Montserrat-SemiBold.ttf") format("truetype");
19
+ font-weight: 600;
20
+ font-style: normal;
21
+ }
22
+ @font-face {
23
+ font-family: "Montserrat";
24
+ src: local("Montserrat"),
25
+ url("/css/fonts/montserrat/Montserrat-Bold.ttf") format("truetype");
26
+ font-weight: 700;
27
+ font-style: normal;
28
+ }
@@ -1,10 +1,10 @@
1
1
  @font-face {
2
2
  font-family: 'icomoon';
3
- src: url('/css/fonts/icomoon.eot?547pif');
4
- src: url('/css/fonts/icomoon.eot?547pif#iefix') format('embedded-opentype'),
5
- url('/css/fonts/icomoon.ttf?547pif') format('truetype'),
6
- url('/css/fonts/icomoon.woff?547pif') format('woff'),
7
- url('/css/fonts/icomoon.svg?547pif#icomoon') format('svg');
3
+ src: url('/css/fonts/icomoon.eot?k132tz');
4
+ src: url('/css/fonts/icomoon.eot?k132tz#iefix') format('embedded-opentype'),
5
+ url('/css/fonts/icomoon.ttf?k132tz') format('truetype'),
6
+ url('/css/fonts/icomoon.woff?k132tz') format('woff'),
7
+ url('/css/fonts/icomoon.svg?k132tz#icomoon') format('svg');
8
8
  font-weight: normal;
9
9
  font-style: normal;
10
10
  font-display: block;
@@ -25,6 +25,9 @@
25
25
  -moz-osx-font-smoothing: grayscale;
26
26
  }
27
27
 
28
+ .saooti-amzn:before {
29
+ content: "\e93d";
30
+ }
28
31
  .saooti-instagram:before {
29
32
  content: "\e938";
30
33
  }
@@ -105,6 +105,15 @@ input:not([class^="vs__"]), button:not([class^="vs__"]), select:not([class^="vs_
105
105
  @media (max-width: 600px) {
106
106
  margin: 0 1rem 1rem 0;
107
107
  }
108
+ @media (max-width: 500px) {
109
+ margin: 0 0.6rem 1rem 0;
110
+ font-size: 0.8rem;
111
+ }
112
+ @media (max-width: 380px) {
113
+ margin: 0 0.4rem 0.7rem 0;
114
+ font-size: 0.7rem;
115
+ }
116
+
108
117
  position: relative;
109
118
  &:after {
110
119
  bottom: 0;
@@ -6,7 +6,7 @@ html{
6
6
  body{
7
7
  margin: 0;
8
8
  color: #353535;
9
- font-family: Montserrat,sans-serif,Helvetica Neue;
9
+ font-family: "Montserrat",sans-serif,Helvetica Neue;
10
10
  font-size: 0.8rem;
11
11
  overflow-x: hidden;
12
12
  background: #ebebeb;
@@ -286,7 +286,7 @@
286
286
  background: #00000030;
287
287
  }
288
288
  .saooti-play {
289
- font-size: 1.2rem;
289
+ font-size: 1.4rem;
290
290
  position: relative;
291
291
  color: white;
292
292
  }
@@ -112,7 +112,7 @@ export default defineComponent({
112
112
  },
113
113
  methods: {
114
114
  initAuthenticatedName():void{
115
- if (!state.generalParameters.authenticated) { return; }
115
+ if (!this.authProfile?.userId) { return; }
116
116
  this.name = (`${this.authProfile?.firstname||''} ${this.authProfile?.lastname||''}`).trim();
117
117
  this.isVerify = true;
118
118
  },
@@ -167,9 +167,6 @@ export default defineComponent({
167
167
  state.generalParameters.organisationId === this.podcastOrga) ||
168
168
  true === state.generalParameters.isAdmin;
169
169
  },
170
- userId(): string|undefined {
171
- return state.generalParameters.authenticated ? this.authProfile?.userId : undefined;
172
- },
173
170
  phase(): string|undefined {
174
171
  if(undefined === this.podcast){
175
172
  return this.comment ? this.comment.phase : undefined;
@@ -272,7 +269,7 @@ export default defineComponent({
272
269
  organisationId: this.podcastOrga,
273
270
  commentIdReferer:this.comment?.comId,
274
271
  certified: this.isCertified,
275
- userId: this.userId,
272
+ userId: this.authProfile?.userId,
276
273
  phase: this.phase,
277
274
  };
278
275
  try {
@@ -138,6 +138,7 @@ export default defineComponent({
138
138
  word-break: break-word;
139
139
  max-height: 3rem;
140
140
  position: relative;
141
+ text-align: center;
141
142
  &.after-participant-description:after {
142
143
  content: '...';
143
144
  position: absolute;
@@ -125,9 +125,6 @@ export default defineComponent({
125
125
  this.playerLive?.conferenceId ===this.fetchConference.conferenceId)
126
126
  );
127
127
  },
128
- authenticated(): boolean {
129
- return (state.generalParameters.authenticated as boolean);
130
- },
131
128
  mainRubrique(): boolean{
132
129
  return undefined!==state.podcastPage.mainRubrique && 0!==state.podcastPage.mainRubrique && (this.podcast?.rubriqueIds?.includes(state.podcastPage.mainRubrique) as boolean);
133
130
  },
@@ -157,7 +154,7 @@ export default defineComponent({
157
154
  false !== this.podcast.valid &&
158
155
  ('READY_TO_RECORD' === this.podcast.processingStatus ||
159
156
  'READY' === this.podcast.processingStatus ||
160
- ('PROCESSING' === this.podcast.processingStatus && !this.authenticated)) &&
157
+ ('PROCESSING' === this.podcast.processingStatus && !(state.generalParameters.authenticated as boolean))) &&
161
158
  !this.isLiveToBeRecorded && undefined!==this.podcast.availability.visibility
162
159
  && this.podcast.availability.visibility
163
160
  );
@@ -1,4 +1,5 @@
1
1
  <template>
2
+ <div>
2
3
  <div class="text-secondary h6 ms-2">
3
4
  {{ date }}
4
5
  </div>
@@ -40,6 +41,7 @@
40
41
  {{ '© ' + orgaNameDisplay }}
41
42
  </router-link>
42
43
  </div>
44
+ </div>
43
45
  </template>
44
46
 
45
47
  <script lang="ts">
@@ -94,7 +96,7 @@ export default defineComponent({
94
96
  <style lang="scss">
95
97
  .octopus-app{
96
98
  .title-podcast-item {
97
- font-weight: 400;
99
+ font-weight: 700;
98
100
  margin: 0.25rem 0.5rem 0.5rem;
99
101
  overflow: hidden;
100
102
  display: -webkit-box;
@@ -20,15 +20,13 @@
20
20
  :is-fixed="true"
21
21
  />
22
22
  </div>
23
- <div class="d-flex align-items-center justify-content-between">
24
- <ShareButtonsIntern
25
- :podcast="podcast"
26
- :emission="emission"
27
- :playlist="playlist"
28
- :participant-id="participantId"
29
- :organisation-id="organisationId"
30
- />
31
- </div>
23
+ <ShareButtonsIntern
24
+ :podcast="podcast"
25
+ :emission="emission"
26
+ :playlist="playlist"
27
+ :participant-id="participantId"
28
+ :organisation-id="organisationId"
29
+ />
32
30
  </div>
33
31
  </template>
34
32
 
@@ -1,121 +1,125 @@
1
1
  <template>
2
- <div class="d-flex flex-column me-2">
3
- <div class="h4 mb-2">
4
- {{ $t('Social networks') }}
5
- </div>
6
- <div class="d-flex align-items-center">
7
- <template
8
- v-for="button in arrayShareButtons"
9
- :key="button.title"
10
- >
11
- <a
12
- v-if="button.condition"
13
- rel="noopener"
14
- target="_blank"
15
- :href="button.url"
16
- :class="getClass(button.className)"
17
- class="me-2"
18
- :title="button.title"
2
+ <div class="d-flex align-items-center justify-content-between">
3
+ <div class="d-flex flex-column me-2" v-if="!isGarStudent">
4
+ <div class="h4 mb-2">
5
+ {{ $t('Social networks') }}
6
+ </div>
7
+ <div class="d-flex align-items-center">
8
+ <template
9
+ v-for="button in arrayShareButtons"
10
+ :key="button.title"
19
11
  >
20
- <div :class="button.icon" />
21
- </a>
22
- </template>
12
+ <a
13
+ v-if="button.condition"
14
+ rel="noopener"
15
+ target="_blank"
16
+ :href="button.url"
17
+ :class="getClass(button.className)"
18
+ class="me-2"
19
+ :title="button.title"
20
+ >
21
+ <div :class="button.icon" />
22
+ </a>
23
+ </template>
24
+ </div>
23
25
  </div>
24
- </div>
25
- <div
26
- v-if="podcast || emission ||playlist"
27
- class="d-flex flex-column me-2"
28
- >
29
- <div class="h4 mb-2">
30
- {{ $t('Newsletter') }}
26
+ <div
27
+ v-if="podcast || emission ||playlist"
28
+ class="d-flex flex-column me-2"
29
+ >
30
+ <div class="h4 mb-2">
31
+ {{ $t('Newsletter') }}
32
+ </div>
33
+ <div class="d-flex align-items-center justify-content-center">
34
+ <button
35
+ :class="getClass()"
36
+ class="saooti-newsletter"
37
+ :title="$t('Share newsletter')"
38
+ @click="newsletter = true"
39
+ />
40
+ </div>
31
41
  </div>
32
- <div class="d-flex align-items-center justify-content-center">
33
- <button
34
- :class="getClass()"
35
- class="saooti-newsletter"
36
- :title="$t('Share newsletter')"
37
- @click="newsletter = true"
38
- />
39
- </div>
40
- </div>
41
42
 
42
- <div class="d-flex flex-column me-2">
43
- <div class="h4 mb-2">
44
- {{ $t('QR Code') }}
43
+ <div class="d-flex flex-column me-2">
44
+ <div class="h4 mb-2">
45
+ {{ $t('QR Code') }}
46
+ </div>
47
+ <div class="d-flex align-items-center justify-content-center">
48
+ <button
49
+ :class="getClass()"
50
+ :title="$t('Share QR Code')"
51
+ class="saooti-qrcode"
52
+ @click="qrCode = true"
53
+ />
54
+ </div>
45
55
  </div>
46
- <div class="d-flex align-items-center justify-content-center">
47
- <button
48
- :class="getClass()"
49
- :title="$t('Share QR Code')"
50
- class="saooti-qrcode"
51
- @click="qrCode = true"
52
- />
53
- </div>
54
- </div>
55
56
 
56
- <div class="d-flex flex-column me-2">
57
- <div class="h4 mb-2">
58
- {{ $t('Copy this page URL') }}
57
+ <div class="d-flex flex-column me-2">
58
+ <div class="h4 mb-2">
59
+ {{ $t('Copy this page URL') }}
60
+ </div>
61
+ <div class="d-flex align-items-center justify-content-center">
62
+ <button
63
+ :class="getClass()"
64
+ class="saooti-link"
65
+ :title="$t('Copy this page URL')"
66
+ @click="onCopyCode(urlPage,afterCopy)"
67
+ />
68
+ </div>
59
69
  </div>
60
- <div class="d-flex align-items-center justify-content-center">
61
- <button
62
- :class="getClass()"
63
- class="saooti-link"
64
- :title="$t('Copy this page URL')"
65
- @click="onCopyCode(urlPage,afterCopy)"
66
- />
67
- </div>
68
- </div>
69
70
 
70
- <div
71
- v-if="''!==rssUrl && displayRss"
72
- class="d-flex flex-column me-2"
73
- >
74
- <div class="h4 mb-2">
75
- {{ $t('Rss feed') }}
76
- </div>
77
- <div class="d-flex align-items-center justify-content-center">
78
- <a
79
- rel="noopener"
80
- target="_blank"
81
- class="saooti-rss"
82
- :class="getClass()"
83
- :href="rssUrl"
84
- :title="titleRssButton"
85
- @click.prevent="openPopup()"
86
- />
71
+ <div
72
+ v-if="''!==rssUrl && displayRss"
73
+ class="d-flex flex-column me-2"
74
+ >
75
+ <div class="h4 mb-2">
76
+ {{ $t('Rss feed') }}
77
+ </div>
78
+ <div class="d-flex align-items-center justify-content-center">
79
+ <a
80
+ rel="noopener"
81
+ target="_blank"
82
+ class="saooti-rss"
83
+ :class="getClass()"
84
+ :href="rssUrl"
85
+ :title="titleRssButton"
86
+ @click.prevent="openPopup()"
87
+ />
88
+ </div>
87
89
  </div>
88
- </div>
89
-
90
90
 
91
- <ClipboardModal
92
- v-if="dataRSSSave"
93
- :link="rssUrl"
94
- :emission="emission"
95
- @close="dataRSSSave = false"
96
- @copy="afterCopy"
97
- />
98
- <NewsletterModal
99
- v-if="newsletter"
100
- :closable="true"
101
- :podcast="podcast"
102
- :emission="emission"
103
- :playlist="playlist"
104
- @close="newsletter = false"
105
- />
106
- <QrCodeModal
107
- v-if="qrCode"
108
- :closable="true"
109
- :url-page="urlPage"
110
- @close="qrCode = false"
111
- />
112
- <Snackbar
113
- ref="snackbar"
114
- position="bottom-left"
115
- />
91
+
92
+ <ClipboardModal
93
+ v-if="dataRSSSave"
94
+ :link="rssUrl"
95
+ :emission="emission"
96
+ @close="dataRSSSave = false"
97
+ @copy="afterCopy"
98
+ />
99
+ <NewsletterModal
100
+ v-if="newsletter"
101
+ :closable="true"
102
+ :podcast="podcast"
103
+ :emission="emission"
104
+ :playlist="playlist"
105
+ @close="newsletter = false"
106
+ />
107
+ <QrCodeModal
108
+ v-if="qrCode"
109
+ :closable="true"
110
+ :url-page="urlPage"
111
+ @close="qrCode = false"
112
+ />
113
+ <Snackbar
114
+ ref="snackbar"
115
+ position="bottom-left"
116
+ />
117
+ </div>
116
118
  </template>
117
119
 
118
120
  <script lang="ts">
121
+ import { useAuthStore } from '@/stores/AuthStore';
122
+ import { mapState } from 'pinia';
119
123
  import octopusApi from '@saooti/octopus-api';
120
124
  import { Emission } from '@/stores/class/general/emission';
121
125
  import { Podcast } from '@/stores/class/general/podcast';
@@ -155,6 +159,7 @@ export default defineComponent({
155
159
  };
156
160
  },
157
161
  computed: {
162
+ ...mapState(useAuthStore, ['isGarStudent']),
158
163
  titleRssButton(): string{
159
164
  if(this.participantId){
160
165
  return this.$t('Subscribe to this participant');
@@ -65,7 +65,7 @@ export default defineComponent({
65
65
  computed:{
66
66
  platformShare(){
67
67
  return [
68
- {url:this.getUrl('amazon'), icon:'saooti-amazon-music', title:'Amazon Music | Podcasters'},
68
+ {url:this.getUrl('amazon'), icon:'saooti-amzn', title:'Amazon Music | Podcasters'},
69
69
  {url:this.getUrl('apple'), icon:'saooti-apple', title:'Apple Podcast / iTunes'},
70
70
  {url:this.getUrl('deezer'), icon:'saooti-deezer', title:'Deezer'},
71
71
  {url:this.getUrl('googlePodcasts'), icon:'saooti-google-podcasts', title:'Google Podcasts'},
@@ -35,7 +35,7 @@ export default defineComponent({
35
35
  computed:{
36
36
  subscriptionsDisplay(){
37
37
  const sub = [
38
- {name : 'amazon', icon : 'saooti-amazon-music',title:'Amazon Music | Podcasters', url : this.getUrl('amazon')},
38
+ {name : 'amazon', icon : 'saooti-amzn',title:'Amazon Music | Podcasters', url : this.getUrl('amazon')},
39
39
  {name:'applePodcast', icon:'saooti-apple', title:'Apple Podcast | iTunes', url : this.getUrl('applePodcast')},
40
40
  {name:'deezer', icon:'saooti-deezer', title:'Deezer', url : this.getUrl('deezer')},
41
41
  {name:'googlePodcasts', icon:"saooti-google-podcasts",title:'Google Podcasts', url : this.getUrl('googlePodcasts')},
@@ -19,6 +19,7 @@
19
19
  :disabled="isDisabled"
20
20
  :loading="isLoading"
21
21
  :placeholder="placeholder"
22
+ :filter="fakeSearch"
22
23
  :selectable="()=>!maxOptionsSelected"
23
24
  @open="onSearch"
24
25
  @search="onSearch"
@@ -135,6 +136,9 @@ import vSelect from "vue-select";
135
136
  },
136
137
 
137
138
  methods:{
139
+ fakeSearch():Array<unknown>{
140
+ return this.options;
141
+ },
138
142
  onSearch(search: string): void{
139
143
  if(search && search.length < this.minSearchLength){return;}
140
144
  this.isLoading = true;
@@ -0,0 +1,26 @@
1
+ <template>
2
+ <img
3
+ width="44"
4
+ height="44"
5
+ class="acpm_image"
6
+ src="/img/ACPM.webp"
7
+ :title="$t('Octopus is ACPM Podcast accredited')"
8
+ :alt="$t('Octopus is ACPM Podcast accredited')"
9
+ >
10
+ </template>
11
+
12
+ <script lang="ts">
13
+ import { defineComponent } from 'vue'
14
+ export default defineComponent({
15
+ name: 'AcpmImage',
16
+ })
17
+ </script>
18
+
19
+ <style lang="scss">
20
+ .octopus-app{
21
+ .acpm_image {
22
+ width: 44px;
23
+ height: 44px;
24
+ }
25
+ }
26
+ </style>
@@ -6,15 +6,15 @@
6
6
  >
7
7
  <div
8
8
  v-if="!isPodcastmaker"
9
- class="d-flex align-items-center px-1"
9
+ class="d-flex flex-column px-1"
10
10
  >
11
- <div class="text-dark me-2">
11
+ <div class="text-dark my-1 special-select-align-magic-trick">
12
12
  &copy; Saooti 2019
13
13
  </div>
14
14
  <router-link
15
15
  v-for="link in routerLinkSecondArray"
16
16
  :key="link.routeName"
17
- class="link-hover me-2"
17
+ class="link-hover my-1 special-select-align-magic-trick"
18
18
  :to="link.routeName"
19
19
  >
20
20
  {{ link.title }}
@@ -31,6 +31,7 @@
31
31
  {title:'Français', value:'fr'},
32
32
  {title:'Italiano', value:'it'},
33
33
  {title:'Slovenščina', value:'sl'}]"
34
+ class="mb-2"
34
35
  />
35
36
  </div>
36
37
  <a
@@ -45,20 +46,16 @@
45
46
  <div class="hosted-by">
46
47
  {{ $t('Hosted by') }}<span class="ms-1 me-1 text-primary">Saooti</span>
47
48
  </div>
49
+
50
+ <AcpmImage v-if="isGarRole"/>
48
51
  <a
52
+ v-else
49
53
  href="https://www.acpm.fr/L-ACPM/Certifications-et-Labels/Les-Podcasts"
50
54
  rel="noopener"
51
55
  target="_blank"
52
56
  :title="$t('Octopus is ACPM Podcast accredited')"
53
57
  >
54
- <img
55
- width="44"
56
- height="44"
57
- class="acpm_image"
58
- src="/img/ACPM.webp"
59
- :title="$t('Octopus is ACPM Podcast accredited')"
60
- :alt="$t('Octopus is ACPM Podcast accredited')"
61
- >
58
+ <AcpmImage/>
62
59
  </a>
63
60
  </div>
64
61
  </div>
@@ -67,11 +64,13 @@
67
64
  <script lang="ts">
68
65
  import cookies from '../mixins/cookies';
69
66
  import ClassicSelect from '../form/ClassicSelect.vue';
67
+ import AcpmImage from './AcpmImage.vue';
70
68
  import { state } from '../../stores/ParamSdkStore';
71
69
  import {loadLocaleMessages} from '@/i18n';
72
70
  import octopusApi from '@saooti/octopus-api';
73
71
  import { useFilterStore } from '@/stores/FilterStore';
74
72
  import { useGeneralStore } from '@/stores/GeneralStore';
73
+ import { useAuthStore } from '@/stores/AuthStore';
75
74
  import { mapState, mapActions } from 'pinia';
76
75
  import { Category } from '@/stores/class/general/category';
77
76
  import { RubriquageFilter } from '@/stores/class/rubrique/rubriquageFilter';
@@ -79,7 +78,8 @@ import { defineComponent } from 'vue'
79
78
  export default defineComponent({
80
79
  name: 'Footer',
81
80
  components: {
82
- ClassicSelect
81
+ ClassicSelect,
82
+ AcpmImage
83
83
  },
84
84
 
85
85
  mixins:[cookies],
@@ -91,11 +91,16 @@ export default defineComponent({
91
91
  computed: {
92
92
  ...mapState(useGeneralStore, ['storedCategories', 'platformEducation']),
93
93
  ...mapState(useFilterStore, ['filterRubrique', 'filterOrgaId', 'filterIab']),
94
+ ...mapState(useAuthStore, ['isGarRole']),
94
95
  routerLinkSecondArray(){
95
- return [
96
+ const links = [
96
97
  {title : this.$t('Contact'), routeName: '/main/pub/contact'},
97
- {title : this.$t('Term of use'), routeName: '/main/pub/cgu'},
98
- {title : this.$t('Used libraries'), routeName: "/main/pub/libraries"}]
98
+ {title : this.$t('Term of use'), routeName: '/main/pub/cgu'}];
99
+
100
+ if(!this.isGarRole){
101
+ links.push({title : this.$t('Used libraries'), routeName: "/main/pub/libraries"});
102
+ }
103
+ return links;
99
104
  },
100
105
  isPodcastmaker(): boolean {
101
106
  return (state.generalParameters.podcastmaker as boolean);
@@ -153,13 +158,12 @@ export default defineComponent({
153
158
  z-index: 10;
154
159
  background: white;
155
160
  padding: 0 2rem;
156
- .acpm_image {
157
- width: 44px;
158
- height: 44px;
159
- }
160
161
  a{
161
162
  color: #666;
162
163
  }
164
+ .special-select-align-magic-trick{
165
+ margin-left: 0.16rem;
166
+ }
163
167
  }
164
168
  }
165
169
  </style>
@@ -3,13 +3,13 @@
3
3
  class="d-flex align-items-center"
4
4
  >
5
5
  <router-link
6
- v-if="authenticated"
6
+ v-if="isAuthenticatedWithOrga"
7
7
  :title="$t('My space')"
8
8
  to="/main/priv/backoffice"
9
9
  class="btn admin-button hide-smallest-screen m-1 saooti-admin-menu"
10
10
  />
11
11
  <router-link
12
- v-if="isContribution"
12
+ v-if="isAuthenticatedWithOrga && isContribution"
13
13
  :title="$t('Upload')"
14
14
  to="/main/priv/upload"
15
15
  class="btn admin-button hide-smallest-screen m-1 saooti-upload"
@@ -25,7 +25,7 @@
25
25
  :is-fixed="true"
26
26
  :left-pos="true"
27
27
  >
28
- <template v-if="!authenticated">
28
+ <template v-if="!isAuthenticated">
29
29
  <a
30
30
  class="octopus-dropdown-item"
31
31
  href="/sso/login"
@@ -54,7 +54,7 @@
54
54
  {{ routerBack.title }}
55
55
  </router-link>
56
56
  </template>
57
- <template v-if="!isEducation">
57
+ <template v-if="helpLinks.length">
58
58
  <hr>
59
59
  <template
60
60
  v-for="helpLink in helpLinks"
@@ -106,11 +106,12 @@ export default defineComponent({
106
106
  isEducation: { default: false, type: Boolean},
107
107
  },
108
108
  computed: {
109
- ...mapState(useAuthStore, ['authProfile']),
109
+ ...mapState(useAuthStore, ['authProfile', 'isGarRole']),
110
110
  organisationsAvailable(): Array<Organisation>{
111
111
  return this.authProfile.organisations?? [];
112
112
  },
113
113
  helpLinks(){
114
+ if(this.isGarRole || this.isEducation){return [];}
114
115
  return [
115
116
  {title:this.$t('Help'), href:'https://help.octopus.saooti.com/Aide/'},
116
117
  {title:this.$t('TutoMag'),href:"https://help.octopus.saooti.com/"}];
@@ -118,13 +119,15 @@ export default defineComponent({
118
119
  routerBackoffice(){
119
120
  return [
120
121
  {title:this.$t('Edit my profile'),class:"octopus-dropdown-item", path:'/main/priv/edit/profile', condition: true},
121
- {title:this.$t('Edit my organisation'),class:"octopus-dropdown-item", path:'/main/priv/edit/organisation', condition: (state.generalParameters.isOrganisation as boolean) || 1<this.organisationsAvailable.length}];
122
+ {title:this.$t('Edit my organisation'),class:"octopus-dropdown-item", path:'/main/priv/edit/organisation', condition: this.isAuthenticatedWithOrga && ((state.generalParameters.isOrganisation as boolean) || 1<this.organisationsAvailable.length)}];
122
123
  },
123
-
124
124
  isPodcastmaker(): boolean {
125
125
  return (state.generalParameters.podcastmaker as boolean);
126
126
  },
127
- authenticated(): boolean {
127
+ isAuthenticated(): boolean {
128
+ return undefined!==this.authProfile?.userId;
129
+ },
130
+ isAuthenticatedWithOrga(): boolean {
128
131
  return state.generalParameters.authenticated??false;
129
132
  },
130
133
  isContribution(): boolean {
@@ -270,7 +270,7 @@ export default defineComponent({
270
270
  }
271
271
  }
272
272
  &.scrolled{
273
- .link-hover {
273
+ .link-hover, .saooti-down {
274
274
  display: none;
275
275
  }
276
276
  .saooti-menu {
@@ -59,7 +59,7 @@
59
59
  <div class="d-flex align-items-center flex-grow-1">
60
60
  <button
61
61
  title="-15''"
62
- class="btn fs-1 bg-transparent text-light saooti-backward"
62
+ class="btn fs-1 bg-transparent text-light saooti-recule"
63
63
  @click="seekClick(-15)"
64
64
  />
65
65
  <button
@@ -79,7 +79,7 @@
79
79
  </button>
80
80
  <button
81
81
  title="+15''"
82
- class="btn fs-1 bg-transparent text-light saooti-forward"
82
+ class="btn fs-1 bg-transparent text-light saooti-avance"
83
83
  @click="seekClick(15)"
84
84
  />
85
85
  </div>
@@ -170,6 +170,9 @@ export default defineComponent({
170
170
  flex-shrink: 0;
171
171
  cursor: pointer;
172
172
  }
173
+ .saooti-recule, .saooti-avance{
174
+ font-size: 2rem !important;
175
+ }
173
176
  .transcript-bg{
174
177
  background: #3e3e3e;
175
178
  }
@@ -12,7 +12,7 @@ interface AuthState{
12
12
  refreshToken?: string;
13
13
  expiration?: Date;
14
14
  };
15
- authProfile: Profile;
15
+ authProfile?: Profile;
16
16
  authOrganisation: Organisation;
17
17
  }
18
18
  export const useAuthStore = defineStore('AuthStore', {
@@ -24,9 +24,7 @@ export const useAuthStore = defineStore('AuthStore', {
24
24
  refreshToken: undefined,
25
25
  expiration: undefined,
26
26
  },
27
- authProfile: {
28
- userId: '',
29
- },
27
+ authProfile: undefined,
30
28
  authOrganisation: {
31
29
  id: '',
32
30
  name: '',
@@ -40,4 +38,8 @@ export const useAuthStore = defineStore('AuthStore', {
40
38
  },
41
39
  },
42
40
  }),
41
+ getters:{
42
+ isGarRole():string|undefined{ return (this.authProfile?.attributes?.["GAR"] as string|undefined);/* return "ELEVE"; */ /*CHEF_ETABLISSEMENT, ENSEIGNANT, ELEVE, undefined */},
43
+ isGarStudent():boolean{ return "ELEVE"===this.isGarRole;},
44
+ },
43
45
  })