Skip to content

Commit 8638a98

Browse files
feat(theme): prepare Autocomplete Classic Theme (#361)
1 parent f22a6c8 commit 8638a98

File tree

20 files changed

+451
-209
lines changed

20 files changed

+451
-209
lines changed

.browserslistrc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
defaults

.circleci/config.yml

+12
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,17 @@ jobs:
9999
- run:
100100
name: Linting
101101
command: yarn run lint
102+
test_lint_css:
103+
<<: *defaults
104+
steps:
105+
- checkout
106+
- run: *install_yarn_version
107+
- restore_cache: *restore_yarn_cache
108+
- run: *run_yarn_install
109+
- save_cache: *save_yarn_cache
110+
- run:
111+
name: Linting CSS
112+
command: yarn run lint:css
102113
test_types:
103114
<<: *defaults
104115
steps:
@@ -158,6 +169,7 @@ workflows:
158169
- test_lint:
159170
requires:
160171
- build
172+
- test_lint_css
161173
- test_types
162174
- test_unit:
163175
requires:

.codesandbox/ci.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,6 @@
22
"packages": ["packages/autocomplete-*"],
33
"buildCommand": false,
44
"^": "buildCommand is false because `yarn prepare` is going to build packages anyway.",
5-
"sandboxes": ["/examples/js", "/examples/react-renderer"]
5+
"sandboxes": ["/examples/js", "/examples/react-renderer"],
6+
"node": "14"
67
}

.stylelintrc.json

+3-2
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,16 @@
1111
"stylelint-prettier/recommended"
1212
],
1313
"rules": {
14-
"selector-class-pattern": ["^Autocomplete-[A-Za-z0-9-]*$"],
14+
"selector-class-pattern": ["^aa-[A-Za-z0-9-]*$"],
1515
"prettier/prettier": true,
1616
"max-nesting-depth": [
17-
2,
17+
1,
1818
{
1919
"ignore": ["pseudo-classes"],
2020
"ignoreAtRules": ["media"]
2121
}
2222
],
23+
"rule-empty-line-before": "always",
2324
"plugin/no-unsupported-browser-features": [
2425
null,
2526
{

examples/js/app.ts

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@ import { createLocalStorageRecentSearchesPlugin } from '@algolia/autocomplete-pl
55
import algoliasearch from 'algoliasearch';
66
import insightsClient from 'search-insights';
77

8+
import '@algolia/autocomplete-theme-classic';
9+
810
const appId = 'latency';
911
const apiKey = '6be0576ff61c053d5f9a3225e2a90f76';
1012
const searchClient = algoliasearch(appId, apiKey);

examples/js/index.html

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
55

66
<link rel="stylesheet" href="style.css" />
7-
<link rel="stylesheet" href="autocomplete.css" />
87

98
<title>Autocomplete JavaScript</title>
109
</head>

examples/js/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
"@algolia/autocomplete-plugin-query-suggestions": "1.0.0-alpha.35",
1616
"@algolia/autocomplete-plugin-recent-searches": "1.0.0-alpha.35",
1717
"@algolia/autocomplete-preset-algolia": "1.0.0-alpha.35",
18+
"@algolia/autocomplete-theme-classic": "1.0.0-alpha.35",
1819
"algoliasearch": "4.7.0",
1920
"search-insights": "1.6.2"
2021
},

examples/react-renderer/package.json

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
"dependencies": {
77
"@algolia/autocomplete-core": "1.0.0-alpha.35",
88
"@algolia/autocomplete-preset-algolia": "1.0.0-alpha.35",
9+
"@algolia/autocomplete-theme-classic": "1.0.0-alpha.35",
910
"algoliasearch": "4.8.0",
1011
"react": "17.0.1",
1112
"react-dom": "17.0.1",

examples/react-renderer/src/autocomplete.css

-144
This file was deleted.

examples/react-renderer/src/index.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,10 @@
11
import React from 'react';
22
import ReactDOM from 'react-dom';
33

4+
import '@algolia/autocomplete-theme-classic';
5+
46
import './reset.css';
57
import './index.css';
6-
import './autocomplete.css';
78
import { App } from './App';
89

910
ReactDOM.render(

package.json

+5
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,12 @@
77
],
88
"scripts": {
99
"build:clean": "lerna run build:clean --no-private",
10+
"build:css": "lerna run build:css --no-private",
1011
"build:esm": "lerna run build:esm --no-private",
1112
"build:types": "lerna run build:types --no-private",
1213
"build:umd": "lerna run build:umd --no-private",
1314
"build": "lerna run build --no-private",
15+
"lint:css": "stylelint packages/*/src/**/*.scss",
1416
"lint": "eslint --ext .js,.ts,.tsx .",
1517
"playground:start": "yarn workspace @algolia/js-example start",
1618
"prepare": "lerna run prepare --no-private",
@@ -41,6 +43,7 @@
4143
"@typescript-eslint/eslint-plugin": "2.19.0",
4244
"@typescript-eslint/parser": "2.19.0",
4345
"algoliasearch": "4.6.0",
46+
"autoprefixer": "10.0.1",
4447
"babel-eslint": "10.1.0",
4548
"babel-loader": "8.2.1",
4649
"babel-plugin-inline-json": "1.2.2",
@@ -65,6 +68,8 @@
6568
"jest-diff": "26.6.2",
6669
"jest-watch-typeahead": "0.6.1",
6770
"lerna": "3.22.1",
71+
"postcss": "8.1.6",
72+
"postcss-node-sass": "2.1.8",
6873
"prettier": "2.1.2",
6974
"rollup": "2.33.2",
7075
"rollup-plugin-babel": "4.4.0",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { Component } from '../types/Component';
2+
3+
export const LoadingIcon: Component<{}, SVGSVGElement> = () => {
4+
const element = document.createElementNS('http://www.w3.org/2000/svg', 'svg');
5+
element.setAttribute('class', 'aa-LoadingIcon');
6+
element.setAttribute('viewBox', '0 0 100 100');
7+
element.setAttribute('width', '20');
8+
element.setAttribute('height', '20');
9+
10+
element.innerHTML = `<circle
11+
cx="50"
12+
cy="50"
13+
fill="none"
14+
r="35"
15+
stroke="currentColor"
16+
stroke-dasharray="164.93361431346415 56.97787143782138"
17+
stroke-width="4"
18+
>
19+
<animateTransform
20+
attributeName="transform"
21+
type="rotate"
22+
repeatCount="indefinite"
23+
dur="1s"
24+
values="0 50 50;90 50 50;180 50 50;360 50 50"
25+
keyTimes="0;0.40;0.65;1"
26+
/>
27+
</circle>`;
28+
29+
return element;
30+
};
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# @algolia/autocomplete-theme-classic
2+
3+
Classic theme for Algolia Autocomplete.
4+
5+
## Installation
6+
7+
```sh
8+
yarn add @algolia/autocomplete-theme-classic@alpha
9+
# or
10+
npm install @algolia/autocomplete-theme-classic@alpha
11+
```
12+
13+
## Documentation
14+
15+
[Read documentation →](https://algolia-autocomplete.netlify.app)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "@algolia/autocomplete-theme-classic",
3+
"description": "Classic theme for Algolia Autocomplete.",
4+
"version": "1.0.0-alpha.35",
5+
"license": "MIT",
6+
"homepage": "https://github.com/algolia/autocomplete.js",
7+
"repository": "algolia/autocomplete.js",
8+
"author": {
9+
"name": "Algolia, Inc.",
10+
"url": "https://www.algolia.com"
11+
},
12+
"sideEffects": false,
13+
"files": [
14+
"dist/"
15+
],
16+
"main": "dist/theme.css",
17+
"unpkg": "dist/theme.css",
18+
"jsdelivr": "dist/theme.css",
19+
"scripts": {
20+
"build:clean": "rm -rf ./dist",
21+
"build:css": "node ../../scripts/buildCss.mjs src/theme.scss dist/theme.css",
22+
"build": "yarn build:clean && yarn build:css",
23+
"on:change": "yarn build:css",
24+
"prepare": "yarn build:css",
25+
"watch": "watch \"yarn on:change\" --ignoreDirectoryPattern \"/dist/\""
26+
}
27+
}

0 commit comments

Comments
 (0)