test: Adds storybook to SearchInput component (#13410)

* test: Adds storybook to SearchInput component

* Fixes placeholder text

Co-authored-by: Evan Rusackas <evan@preset.io>

Co-authored-by: Evan Rusackas <evan@preset.io>
This commit is contained in:
Michael S. Molina 2021-03-06 01:48:13 -03:00 committed by GitHub
parent b6b7982a81
commit c1e9287cf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 63 additions and 1 deletions

View File

@ -0,0 +1,62 @@
/**
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
import React, { useState } from 'react';
import SearchInput, { SearchInputProps } from '.';
export default {
title: 'SearchInput',
component: SearchInput,
};
export const InteractiveSearchInput = ({
value,
...rest
}: SearchInputProps) => {
const [currentValue, setCurrentValue] = useState(value);
return (
<div style={{ width: 230 }}>
<SearchInput
{...rest}
value={currentValue}
onChange={e => setCurrentValue(e.target.value)}
onClear={() => setCurrentValue('')}
/>
</div>
);
};
InteractiveSearchInput.args = {
value: 'Test',
placeholder: 'Enter some text',
name: 'search-input',
};
InteractiveSearchInput.argTypes = {
onSubmit: { action: 'onSubmit' },
onClear: { action: 'onClear' },
onChange: { action: 'onChange' },
};
InteractiveSearchInput.story = {
parameters: {
knobs: {
disable: true,
},
},
};

View File

@ -20,7 +20,7 @@ import { styled } from '@superset-ui/core';
import React from 'react';
import Icon from 'src/components/Icon';
interface SearchInputProps {
export interface SearchInputProps {
onSubmit: () => void;
onClear: () => void;
value: string;