@internetarchive/ia-topnav 1.1.26 → 1.1.27-alpha.1

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 (88) hide show
  1. package/.eslintrc +16 -16
  2. package/.storybook/.babelrc +15 -15
  3. package/.storybook/addons.js +7 -7
  4. package/.storybook/config.js +11 -11
  5. package/.storybook/webpack.config.js +5 -5
  6. package/LICENSE +661 -661
  7. package/README.md +144 -144
  8. package/index.d.ts +104 -104
  9. package/index.js +3 -3
  10. package/package.json +61 -61
  11. package/src/assets/img/hamburger.js +36 -36
  12. package/src/assets/img/ia-icon.js +33 -33
  13. package/src/assets/img/icon-audio.js +23 -23
  14. package/src/assets/img/icon-close.js +16 -16
  15. package/src/assets/img/icon-donate.js +15 -15
  16. package/src/assets/img/icon-ellipses.js +15 -15
  17. package/src/assets/img/icon-ia-logo.js +24 -24
  18. package/src/assets/img/icon-images.js +15 -15
  19. package/src/assets/img/icon-search.js +15 -15
  20. package/src/assets/img/icon-software.js +15 -15
  21. package/src/assets/img/icon-texts.js +15 -15
  22. package/src/assets/img/icon-upload.js +15 -15
  23. package/src/assets/img/icon-user.js +15 -15
  24. package/src/assets/img/icon-video.js +15 -15
  25. package/src/assets/img/icon-web.js +15 -15
  26. package/src/assets/img/icon.js +18 -18
  27. package/src/assets/img/icons.js +29 -29
  28. package/src/assets/img/user.js +38 -38
  29. package/src/assets/img/wordmark-stacked.js +13 -13
  30. package/src/data/menus.js +659 -603
  31. package/src/desktop-subnav.js +45 -45
  32. package/src/dropdown-menu.js +98 -98
  33. package/src/ia-topnav.js +307 -283
  34. package/src/lib/formatUrl.js +1 -1
  35. package/src/lib/location-handler.js +5 -5
  36. package/src/lib/query-handler.js +7 -7
  37. package/src/lib/toSentenceCase.js +8 -8
  38. package/src/login-button.js +79 -79
  39. package/src/media-button.js +113 -113
  40. package/src/media-menu.js +133 -133
  41. package/src/media-slider.js +104 -104
  42. package/src/media-subnav.js +112 -112
  43. package/src/more-slider.js +33 -33
  44. package/src/nav-search.js +125 -125
  45. package/src/primary-nav.js +210 -210
  46. package/src/save-page-form.js +59 -59
  47. package/src/search-menu.js +115 -115
  48. package/src/signed-out-dropdown.js +10 -10
  49. package/src/styles/base.js +48 -48
  50. package/src/styles/desktop-subnav.js +37 -37
  51. package/src/styles/dropdown-menu.js +139 -139
  52. package/src/styles/ia-topnav.js +88 -88
  53. package/src/styles/login-button.js +70 -70
  54. package/src/styles/media-button.js +153 -153
  55. package/src/styles/media-menu.js +70 -70
  56. package/src/styles/media-slider.js +81 -81
  57. package/src/styles/media-subnav.js +156 -156
  58. package/src/styles/more-slider.js +15 -15
  59. package/src/styles/nav-search.js +134 -134
  60. package/src/styles/primary-nav.js +254 -254
  61. package/src/styles/save-page-form.js +53 -53
  62. package/src/styles/search-menu.js +99 -99
  63. package/src/styles/signed-out-dropdown.js +31 -31
  64. package/src/styles/user-menu.js +31 -31
  65. package/src/styles/wayback-search.js +48 -48
  66. package/src/styles/wayback-slider.js +30 -30
  67. package/src/tracked-element.js +27 -27
  68. package/src/user-menu.js +42 -42
  69. package/src/wayback-search.js +18 -18
  70. package/src/wayback-slider.js +88 -88
  71. package/stories/topnav-element.stories.js +7 -7
  72. package/test/assets/img/hamburger.test.js +15 -15
  73. package/test/assets/img/user.test.js +15 -15
  74. package/test/data/menus.test.js +19 -19
  75. package/test/dropdown-menu.test.js +25 -25
  76. package/test/ia-icon.test.js +13 -13
  77. package/test/ia-topnav.test.js +273 -273
  78. package/test/login-button.test.js +15 -15
  79. package/test/media-button.test.js +19 -19
  80. package/test/media-menu.test.js +40 -40
  81. package/test/media-slider.test.js +57 -57
  82. package/test/more-slider.test.js +13 -13
  83. package/test/nav-search.test.js +61 -61
  84. package/test/primary-nav.test.js +82 -82
  85. package/test/save-page-form.test.js +35 -35
  86. package/test/search-menu.test.js +49 -49
  87. package/test/user-menu.test.js +33 -33
  88. package/test/wayback-slider.test.js +80 -80
@@ -1,59 +1,59 @@
1
- import { html } from 'https://offshoot.prod.archive.org/lit.js';
2
- import TrackedElement from './tracked-element.js';
3
- import savePageFormCSS from './styles/save-page-form.js';
4
-
5
- class SavePageForm extends TrackedElement {
6
- static get styles() {
7
- return savePageFormCSS;
8
- }
9
-
10
- static get properties() {
11
- return {
12
- config: { type: Object },
13
- inputValid: { type: Boolean }
14
- };
15
- }
16
-
17
- constructor() {
18
- super();
19
- this.config = {
20
- eventCategory: ''
21
- };
22
- this.inputValid = true;
23
- }
24
-
25
- validateURL(e) {
26
- const urlInput = e.target.querySelector('[name="url_preload"]');
27
- const valid = /\..{2,}$/.test(urlInput.value);
28
-
29
- if (!valid) {
30
- e.preventDefault();
31
- this.inputValid = false;
32
- return;
33
- }
34
- this.inputValid = true;
35
- this.trackSubmit(e);
36
- }
37
-
38
- get errorClass() {
39
- return `error${this.inputValid ? '' : ' visible'}`;
40
- }
41
-
42
- render() {
43
- return html`
44
- <form action="//web.archive.org/save" method="post" data-event-submit-tracking="${this.config.eventCategory}|SavePageSubmit" @submit=${this.validateURL}>
45
- <h3>Save Page Now</h3>
46
- <p>Capture a web page as it appears now for use as a trusted citation in the future.</p>
47
- <div>
48
- <input type="text" name="url_preload" placeholder="https://" />
49
- <input type="submit" value="Save" />
50
- </div>
51
- <p class=${this.errorClass}>Please enter a valid web address</p>
52
- </form>
53
- `;
54
- }
55
- }
56
-
57
- customElements.define('save-page-form', SavePageForm);
58
-
59
- export default SavePageForm;
1
+ import { html } from 'https://offshoot.prod.archive.org/lit.js';
2
+ import TrackedElement from './tracked-element.js';
3
+ import savePageFormCSS from './styles/save-page-form.js';
4
+
5
+ class SavePageForm extends TrackedElement {
6
+ static get styles() {
7
+ return savePageFormCSS;
8
+ }
9
+
10
+ static get properties() {
11
+ return {
12
+ config: { type: Object },
13
+ inputValid: { type: Boolean }
14
+ };
15
+ }
16
+
17
+ constructor() {
18
+ super();
19
+ this.config = {
20
+ eventCategory: ''
21
+ };
22
+ this.inputValid = true;
23
+ }
24
+
25
+ validateURL(e) {
26
+ const urlInput = e.target.querySelector('[name="url_preload"]');
27
+ const valid = /\..{2,}$/.test(urlInput.value);
28
+
29
+ if (!valid) {
30
+ e.preventDefault();
31
+ this.inputValid = false;
32
+ return;
33
+ }
34
+ this.inputValid = true;
35
+ this.trackSubmit(e);
36
+ }
37
+
38
+ get errorClass() {
39
+ return `error${this.inputValid ? '' : ' visible'}`;
40
+ }
41
+
42
+ render() {
43
+ return html`
44
+ <form action="//web.archive.org/save" method="post" data-event-submit-tracking="${this.config.eventCategory}|SavePageSubmit" @submit=${this.validateURL}>
45
+ <h3>Save Page Now</h3>
46
+ <p>Capture a web page as it appears now for use as a trusted citation in the future.</p>
47
+ <div>
48
+ <input type="text" name="url_preload" placeholder="https://" />
49
+ <input type="submit" value="Save" />
50
+ </div>
51
+ <p class=${this.errorClass}>Please enter a valid web address</p>
52
+ </form>
53
+ `;
54
+ }
55
+ }
56
+
57
+ customElements.define('save-page-form', SavePageForm);
58
+
59
+ export default SavePageForm;
@@ -1,115 +1,115 @@
1
- import { html } from 'https://offshoot.prod.archive.org/lit.js';
2
- import TrackedElement from './tracked-element.js';
3
- import searchMenuCSS from './styles/search-menu.js';
4
- import formatUrl from './lib/formatUrl.js';
5
-
6
- class SearchMenu extends TrackedElement {
7
- static get styles() {
8
- return searchMenuCSS;
9
- }
10
-
11
- static get properties() {
12
- return {
13
- baseHost: { type: String },
14
- config: { type: Object },
15
- hideSearch: { type: Boolean },
16
- openMenu: { type: String },
17
- searchMenuOpen: { type: Boolean },
18
- searchMenuAnimate: { type: Boolean },
19
- selectedSearchType: { type: String },
20
- };
21
- }
22
-
23
- constructor() {
24
- super();
25
- this.config = {};
26
- this.openMenu = '';
27
- this.searchMenuOpen = false;
28
- this.searchMenuAnimate = false;
29
- this.selectedSearchType = '';
30
- }
31
-
32
- selectSearchType(e) {
33
- this.selectedSearchType = e.target.value;
34
- }
35
-
36
- searchInChanged(e) {
37
- this.dispatchEvent(new CustomEvent('searchInChanged', {
38
- detail: {
39
- searchIn: e.target.value
40
- }
41
- }));
42
- }
43
-
44
- get searchTypesTemplate() {
45
- const searchTypes = [
46
- {
47
- label: 'metadata',
48
- value: '',
49
- isDefault: true,
50
- },
51
- {
52
- label: 'text contents',
53
- value: 'TXT',
54
- },
55
- {
56
- label: 'TV news captions',
57
- value: 'TV',
58
- },
59
- {
60
- label: 'radio transcripts',
61
- value: 'RADIO'
62
- },
63
- {
64
- label: 'archived web sites',
65
- value: 'WEB',
66
- },
67
- ].map(({ value, label, isDefault }) => {
68
- if (this.config.hiddenSearchOptions && this.config.hiddenSearchOptions.includes(value)) {
69
- return html``;
70
- }
71
- return html`
72
- <label @click="${this.selectSearchType}">
73
- <input form="nav-search" type="radio" name="sin" value="${value}" ?checked=${isDefault} @change=${this.searchInChanged} />
74
- Search ${label}
75
- </label>
76
- `;
77
- });
78
-
79
- return searchTypes;
80
- }
81
-
82
- get menuClass() {
83
- return this.openMenu === 'search' ? 'open' : 'closed';
84
- }
85
-
86
- render() {
87
- const searchMenuHidden = Boolean(!this.searchMenuOpen).toString();
88
- const searchMenuExpanded = Boolean(this.searchMenuOpen).toString();
89
-
90
- if (this.hideSearch) {
91
- return html``;
92
- }
93
-
94
- return html`
95
- <div class="menu-wrapper">
96
- <div
97
- class="search-menu-inner tx-slide ${this.menuClass}"
98
- aria-hidden="${searchMenuHidden}"
99
- aria-expanded="${searchMenuExpanded}"
100
- >
101
- ${this.searchTypesTemplate}
102
- <a
103
- class="advanced-search"
104
- href="${formatUrl('/advancedsearch.php', this.baseHost)}"
105
- @click=${this.trackClick}
106
- data-event-click-tracking="${this.config.eventCategory}|NavAdvancedSearch"
107
- >Advanced Search</a
108
- >
109
- </div>
110
- </div>
111
- `;
112
- }
113
- }
114
-
115
- customElements.define('search-menu', SearchMenu);
1
+ import { html } from 'https://offshoot.prod.archive.org/lit.js';
2
+ import TrackedElement from './tracked-element.js';
3
+ import searchMenuCSS from './styles/search-menu.js';
4
+ import formatUrl from './lib/formatUrl.js';
5
+
6
+ class SearchMenu extends TrackedElement {
7
+ static get styles() {
8
+ return searchMenuCSS;
9
+ }
10
+
11
+ static get properties() {
12
+ return {
13
+ baseHost: { type: String },
14
+ config: { type: Object },
15
+ hideSearch: { type: Boolean },
16
+ openMenu: { type: String },
17
+ searchMenuOpen: { type: Boolean },
18
+ searchMenuAnimate: { type: Boolean },
19
+ selectedSearchType: { type: String },
20
+ };
21
+ }
22
+
23
+ constructor() {
24
+ super();
25
+ this.config = {};
26
+ this.openMenu = '';
27
+ this.searchMenuOpen = false;
28
+ this.searchMenuAnimate = false;
29
+ this.selectedSearchType = '';
30
+ }
31
+
32
+ selectSearchType(e) {
33
+ this.selectedSearchType = e.target.value;
34
+ }
35
+
36
+ searchInChanged(e) {
37
+ this.dispatchEvent(new CustomEvent('searchInChanged', {
38
+ detail: {
39
+ searchIn: e.target.value
40
+ }
41
+ }));
42
+ }
43
+
44
+ get searchTypesTemplate() {
45
+ const searchTypes = [
46
+ {
47
+ label: 'metadata',
48
+ value: '',
49
+ isDefault: true,
50
+ },
51
+ {
52
+ label: 'text contents',
53
+ value: 'TXT',
54
+ },
55
+ {
56
+ label: 'TV news captions',
57
+ value: 'TV',
58
+ },
59
+ {
60
+ label: 'radio transcripts',
61
+ value: 'RADIO'
62
+ },
63
+ {
64
+ label: 'archived web sites',
65
+ value: 'WEB',
66
+ },
67
+ ].map(({ value, label, isDefault }) => {
68
+ if (this.config.hiddenSearchOptions && this.config.hiddenSearchOptions.includes(value)) {
69
+ return html``;
70
+ }
71
+ return html`
72
+ <label @click="${this.selectSearchType}">
73
+ <input form="nav-search" type="radio" name="sin" value="${value}" ?checked=${isDefault} @change=${this.searchInChanged} />
74
+ Search ${label}
75
+ </label>
76
+ `;
77
+ });
78
+
79
+ return searchTypes;
80
+ }
81
+
82
+ get menuClass() {
83
+ return this.openMenu === 'search' ? 'open' : 'closed';
84
+ }
85
+
86
+ render() {
87
+ const searchMenuHidden = Boolean(!this.searchMenuOpen).toString();
88
+ const searchMenuExpanded = Boolean(this.searchMenuOpen).toString();
89
+
90
+ if (this.hideSearch) {
91
+ return html``;
92
+ }
93
+
94
+ return html`
95
+ <div class="menu-wrapper">
96
+ <div
97
+ class="search-menu-inner tx-slide ${this.menuClass}"
98
+ aria-hidden="${searchMenuHidden}"
99
+ aria-expanded="${searchMenuExpanded}"
100
+ >
101
+ ${this.searchTypesTemplate}
102
+ <a
103
+ class="advanced-search"
104
+ href="${formatUrl('/advancedsearch.php', this.baseHost)}"
105
+ @click=${this.trackClick}
106
+ data-event-click-tracking="${this.config.eventCategory}|NavAdvancedSearch"
107
+ >Advanced Search</a
108
+ >
109
+ </div>
110
+ </div>
111
+ `;
112
+ }
113
+ }
114
+
115
+ customElements.define('search-menu', SearchMenu);
@@ -1,10 +1,10 @@
1
- import DropdownMenu from './dropdown-menu.js';
2
- import signedOutDropdownStyles from './styles/signed-out-dropdown.js';
3
-
4
- class SignedOutDropdown extends DropdownMenu {
5
- static get styles() {
6
- return [DropdownMenu.styles, signedOutDropdownStyles];
7
- }
8
- }
9
-
10
- customElements.define('signed-out-dropdown', SignedOutDropdown);
1
+ import DropdownMenu from './dropdown-menu.js';
2
+ import signedOutDropdownStyles from './styles/signed-out-dropdown.js';
3
+
4
+ class SignedOutDropdown extends DropdownMenu {
5
+ static get styles() {
6
+ return [DropdownMenu.styles, signedOutDropdownStyles];
7
+ }
8
+ }
9
+
10
+ customElements.define('signed-out-dropdown', SignedOutDropdown);
@@ -1,48 +1,48 @@
1
- import { css } from 'https://offshoot.prod.archive.org/lit.js';
2
-
3
- export const subnavListCSS = css`
4
- h4 {
5
- font-size: 1.6rem;
6
- }
7
-
8
- a {
9
- text-decoration: none;
10
- color: var(--activeColor);
11
- }
12
-
13
- ul {
14
- padding: 0;
15
- margin: 0;
16
- list-style: none;
17
- }
18
-
19
- li + li {
20
- padding-top: 1.5rem;
21
- }
22
-
23
- @media (min-width: 890px) {
24
- h4 {
25
- margin: 0 0 1rem 0;
26
- font-weight: 100;
27
- }
28
-
29
- ul {
30
- font-size: 1.3rem;
31
- }
32
-
33
- li {
34
- padding-bottom: .5rem;
35
- }
36
-
37
- li + li {
38
- padding-top: 0;
39
- }
40
-
41
- li a {
42
- display: block;
43
- overflow: hidden;
44
- white-space: nowrap;
45
- text-overflow: ellipsis;
46
- }
47
- }
48
- `;
1
+ import { css } from 'https://offshoot.prod.archive.org/lit.js';
2
+
3
+ export const subnavListCSS = css`
4
+ h4 {
5
+ font-size: 1.6rem;
6
+ }
7
+
8
+ a {
9
+ text-decoration: none;
10
+ color: var(--activeColor);
11
+ }
12
+
13
+ ul {
14
+ padding: 0;
15
+ margin: 0;
16
+ list-style: none;
17
+ }
18
+
19
+ li + li {
20
+ padding-top: 1.5rem;
21
+ }
22
+
23
+ @media (min-width: 890px) {
24
+ h4 {
25
+ margin: 0 0 1rem 0;
26
+ font-weight: 100;
27
+ }
28
+
29
+ ul {
30
+ font-size: 1.3rem;
31
+ }
32
+
33
+ li {
34
+ padding-bottom: .5rem;
35
+ }
36
+
37
+ li + li {
38
+ padding-top: 0;
39
+ }
40
+
41
+ li a {
42
+ display: block;
43
+ overflow: hidden;
44
+ white-space: nowrap;
45
+ text-overflow: ellipsis;
46
+ }
47
+ }
48
+ `;
@@ -1,37 +1,37 @@
1
- import { css } from 'https://offshoot.prod.archive.org/lit.js';
2
-
3
- export default css`
4
- ul {
5
- position: relative;
6
- z-index: 3;
7
- padding: .8rem 0;
8
- margin: 0;
9
- font-size: 1.2rem;
10
- text-transform: uppercase;
11
- text-align: center;
12
- background: var(--desktopSubnavBg);
13
- }
14
-
15
- li {
16
- display: inline-block;
17
- padding: 0 15px;
18
- }
19
-
20
- a {
21
- text-decoration: none;
22
- color: var(--subnavLinkColor);
23
- }
24
-
25
- a:hover,
26
- a:active,
27
- a:focus {
28
- color: var(--linkHoverColor);
29
- }
30
-
31
- .donate svg {
32
- width: 16px;
33
- height: 16px;
34
- vertical-align: -4px;
35
- fill: #f00;
36
- }
37
- `;
1
+ import { css } from 'https://offshoot.prod.archive.org/lit.js';
2
+
3
+ export default css`
4
+ ul {
5
+ position: relative;
6
+ z-index: 3;
7
+ padding: .8rem 0;
8
+ margin: 0;
9
+ font-size: 1.2rem;
10
+ text-transform: uppercase;
11
+ text-align: center;
12
+ background: var(--desktopSubnavBg);
13
+ }
14
+
15
+ li {
16
+ display: inline-block;
17
+ padding: 0 15px;
18
+ }
19
+
20
+ a {
21
+ text-decoration: none;
22
+ color: var(--subnavLinkColor);
23
+ }
24
+
25
+ a:hover,
26
+ a:active,
27
+ a:focus {
28
+ color: var(--linkHoverColor);
29
+ }
30
+
31
+ .donate svg {
32
+ width: 16px;
33
+ height: 16px;
34
+ vertical-align: -4px;
35
+ fill: #f00;
36
+ }
37
+ `;